├── ARM32 ├── README.md ├── assemble.sh ├── bind-shell │ ├── bind-shell.bin │ ├── bind-shell.hex │ └── bind-shell.s ├── executor ├── exit │ ├── exit.bin │ ├── exit.hex │ └── exit.s ├── hello │ ├── hello.bin │ ├── hello.hex │ └── hello.s ├── read-stage │ ├── read-stage.bin │ ├── read-stage.hex │ └── read-stage.s ├── readfile │ ├── readfile.bin │ ├── readfile.hex │ └── readfile.s ├── reverse-shell │ ├── reverse-shell.bin │ ├── reverse-shell.hex │ └── reverse-shell.s ├── setreuid-shell │ ├── setreuid-shell.bin │ ├── setreuid-shell.hex │ └── setreuid-shell.s └── shell │ ├── shell.bin │ ├── shell.hex │ └── shell.s ├── README.md ├── aarch64 ├── README.md ├── assemble.sh ├── bind-shell │ ├── bind-shell.bin │ ├── bind-shell.hex │ └── bind-shell.s ├── exit │ ├── exit.bin │ ├── exit.hex │ └── exit.s ├── hello │ ├── hello.bin │ ├── hello.hex │ └── hello.s ├── read-stage │ ├── read-stage.bin │ ├── read-stage.hex │ └── read-stage.s ├── readfile │ ├── readfile.bin │ ├── readfile.hex │ └── readfile.s ├── reverse-shell │ ├── reverse-shell.bin │ ├── reverse-shell.hex │ └── reverse-shell.s ├── setreuid-shell │ ├── setreuid-shell.bin │ ├── setreuid-shell.hex │ └── setreuid-shell.s └── shell │ ├── shell.bin │ ├── shell.hex │ └── shell.s ├── executor.c ├── mips32 ├── README.md ├── assemble.sh ├── bind-shell │ ├── bind-shell.bin │ ├── bind-shell.hex │ └── bind-shell.s ├── exit │ ├── exit.bin │ ├── exit.hex │ └── exit.s ├── hello │ ├── hello.bin │ ├── hello.hex │ └── hello.s ├── readfile │ ├── readfile.bin │ ├── readfile.hex │ └── readfile.s ├── reverse-shell │ ├── reverse-shell.bin │ ├── reverse-shell.hex │ └── reverse-shell.s ├── setreuid-shell │ ├── setreuid-shell.bin │ ├── setreuid-shell.hex │ └── setreuid-shell.s └── shell │ ├── shell.bin │ ├── shell.hex │ └── shell.s ├── risc-v ├── README.md ├── assemble.sh ├── bind-shell │ ├── bind-shell.bin │ ├── bind-shell.hex │ └── bind-shell.s ├── exit │ ├── exit.bin │ ├── exit.hex │ └── exit.s ├── hello │ ├── hello.bin │ ├── hello.hex │ └── hello.s ├── read-stage │ ├── read-stage.bin │ ├── read-stage.hex │ └── read-stage.s ├── readfile │ ├── readfile.bin │ ├── readfile.hex │ └── readfile.s ├── reverse-shell │ ├── reverse-shell.bin │ ├── reverse-shell.hex │ └── reverse-shell.s ├── setreuid-shell │ ├── setreuid-shell.bin │ ├── setreuid-shell.hex │ └── setreuid-shell.s └── shell │ ├── shell.bin │ ├── shell.hex │ └── shell.s ├── shellconvert.py ├── x64 ├── README.md ├── assemble.sh ├── bind-shell │ ├── bind-shell.asm │ ├── bind-shell.bin │ └── bind-shell.hex ├── exit │ ├── exit.asm │ ├── exit.bin │ └── exit.hex ├── hello │ ├── hello.asm │ ├── hello.bin │ └── hello.hex ├── read-stage │ ├── read-stage.asm │ ├── read-stage.bin │ └── read-stage.hex ├── readfile │ ├── readfile.asm │ ├── readfile.bin │ └── readfile.hex ├── reverse-shell │ ├── reverse-shell.asm │ ├── reverse-shell.bin │ └── reverse-shell.hex ├── setreuid-shell │ ├── setreuid-shell.asm │ ├── setreuid-shell.bin │ └── setreuid-shell.hex └── shell │ ├── shell.asm │ ├── shell.bin │ └── shell.hex └── x86 ├── README.md ├── assemble.sh ├── bind-shell ├── bind-shell ├── bind-shell.asm ├── bind-shell.bin └── bind-shell.hex ├── exit ├── exit.asm ├── exit.bin └── exit.hex ├── hello ├── hello.asm ├── hello.bin └── hello.hex ├── read-stage ├── read-stage.asm ├── read-stage.bin └── read-stage.hex ├── readfile ├── readfile.asm ├── readfile.bin └── readfile.hex ├── reverse-shell ├── reverse-shell.asm ├── reverse-shell.bin └── reverse-shell.hex ├── setreuid-shell ├── setreuid-shell.asm ├── setreuid-shell.bin └── setreuid-shell.hex └── shell ├── shell.asm ├── shell.bin └── shell.hex /ARM32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/README.md -------------------------------------------------------------------------------- /ARM32/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/assemble.sh -------------------------------------------------------------------------------- /ARM32/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /ARM32/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /ARM32/bind-shell/bind-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/bind-shell/bind-shell.s -------------------------------------------------------------------------------- /ARM32/executor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/executor -------------------------------------------------------------------------------- /ARM32/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/exit/exit.bin -------------------------------------------------------------------------------- /ARM32/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/exit/exit.hex -------------------------------------------------------------------------------- /ARM32/exit/exit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/exit/exit.s -------------------------------------------------------------------------------- /ARM32/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/hello/hello.bin -------------------------------------------------------------------------------- /ARM32/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/hello/hello.hex -------------------------------------------------------------------------------- /ARM32/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/hello/hello.s -------------------------------------------------------------------------------- /ARM32/read-stage/read-stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/read-stage/read-stage.bin -------------------------------------------------------------------------------- /ARM32/read-stage/read-stage.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/read-stage/read-stage.hex -------------------------------------------------------------------------------- /ARM32/read-stage/read-stage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/read-stage/read-stage.s -------------------------------------------------------------------------------- /ARM32/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/readfile/readfile.bin -------------------------------------------------------------------------------- /ARM32/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/readfile/readfile.hex -------------------------------------------------------------------------------- /ARM32/readfile/readfile.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/readfile/readfile.s -------------------------------------------------------------------------------- /ARM32/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /ARM32/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /ARM32/reverse-shell/reverse-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/reverse-shell/reverse-shell.s -------------------------------------------------------------------------------- /ARM32/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /ARM32/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /ARM32/setreuid-shell/setreuid-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/setreuid-shell/setreuid-shell.s -------------------------------------------------------------------------------- /ARM32/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/shell/shell.bin -------------------------------------------------------------------------------- /ARM32/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/shell/shell.hex -------------------------------------------------------------------------------- /ARM32/shell/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/ARM32/shell/shell.s -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/README.md -------------------------------------------------------------------------------- /aarch64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/README.md -------------------------------------------------------------------------------- /aarch64/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/assemble.sh -------------------------------------------------------------------------------- /aarch64/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /aarch64/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /aarch64/bind-shell/bind-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/bind-shell/bind-shell.s -------------------------------------------------------------------------------- /aarch64/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/exit/exit.bin -------------------------------------------------------------------------------- /aarch64/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/exit/exit.hex -------------------------------------------------------------------------------- /aarch64/exit/exit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/exit/exit.s -------------------------------------------------------------------------------- /aarch64/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/hello/hello.bin -------------------------------------------------------------------------------- /aarch64/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/hello/hello.hex -------------------------------------------------------------------------------- /aarch64/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/hello/hello.s -------------------------------------------------------------------------------- /aarch64/read-stage/read-stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/read-stage/read-stage.bin -------------------------------------------------------------------------------- /aarch64/read-stage/read-stage.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/read-stage/read-stage.hex -------------------------------------------------------------------------------- /aarch64/read-stage/read-stage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/read-stage/read-stage.s -------------------------------------------------------------------------------- /aarch64/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/readfile/readfile.bin -------------------------------------------------------------------------------- /aarch64/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/readfile/readfile.hex -------------------------------------------------------------------------------- /aarch64/readfile/readfile.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/readfile/readfile.s -------------------------------------------------------------------------------- /aarch64/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /aarch64/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /aarch64/reverse-shell/reverse-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/reverse-shell/reverse-shell.s -------------------------------------------------------------------------------- /aarch64/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /aarch64/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /aarch64/setreuid-shell/setreuid-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/setreuid-shell/setreuid-shell.s -------------------------------------------------------------------------------- /aarch64/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/shell/shell.bin -------------------------------------------------------------------------------- /aarch64/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/shell/shell.hex -------------------------------------------------------------------------------- /aarch64/shell/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/aarch64/shell/shell.s -------------------------------------------------------------------------------- /executor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/executor.c -------------------------------------------------------------------------------- /mips32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/README.md -------------------------------------------------------------------------------- /mips32/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/assemble.sh -------------------------------------------------------------------------------- /mips32/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /mips32/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /mips32/bind-shell/bind-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/bind-shell/bind-shell.s -------------------------------------------------------------------------------- /mips32/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/exit/exit.bin -------------------------------------------------------------------------------- /mips32/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/exit/exit.hex -------------------------------------------------------------------------------- /mips32/exit/exit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/exit/exit.s -------------------------------------------------------------------------------- /mips32/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/hello/hello.bin -------------------------------------------------------------------------------- /mips32/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/hello/hello.hex -------------------------------------------------------------------------------- /mips32/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/hello/hello.s -------------------------------------------------------------------------------- /mips32/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/readfile/readfile.bin -------------------------------------------------------------------------------- /mips32/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/readfile/readfile.hex -------------------------------------------------------------------------------- /mips32/readfile/readfile.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/readfile/readfile.s -------------------------------------------------------------------------------- /mips32/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /mips32/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /mips32/reverse-shell/reverse-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/reverse-shell/reverse-shell.s -------------------------------------------------------------------------------- /mips32/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /mips32/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /mips32/setreuid-shell/setreuid-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/setreuid-shell/setreuid-shell.s -------------------------------------------------------------------------------- /mips32/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/shell/shell.bin -------------------------------------------------------------------------------- /mips32/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/shell/shell.hex -------------------------------------------------------------------------------- /mips32/shell/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/mips32/shell/shell.s -------------------------------------------------------------------------------- /risc-v/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/README.md -------------------------------------------------------------------------------- /risc-v/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/assemble.sh -------------------------------------------------------------------------------- /risc-v/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /risc-v/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /risc-v/bind-shell/bind-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/bind-shell/bind-shell.s -------------------------------------------------------------------------------- /risc-v/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/exit/exit.bin -------------------------------------------------------------------------------- /risc-v/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/exit/exit.hex -------------------------------------------------------------------------------- /risc-v/exit/exit.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/exit/exit.s -------------------------------------------------------------------------------- /risc-v/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/hello/hello.bin -------------------------------------------------------------------------------- /risc-v/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/hello/hello.hex -------------------------------------------------------------------------------- /risc-v/hello/hello.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/hello/hello.s -------------------------------------------------------------------------------- /risc-v/read-stage/read-stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/read-stage/read-stage.bin -------------------------------------------------------------------------------- /risc-v/read-stage/read-stage.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/read-stage/read-stage.hex -------------------------------------------------------------------------------- /risc-v/read-stage/read-stage.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/read-stage/read-stage.s -------------------------------------------------------------------------------- /risc-v/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/readfile/readfile.bin -------------------------------------------------------------------------------- /risc-v/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/readfile/readfile.hex -------------------------------------------------------------------------------- /risc-v/readfile/readfile.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/readfile/readfile.s -------------------------------------------------------------------------------- /risc-v/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /risc-v/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /risc-v/reverse-shell/reverse-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/reverse-shell/reverse-shell.s -------------------------------------------------------------------------------- /risc-v/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /risc-v/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /risc-v/setreuid-shell/setreuid-shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/setreuid-shell/setreuid-shell.s -------------------------------------------------------------------------------- /risc-v/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/shell/shell.bin -------------------------------------------------------------------------------- /risc-v/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/shell/shell.hex -------------------------------------------------------------------------------- /risc-v/shell/shell.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/risc-v/shell/shell.s -------------------------------------------------------------------------------- /shellconvert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/shellconvert.py -------------------------------------------------------------------------------- /x64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/README.md -------------------------------------------------------------------------------- /x64/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/assemble.sh -------------------------------------------------------------------------------- /x64/bind-shell/bind-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/bind-shell/bind-shell.asm -------------------------------------------------------------------------------- /x64/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /x64/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /x64/exit/exit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/exit/exit.asm -------------------------------------------------------------------------------- /x64/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/exit/exit.bin -------------------------------------------------------------------------------- /x64/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/exit/exit.hex -------------------------------------------------------------------------------- /x64/hello/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/hello/hello.asm -------------------------------------------------------------------------------- /x64/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/hello/hello.bin -------------------------------------------------------------------------------- /x64/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/hello/hello.hex -------------------------------------------------------------------------------- /x64/read-stage/read-stage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/read-stage/read-stage.asm -------------------------------------------------------------------------------- /x64/read-stage/read-stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/read-stage/read-stage.bin -------------------------------------------------------------------------------- /x64/read-stage/read-stage.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/read-stage/read-stage.hex -------------------------------------------------------------------------------- /x64/readfile/readfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/readfile/readfile.asm -------------------------------------------------------------------------------- /x64/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/readfile/readfile.bin -------------------------------------------------------------------------------- /x64/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/readfile/readfile.hex -------------------------------------------------------------------------------- /x64/reverse-shell/reverse-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/reverse-shell/reverse-shell.asm -------------------------------------------------------------------------------- /x64/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /x64/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /x64/setreuid-shell/setreuid-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/setreuid-shell/setreuid-shell.asm -------------------------------------------------------------------------------- /x64/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /x64/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /x64/shell/shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/shell/shell.asm -------------------------------------------------------------------------------- /x64/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/shell/shell.bin -------------------------------------------------------------------------------- /x64/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x64/shell/shell.hex -------------------------------------------------------------------------------- /x86/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/README.md -------------------------------------------------------------------------------- /x86/assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/assemble.sh -------------------------------------------------------------------------------- /x86/bind-shell/bind-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/bind-shell/bind-shell -------------------------------------------------------------------------------- /x86/bind-shell/bind-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/bind-shell/bind-shell.asm -------------------------------------------------------------------------------- /x86/bind-shell/bind-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/bind-shell/bind-shell.bin -------------------------------------------------------------------------------- /x86/bind-shell/bind-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/bind-shell/bind-shell.hex -------------------------------------------------------------------------------- /x86/exit/exit.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/exit/exit.asm -------------------------------------------------------------------------------- /x86/exit/exit.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/exit/exit.bin -------------------------------------------------------------------------------- /x86/exit/exit.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/exit/exit.hex -------------------------------------------------------------------------------- /x86/hello/hello.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/hello/hello.asm -------------------------------------------------------------------------------- /x86/hello/hello.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/hello/hello.bin -------------------------------------------------------------------------------- /x86/hello/hello.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/hello/hello.hex -------------------------------------------------------------------------------- /x86/read-stage/read-stage.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/read-stage/read-stage.asm -------------------------------------------------------------------------------- /x86/read-stage/read-stage.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/read-stage/read-stage.bin -------------------------------------------------------------------------------- /x86/read-stage/read-stage.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/read-stage/read-stage.hex -------------------------------------------------------------------------------- /x86/readfile/readfile.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/readfile/readfile.asm -------------------------------------------------------------------------------- /x86/readfile/readfile.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/readfile/readfile.bin -------------------------------------------------------------------------------- /x86/readfile/readfile.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/readfile/readfile.hex -------------------------------------------------------------------------------- /x86/reverse-shell/reverse-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/reverse-shell/reverse-shell.asm -------------------------------------------------------------------------------- /x86/reverse-shell/reverse-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/reverse-shell/reverse-shell.bin -------------------------------------------------------------------------------- /x86/reverse-shell/reverse-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/reverse-shell/reverse-shell.hex -------------------------------------------------------------------------------- /x86/setreuid-shell/setreuid-shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/setreuid-shell/setreuid-shell.asm -------------------------------------------------------------------------------- /x86/setreuid-shell/setreuid-shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/setreuid-shell/setreuid-shell.bin -------------------------------------------------------------------------------- /x86/setreuid-shell/setreuid-shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/setreuid-shell/setreuid-shell.hex -------------------------------------------------------------------------------- /x86/shell/shell.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/shell/shell.asm -------------------------------------------------------------------------------- /x86/shell/shell.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/shell/shell.bin -------------------------------------------------------------------------------- /x86/shell/shell.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/voydstack/shellcoding/HEAD/x86/shell/shell.hex --------------------------------------------------------------------------------