Skip to content

[Incomplete] Covert communication channel over various protocols

License

Notifications You must be signed in to change notification settings

hsheric0210/C2C.NET

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C2C.NET :: Covert & secure C2 Communication

A simple project that opens or hosts a lightweight C2 communication channel.

Will both support P2P and Centralized C2 server model. Currently aiming on Centralized C2 model.

  • Multiple/Configurable fallback servers
  • P2P

Supported communication protocols

Duplex

All protocol supports both Bind(Server) and Connect(Client) mode. (e.g. tcp-bind, tcp-connect)

In case of Duplex Channel usage, one side should be 'Bind(Server)' and the other side should be 'Connect(Client)'. (No 'bind-bind' or 'connect-connect' communication is possible; only 'bind-connect' form is allowed)

When using HTTP or WebSocket

The HTTP server (http_bind and ws_bind) implementation is based on HTTP.sys.

This means that you must run netsh http add urlacl url=http://+:{port}/ user={domain}\{username} to reserve URL namespace. (Or you will receive 'Access Denied' error)

Replace the {port}, {domain}, {username} placeholder to your desired port number, computor name, and user account name.

To delete URL namespace reservation, run netsh http remove urlacl url=http://+:{port}/.

Learn more information about this: https://learn.microsoft.com/ko-kr/windows-server/networking/technologies/netsh/netsh-http

Sockets

  • TCP
  • UDP - Not supported because of its low confidence
  • WebSocket (Similar to HTTP)
  • Telnet - It is just a simple wrapper over the TCP socket
  • SSH

Request-Response

  • TODO: If you chose to use high-level transmission protocols, C2C.NET will automatically conceal the data inside the legitimate-looking traffic. (like Steganography)

  • HTTP

  • HTTPS (pinned certificate)

  • FTP

  • FTPS (pinned certificate)

  • DNS

Public Services

File Share (One-way; C2 -> Victim)

  • Google Drive
  • Dropbox
  • MEGA
  • MediaFire

Snippet Share (One-way; C2 -> Victim)

  • Pastebin
  • JSFiddle
  • GitHub Gists
  • GitLab Snippets
  • Padlet
  • Notion

Messenger Services

  • Twitter (X)
  • Discord (NOT Discord WebHook)
  • Mastodon
  • Signal
  • Slack

Mail Services

  • GMail
  • Yahoo/AOL Mail
  • Outlook Mail
  • GMX Mail

Traffic concealing

  • Additional symmetric-key encryption layer
  • Modified binary-to-text encoding (like Base64)
  • Hide data in legitimate text, document, or image files (Steganography)

Additional encryption layer

  • AES-256 with static encryption key

  • AES-256 with ephemereal encryption key (+ Simple DH handshake)

    • DH: Diffie-Hellman
    • ECDH: Elliptic-curve Diffie-Hellman
  • Support additional cipher and key agreement suites (with BouncyCastle dependency)

Related Repositories / Documentations

About

[Incomplete] Covert communication channel over various protocols

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages