Skip to content

nickvourd/Supernova

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Supernova

Real fucking shellcode encryptor & obfuscator.



Static Badge Static Badge GitHub Repo stars

Description

Supernova is an open-source Golang tool that empowers users to securely encrypt and/or obfuscate their raw shellcode.

Supernova supports various features beyond those typically found in a common shellcode encryptor tool. Please refer to the Features section for more information.

For command-line usage and examples, please refer to our Wiki.

Table of Contents

Acknowledgement

Special thanks to my brothers @S1ckB0y1337 and @IAMCOMPROMISED, who provided invaluable assistance during the beta testing phase of the tool.

Grateful acknowledgment to @y2qaq for his valuable contributions.

This tool was inspired during the malware development courses of MALDEV Academy.

Supernova was created with ❤️ by @nickvourd, @Papadope9 and @0xvm.

Features

Supernova offers automatic conversion of the encrypted shellcode into formats compatible with various programming languages, including:

  • C
  • C#
  • Rust
  • Nim
  • Golang (Community request by @_atsika)
  • Python
  • Perl
  • PowerShell
  • Java
  • Ruby
  • Raw (Implemented by @y2qaq)

Supports a variety of different ciphers, including:

  • ROT
  • XOR
  • RC4
  • AES (AES-128-CBC, AES-192-CBC, AES-256-CBC)
  • Chacha20 (Implemented by @y2qaq)

Supports various obfuscation techniques, which make the malicious shellcode appear as if it were:

Supernova is written in Golang, a cross-platform language, enabling its use on both Windows and Linux systems.

Installation

You can use the precompiled binaries, or you can manually install Supernova by following the next steps:

  1. Clone the repository by executing the following command:
git clone https://github.com/nickvourd/Supernova.git
  1. Once the repository is cloned, navigate into the Supernova directory:
cd Supernova
  1. Install the third-party dependencies:
go mod download
  1. Build Supernova with the following command:
go build Supernova

Usage

ℹ️ Please refer to the Supernova Wiki for detailed usage instructions and examples of commands.


███████╗██╗   ██╗██████╗ ███████╗██████╗ ███╗   ██╗ ██████╗ ██╗   ██╗ █████╗
██╔════╝██║   ██║██╔══██╗██╔════╝██╔══██╗████╗  ██║██╔═══██╗██║   ██║██╔══██╗
███████╗██║   ██║██████╔╝█████╗  ██████╔╝██╔██╗ ██║██║   ██║██║   ██║███████║
╚════██║██║   ██║██╔═══╝ ██╔══╝  ██╔══██╗██║╚██╗██║██║   ██║╚██╗ ██╔╝██╔══██║
███████║╚██████╔╝██║     ███████╗██║  ██║██║ ╚████║╚██████╔╝ ╚████╔╝ ██║  ██║
╚══════╝ ╚═════╝ ╚═╝     ╚══════╝╚═╝  ╚═╝╚═╝  ╚═══╝ ╚═════╝   ╚═══╝  ╚═╝  ╚═╝

Supernova v2.0.0 - Real fucking shellcode encryptor & obfuscator tool.
Supernova is an open source tool licensed under MIT.
Written with <3 by @nickvourd, @Papadope9 and 0xvm.
Please visit https://github.com/nickvourd/Supernova for more...

Usage of Suprenova:
  -debug
        Enable Debug mode
  -enc string
        Shellcode encoding/encryption (i.e., ROT, XOR, RC4, AES, CHACHA20)
  -input string
        Path to a raw shellcode
  -key int
        Key length size for encryption (default 1)
  -lang string
        Programming language to translate the shellcode (i.e., Nim, Rust, C, CSharp, Go, Python, PowerShell, Perl, Ruby, Java, Raw)
  -obf string
        Shellcode obfuscation (i.e., IPV4, IPV6, MAC, UUID)
  -output string
        Name of the output shellcode file
  -var string
        Name of dynamic variable (default "shellcode")
  -version
        Show Supernova current version

References