Execute a process from memory within another process?

后端 未结 3 591
攒了一身酷
攒了一身酷 2020-12-30 12:44

I would like to have a small \"application loader\" program that receives other binary application files over TCP from an external server and runs them.

I could do

3条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-30 13:16

    You might want to look at and reuse UPX, which decompresses the executable to memory, and then transfers control to ld-linux to start it.

提交回复
热议问题