Linux/x86 random insertion encoder and decoder shellcode (generator) Vulnerability / Exploit
/
/
/
Exploits / Vulnerability Discovered : 2019-02-05 |
Type : shellcode |
Platform : linux_x86
This exploit / vulnerability Linux/x86 random insertion encoder and decoder shellcode (generator) is for educational purposes only and if it is used you will do on your own risk!
[+] Code ...
#!/usr/bin/python
# Python Random Insertion Encoder
# Author: Aditya Chaudhary
# Date: 5th Feb 2019
# Parse Arguments
parser = argparse.ArgumentParser()
parser.add_argument("-e", "--entropy", help="Entropy of random byted to be inserted after each shellcode byte (use a value between 1 & 10)", type=int)
parser.add_argument("-b", "--badchars", help="Badchars to removed from inserted bytes", type=str)
args = parser.parse_args()