Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
PULSE-C2 — HTTPS C&C Framework with encrypted beacons, web dashboard, and Windows agent. | Kitploit
Tools/GitHubGitHub/28zaaky/pulse-c2
Encryption/Decryption ToolsCommand and ControlRed TeamingRemote Access ToolPayload Development
GitHub28zaaky/pulse-c2

PULSE-C2

HTTPS C&C Framework with encrypted beacons, web dashboard, and Windows agent.

View Repository
53196 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

PULSE C2 Framework

Python C++ Platform

C2 screenshot

HTTPS Command & Control infrastructure with web dashboard for remote Windows agent management.

⚠️ Educational Use Only - Illegal use = your responsibility.

Features

  • HTTPS C2 server with TLS encryption (Flask)
  • Real-time web dashboard
  • XOR + Base64 encrypted protocol
  • SQLite database for persistent storage
  • Remote shell, file exfiltration, beacon control
  • Silent agent with no debug output

Quick Start

Server:

root@kitploit:~
cd server
pip install flask
python c2_server.py

Access dashboard: https://localhost:8443

Client:

root@kitploit:~
build.bat

Edit client/c2_client.cpp to set your server IP:

root@kitploit:~
wstring c2ServerUrl = L"https://YOUR_SERVER_IP:8443";

Commands

Protocol

Encryption: XOR + Base64
Key: Hostname + Username + "SecretKey2025"
Transport: HTTPS (port 8443)

root@kitploit:~
Agent → POST /api/checkin → Server (get commands)
Agent → POST /api/result → Server (send results)

Requirements

Server: Python 3.9+, Flask
Client: MinGW-w64 GCC 15.2+, Windows SDK, C++17

Related Project

This C2 framework is extracted from the XvX Usermode Rootkit project. The full rootkit version includes a more complete C2 with over 15 commands, including process/file/registry hiding, SYSTEM privilege escalation, interactive reverse shells, keylogger functionality, DLL injection, and EDR evasion techniques. This standalone version provides the core C2 infrastructure for educational purposes and easy integration into custom projects.

Contact

Author: 28zaakypro[@]proton[.]me

Download Tool
CommandSyntaxDescription
shellshell <cmd>Execute shell command
exfilexfil <path>Exfiltrate file (Base64)
sleepsleep <seconds>Change beacon interval
pingpingTest connectivity
diedieTerminate agent