Skip to content

usamikinoko/kankan

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Kankan

Go Version License

Kankan is a lightweight and secure intranet penetration tool written in Go.

Usage

Server (Public Network)

# Basic usage
kankans.exe -bind 0.0.0.0 -port 8080 -proxy 8081 -key your-secret-key

# Advanced configuration
kankans.exe -bind 0.0.0.0 -port 8080 -proxy 8081 -key your-secret-key -max-conn 100 -timeout 30s -heartbeat 10s -buffer 4096

Client (Internal Network)

# Basic usage - Expose local web service (TCP mode)
kankanc.exe -server your-server-ip -sport 8080 -local 127.0.0.1 -lport 80 -key your-secret-key

# UDP mode - Expose local UDP service
kankanc.exe -server your-server-ip -sport 8080 -local 127.0.0.1 -lport 53 -key your-secret-key -udp

# Advanced configuration
kankanc.exe -server your-server-ip -sport 8080 -local 127.0.0.1 -lport 80 -key your-secret-key -max-retry 5 -retry-delay 5s -buffer 8192

Features

Security

  • AES-256 encryption with dynamic nonce for data protection
  • SHA-256 based key derivation for secure key management
  • Message authentication to prevent tampering

Path: /pkg/crypto/crypto.go

func NewCrypto(key string) (*Crypto, error) {
    h := sha256.New()
    h.Write([]byte(key))
    keyBytes := h.Sum(nil)
    block, err := aes.NewCipher(keyBytes)
    // ...
}

Traffic Obfuscation

  • HTTP/WebSocket protocol simulation
  • Dynamic padding and jitter
  • Common browser User-Agent rotation
  • TLS-like traffic patterns

Path: /pkg/protocol/protocol.go

type ObfuscationConfig struct {
    EnableHTTP    bool
    EnableWSS     bool
    PaddingRange  [2]int
    JitterRange   time.Duration
    FragmentSize  int
    EnableTLSLike bool
    DynamicPort   bool
    PortRange     [2]int
}

Performance

  • Worker pool for efficient connection handling
  • Buffer pool for memory optimization
  • LZ4 compression for data transfer

Path: /kankans/main.go

type Server struct {
    workerPool  *WorkerPool
    bufferPool  sync.Pool
    metrics     *Metrics
    // ...
}

bufPool: sync.Pool{
    New: func() interface{} {
        return make([]byte, 0, 4096)
    },
}

Protocol Support

  • TCP proxy with automatic reconnection
  • UDP proxy with session management
  • Dynamic port allocation

Path: /kankans/main.go

type UDPSession struct {
    clientAddr *net.UDPAddr
    localConn  *net.UDPConn
    lastSeen   time.Time
    crypto     *crypto.Crypto
}

Monitoring & Management

  • Real-time metrics collection
  • Connection and traffic statistics
  • Automatic cleanup of inactive sessions

Path: /kankans/main.go

type Metrics struct {
    activeConnections int32
    totalConnections  uint64
    totalBytes        uint64
    totalPackets      uint64
    lastMinuteBytes   uint64
    lastMinutePackets uint64
    // ...
}

How It Works

sequenceDiagram
    participant C as Client
    participant KC as KankanC
    participant KS as KankanS
    participant U as User

    C->>KC: Local Service
    KC->>KS: Encrypted Connection
    Note over KC,KS: Session Establishment<br/>& Heartbeat
    U->>KS: Access Request
    KS->>KC: Forward Request
    KC->>C: Forward to Service
    C->>KC: Service Response
    KC->>KS: Encrypted Response
    KS->>U: Final Response

    Note over KC,KS: Continuous<br/>Connection Monitor
Loading

The diagram above illustrates the basic workflow:

  1. KankanC establishes an encrypted connection with KankanS
  2. KankanC maintains the connection through heartbeat mechanism
  3. When a user accesses KankanS, the request is forwarded to KankanC
  4. KankanC forwards the request to the local service and returns the response
  5. All data transmission between KankanC and KankanS is encrypted

Command Line Options

Server Options

  • -bind: Bind address (default: "0.0.0.0")
  • -port: Control server port (default: 8080)
  • -proxy: Proxy server port (default: 8081)
  • -key: Encryption key (required)
  • -max-conn: Maximum connections (default: 1000)
  • -timeout: Connection timeout (default: 30s)
  • -heartbeat: Heartbeat interval (default: 10s)
  • -buffer: Buffer size in bytes (default: 4096)
  • -cleanup: Cleanup interval (default: 60s)
  • -log-level: Log level (debug/info/warn/error, default: info)
  • -idle-timeout: Idle connection timeout (default: 300s)

Client Options

  • -server: Remote server address (required)
  • -sport: Remote server port (default: 8080)
  • -local: Local service address (default: "127.0.0.1")
  • -lport: Local service port (required)
  • -key: Encryption key (required)
  • -udp: Enable UDP mode for UDP service forwarding
  • -max-retry: Maximum reconnection attempts (default: 3)
  • -retry-delay: Delay between reconnection attempts (default: 3s)
  • -buffer: Buffer size in bytes (default: 4096)