-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path__init__.py
More file actions
25 lines (20 loc) · 847 Bytes
/
__init__.py
File metadata and controls
25 lines (20 loc) · 847 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
"""CoCo: Covert Commander - Advanced Multi-Protocol Covert Channel Framework
Author: Supun Hewagamage (@supunhg)
License: Proprietary - All Rights Reserved
Version: 0.3.0
Features:
- 7 ICMP encoding modes (Timestamp, IP Options, Fragmentation, TTL, Size, Type/Code, Checksum)
- 3 DNS modes (Subdomain, TXT, A record)
- 4 HTTP modes (Headers, Cookies, User-Agent, POST)
- Polymorphic packet generation with 4 obfuscation levels
- 7 timing strategies and 8 traffic mimicry patterns
- ChaCha20-Poly1305 and AES-256-GCM encryption
- 443 tests, 79% coverage
"""
__version__ = "0.3.0"
__author__ = "Supun Hewagamage"
__license__ = "Proprietary"
from core.protocol_engine import ProtocolEngine
from core.crypto_engine import CryptoEngine
from core.session_manager import SessionManager
__all__ = ["ProtocolEngine", "CryptoEngine", "SessionManager"]