pe_to_shellcode
pe_to_shellcode copied to clipboard
How to pass the args to my executeable (shellcode)
In windows i have some tools of exe , But i cant get them source code . It must be start with some commandline args . How to pass the args to shellcode ? Thanks ! Please help me ,Good bless you !
早上好,贡献者,有很多的方式可以做到传递参数:
- 可以把参数放在本地文件里,当shellcode被执行时读取本地文件,是不是可以达到传递参数的作用?
- 还可以通过共享内存的方式,比如说,加载shellcode并执行的父进程开辟一个共享内存区域,然后加载的shellcode中读取共享内存里的数据,也可以做到,具体没试过,也许可以做吧?
目前我也在做这方面的应用,希望能帮到你。