Listen to this Post
AdaptixC2 v0.2 is an extensible post-exploitation and adversarial emulation framework designed for penetration testers. The Adaptix server is written in Golang, offering operator flexibility, while the GUI client is developed in C++ QT, ensuring compatibility across Linux, Windows, and MacOS operating systems.
Features:
- Server/Client Architecture for Multiplayer Support
- Cross-platform GUI client
- Fully encrypted communications
- Listener and Agents as Plugin (Extender)
- Client extensibility for adding new tools
- Task and Jobs storage
- Files and Process browsers
- Socks4 / Socks5 / Socks5 Auth support
- Local and Reverse port forwarding support
- BOF support
Tool Link:
Practice Verified Codes and Commands:
Linux Commands:
1. Start Adaptix Server:
./adaptix-server --port 8080 --encryption-key "your-encryption-key"
2. Connect to Adaptix Server via Client:
./adaptix-client --server-ip 192.168.1.100 --port 8080 --encryption-key "your-encryption-key"
3. List Active Agents:
adaptix-cli list-agents
4. Execute a Command on an Agent:
adaptix-cli execute --agent-id 1 --command "whoami"
5. Port Forwarding (Local):
adaptix-cli port-forward --local-port 8081 --remote-port 80 --agent-id 1
Windows Commands:
1. Start Adaptix Server:
.\adaptix-server.exe --port 8080 --encryption-key "your-encryption-key"
2. Connect to Adaptix Server via Client:
.\adaptix-client.exe --server-ip 192.168.1.100 --port 8080 --encryption-key "your-encryption-key"
3. List Active Agents:
adaptix-cli.exe list-agents
4. Execute a Command on an Agent:
adaptix-cli.exe execute --agent-id 1 --command "whoami"
5. Port Forwarding (Local):
adaptix-cli.exe port-forward --local-port 8081 --remote-port 80 --agent-id 1
What Undercode Say:
AdaptixC2 v0.2 is a powerful tool for penetration testers, offering a wide range of features that make post-exploitation and adversarial emulation more efficient. The framework’s cross-platform compatibility ensures that it can be used in diverse environments, while its extensibility allows for the addition of new tools and functionalities. The fully encrypted communications ensure that data remains secure during operations. The ability to perform local and reverse port forwarding, along with Socks proxy support, makes it a versatile tool for network penetration testing. The inclusion of BOF (Buffer Overflow) support further enhances its capabilities, allowing testers to exploit vulnerabilities in target systems. Overall, AdaptixC2 v0.2 is a comprehensive solution for penetration testers looking to streamline their workflows and improve their effectiveness in identifying and exploiting security vulnerabilities.
For more advanced usage, consider exploring the following Linux and Windows commands:
Advanced Linux Commands:
1. Check Open Ports:
netstat -tuln
2. Scan for Open Ports:
nmap -sS 192.168.1.1
3. Monitor Network Traffic:
tcpdump -i eth0
4. Check Running Processes:
ps aux
5. Kill a Process:
kill -9 <PID>
Advanced Windows Commands:
1. Check Open Ports:
netstat -an
2. Scan for Open Ports:
Test-NetConnection -ComputerName 192.168.1.1 -Port 80
3. Monitor Network Traffic:
Get-NetTCPConnection
4. Check Running Processes:
Get-Process
5. Kill a Process:
Stop-Process -Id <PID> -Force
For further reading and resources, visit the official AdaptixC2 GitHub repository and the Penetration Testing Guide.
References:
Hackers Feeds, Undercode AI


