Giter Club home page Giter Club logo

slae32-egghunters's Introduction

Student ID: SLAE-1530

SLAE32 Assignment 3 - Egg Hunters

Egg Hunter Principle (No Code Execution)

Demonstrate egg hunter technique without code execution. When an egg is found in memory it will dump memory content at given location.

gcc egg-principle.c -o egg-principle

./egg-principle

Egg Hunter Shellcode Embedded (Code Execution)

(!) Requires ASLR to be disabled.

Instead of dumping memory content, when our egg is found in memory it will redirect execution flow to our embeeded shellcode.

gcc egg-shellcode-embedded.c -o egg-shellcode-embedded -z execstack -no-pie -fno-stack-protector

./egg-shellcode-embedded

Real Life Egg Hunter - Vulnerable Server

(!) Requires ASLR to be disabled.

Compile Vulnerable Server

gcc egg-vulnerable-server.c -o egg-vulnerable-server -z execstack -no-pie -fno-stack-protector -pthread

./egg-vulnerable-server

The server will run and wait for commands from connected client.

Exploit Vulnerable Server

chmod +x exploit-vulnerable-server.py && ./exploit-vulnerable-server.py

This python script exploit vulnerable server in two phases.

First phase writes our second and bigger shellcode in process memory.

Second phase exploit buffer overflow present in ExploitMe() function to write and execute our egg hunter shellcode configured to search our second shellcode payload.

We choose egg! as our egg pattern which preceed our shellcode.

You can replace the shellcode variable with any compatible shellcodes. Don't forget to prepend your shellcode with the correct egg pattern value.

Current shellcode will display content of /etc/passwd.

You can generate your own egg hunter shellcode using Metasploit:

msf-egghunter -f python -e egg! -v egg_hunter -p linux -a x86

slae32-egghunters's People

Contributors

darkcodersc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.