Skip to content

Instantly share code, notes, and snippets.

View Ashraf-wan's full-sized avatar
😮‍💨
exam

Ashraf wan Ashraf-wan

😮‍💨
exam
View GitHub Profile
@Ashraf-wan
Ashraf-wan / code.cpp
Created January 4, 2025 16:56
This is the reverse shell code in c++ that bypass 71/72 av in virustotal. This code uses xor, syscalls, qemu cpu checks, earlybird apc and prime number calculation for sleep.
#if (defined(_MSC_VER) || defined(_WIN32) || defined(_WIN64) || defined(__MINGW32__))
#define MSVC 1
#define LINUX 0
#elif (defined(__linux__))
#define MSVC 0
#define LINUX 1
#else
#define MSVC 0
#define LINUX 0
#endif

Working with docker and registry

First of we install the docker client, server and registry on our debian machine.

apt install docker docker.io docker-registry

The registry could be installed as a service in our docker cloud as well.

docker run -d -p 5000:5000 --restart=always --name registry registry:2