Skip to content

Generate a fuzzing harness for (shared) libraries from Binary Ninja

License

Notifications You must be signed in to change notification settings

bsw4p/binja-fuzzit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

binja-fuzzit

Generate a fuzzing harness for (shared) libraries from Binary Ninja

Tutorial

  1. Build the following shared library using gcc -g -O0 -shared -fPIC vulns_shared.c -o vulns_shared.so
#include <string.h>

int is_initialized=0;

void init_buffer(){
        printf("init buffer\n");
        is_initialized=1;
}

int buffer_overflow(char *input){
        char buf[128];
        printf("buffer_overflow\n");
        if(is_initialized){
                strcpy(&buf[0], input);
        }
}

int keyword_buffer_overflow(char *keyword, char *input){
        printf("keyword_buffer_overflow\n");
        char buf[128];

        if(strlen(keyword) >= 2){
                if(keyword[0] == 'k' && keyword[1] == 'w'){
                        strcpy(&buf[0], input);
                }
        }
}

int integer_overflow(int size, char *input){
        printf("integer_overflow\n");
        char buf[128];
        if(size < 128){
                strcpy(&buf[0], input);
        }
}
  1. Load shared library into binary ninja

  2. Create harness using binja-fuzzit

  3. Compile harness.c using gcc -ldl harness.c -o harness

  4. Test harness manually

Trigger buffer overflow:

payload = [
        # trigger init()
        "\x00",
        # trigger buffer overflow
        "\x01",
        # string size
        "\xff\x00\x00\x00",
        # string
        "A"*0xff
]

print("".join(payload))
python trigger_bufferoverflow.py | LD_LIBRARY_PATH=. ./harness

Trigger keyword buffer overflow:

payload = [
        # trigger keyword buffer overflow
        "\x02",
        # keyword string size
        "\x02\x00\x00\x00",
        # keyword string
        "kw",
        # string size
        "\xff\x00\x00\x00",
        "A"*0xff
]


print("".join(payload))
python trigger_keywordbufferoverflow.py | LD_LIBRARY_PATH=. ./harness

Trigger size buffer overflow:

payload = [
        # trigger integer_overflow()
        "\x03",
        # integer size
        "\x01\x00\x00\x00",
        # string size
        "\xff\x00\x00\x00",
        # string
        "A"*0xff

]

print("".join(payload))
python trigger_sizebufferoverflow.py | LD_LIBRARY_PATH=. ./harness
  1. Setup AFL
mkdir in
python -c 'print("\x00"*512)' > in/0
  1. Run AFL with command LD_LIBRARY_PATH=. AFL_INST_LIBS=1 AFL_NO_FORKSRV=1 ~/afl-2.52b/afl-fuzz -Q -iin -oout -- ./harness

Thanks!

Thank you Guido Vranken (https://guidovranken.com/, https://github.com/guidovranken) and hugsy (https://blahcat.github.io/, https://github.com/hugsy) for the inspiration, Vector 35 (http://vector35.com/, https://github.com/Vector35/) for BinaryNinja and of course Michał Zalewski (http://lcamtuf.coredump.cx/) for AFL.

About

Generate a fuzzing harness for (shared) libraries from Binary Ninja

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages