Shellcode-In-Memory-Decoder
Shellcode-In-Memory-Decoder copied to clipboard
A simple C implementation to decoded your shellcode and writes it directly to memory
I didnt feel like making a PR so here is the XOR encoder, but modernized for python3. Feel free to change it, or dont. `#!/usr/bin/env python3 import sys # Your...
https://github.com/mhaskar/Shellcode-In-Memory-Decoder/blob/08e0b1f12b6b254fa3ed4ee14aa244a3487b2afd/xor-encoder.py#L15 key = '\x01' print( ''.join([chr(ord(v)^ord(key[i%len(key)])) for i,v in enumerate(raw_data)]) ) This would be a variable length XOR key
Failed to run in win7 and win2008, win10 is successful, why?