Skip to content

Enhanced version of secdev's shellforge G3. More platforms and architectures supported.

License

Notifications You must be signed in to change notification settings

rizinorg/shellforge4

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shellforge4

Shellforge4 is an enhanced version of secdev's shellforge G3. More platforms, architectures and syscalls supported.

The original sources were from http://trac.secdev.org

Shellforge is a python program that uses the SFlib and gcc (cross-)compilers to generate shellcodes from C files.

Example Given the hello.c program :

 int main(void) 
 {
         char buf[] = "Hello world!\n";
        write(1, buf, sizeof(buf));
        exit(5);
 }

We can make a shellcode :

 $ python sf.py examples/hello.c
 \x55\x89\xe5\x56\x83\xec\x14\x83\xe4\xf0\xbe\x01\x00\x00
 \x00\x83\xec\x10\x8d\x4d\xee\xb8\x04\x00\x00\x00\xba\x0e
 \x00\x00\x00\x53\xbb\x01\x00\x00\x00\xcd\x80\x5b\x89\xf0
 \x53\xbb\x05\x00\x00\x00\xcd\x80\x5b\x8b\x75\xfc\xc9\xc3

How to install it

Shellforge needs sflib in order to work. You can install it by executing the installation script in sflib directory.

$ cd sflib
$ sudo sh ./install.sh

How to use it

Help $ cd shellforge $ ./sf.py -h

Generate the shellcode $ cd shellforge $ ./sf.py examples/hello.c

Generate the shellcode and test it $ cd shellforge $ ./sf.py -t examples/hello.c

About

Enhanced version of secdev's shellforge G3. More platforms and architectures supported.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published

Languages

  • C 88.0%
  • Python 11.5%
  • Other 0.5%