8000 GitHub - Print3M/shellcoder at fb20ede097882b4e10c7112c583346ff7cedac94
[go: up one dir, main page]

Skip to content

Shellcoder.py - simple script to automate shellcoding process and shellcode testing.

Notifications You must be signed in to change notification settings

Print3M/shellcoder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Shellcoder.py

Write your shellcode in Assembly and execute it with one command!

This script helps automate the shellcode testing process. It takes an Assembly file with the shellcode (shellcode.asm), compiles it into machine code (NASM), generates a payload in C with that, and pastes it into the loader.c file. Finally, the prepared C file is compiled using MSVC. With this script you go from Assembly shellcode to executable file with one command!

Usage

Shellcoder most probably should be used on Windows because of the MSVC requirement.

# Run script
python shellcoder.py

External dependencies

  • Python 3
  • NASM (Netwide Assembler)
  • Visual Studio 2022
0