SLAE Assignment 6 - Polymorphic Shellcode (Linux/x86)

Polymorphism is a generic method to prevent pattern-matching. Pattern-matching means that a program P (an antivirus or an IDS) has a data-base with ‘signatures’. A signature is bytes suite identifying a program. We can defeat such pattern matching programs by replacing assembly instructions with other equivalent set of instructions which will result in different shellcode. Consider the below example clearing a register and moving some value into it. ...

October 28, 2017 · 11 min · Rizal

SLAE Assignment 5 - Analyzing Metasploit Payloads

Metasploit is an awesome penetration testing software which a large number of exploits, payloads, encoders etc. Our goal in this assignment is to analyze three different payloads for linux/x86 generated with msfpayload (I will be using msfvenom instead) using GDB/Ndisasm/Libemu. ...

August 27, 2017 · 11 min

SLAE Assignment 7 - Crypter (Linux/X86)

The last assignment is to create a crypter which will encrypt the shellcode. Our goal for this assignment is: Create Crypter Can use any encryption scheme Can use any programming language for implementation ...

August 27, 2017 · 5 min · Rizal

SLAE Assignment 4 - Custom Encoder/Decoder (XNRR3AX)

The fourth assignment is to create a custom shellcode encoder and decoder. The whole point of encoding shellcode is change its signature so that the shellcode is not detected by Antivirus softwares and Intrution Detection Systems. This is critical in most of real world exploitation scenarios where AV and IDS are present. The encoder will change the original shellcode into some other shellcode which in assembly might seem like meaningless instructions. Upon execution, the decoder stub present before the encoded shellcode will decode the encoded shellcode and once completed will jump to the decoded shellcode. Here is how we are going to implement the encoder. XOR each byte of the original shellcode with 0xAA. Apply NOT operation on each byte of the shellcode. Rotate to Right the whole shellcode 3 times. Apply Additive XOR operation on the whole shellcode. ...

August 21, 2017 · 6 min · Rizal

SLAE Assignment 3 - Egg Hunter (Linux/x86)

The third assigment is to study about Egg Hunters and implement a working demo of egg hunters with configurable payloads. So, what is an Egg Hunter?!. An egghunter is a short piece of code which is safely able to search the Virtual Address Space for an “egg” – a short string signifying the beginning of a larger payload. The egghunter code will usually include an error handling mechanism for dealing with access to non allocated memory ranges. ...

August 13, 2017 · 7 min · Rizal

SLAE Assignment 2 - Shell Reverse TCP (Linux/x86)

Assignment #2: Shell Reverse TCP Shellcode (Linux/x86) The second assigment is to create Reverse TCP Shellcode which does following. Connects back to an IP address and port Execs a shell upon connection The IP address and port number are configurable ...

August 3, 2017 · 8 min · Rizal

SLAE Assignment 1 - Shell Bind TCP (Linux/x86)

The SecurityTube Linux Assembly Expert (SLAE) aims to teach the basics of assembly language on the Linux platform from a security perspective and its application to writing shellcode, encoders, decoders and crypters, among other things. The exam style of SecurityTube Linux Assembly Expert (SLAE) is bit different. You have to complete 7 assignments of varying difficulty and post it on your blog. Also, store the source code and all other helper scripts that you have used in your GitHub account. ...

July 27, 2017 · 13 min · Rizal