oddcod3 / Phantom-Evasion

Python antivirus evasion tool
GNU General Public License v3.0
1.39k stars 334 forks source link

shellcode format #21

Closed usama7628674 closed 6 years ago

usama7628674 commented 6 years ago

How to convert shellcode form \x00 to 0x00 ?

oddcod3 commented 6 years ago

Do you mean as input for custom shellcode parameter?

usama7628674 commented 6 years ago

@oddcod3 Every tool I use like veil or msfvenom they all generate shellcode in \xeb\x18\x5e .I want to generate shellcode in 0xeb, 0x18, 0x5e format .It's not about this tool just a general question for information.

anonymouz4 commented 6 years ago

Well then just open any TextEdit and replace \ with 0

usama7628674 commented 6 years ago

I don't know if it'll work that way.Let @oddcod3 answer as he may know more about it.

usama7628674 commented 6 years ago

@oddcod3 ??????

oddcod3 commented 6 years ago

@usama7628674 do you mean if it's possible to pass shellcode in the format {0xde , 0xad , 0xbe , 0xef} to phantom evasion?(Not possible) By the way what @anonymouz4 said is correct just remeber the curly braces like on the example above.

usama7628674 commented 6 years ago

@oddcod3 I'm not talking about phantom-evasion it's another tool I was checking that requires shellcode in this format. Thanks for letting me know about shellcode format.