a simple backdoor/remote-admin-tool for practice. It's been written in GO to easy cross-compiling static binary for different architectures and OSes.
- reverse connect
- encrypted connection
- built-in TCP multiplexing
- socks5 Proxy (cmd 'CONNECT' only)
- shell
- file operations
- self update
- downloader
- task, schedule
- Dos, DDoS
- miner
- connection in simple tcp
- hide connection in http/https/ws
- run in P2P mode
- RSA Pub * 1 for connect to hub
- basic:
info
: pull infocsh
: shellfastN
: socksreconn
: re-connectkill
: self-exit
- mod:
ppend
: sendSIGTERM
(15) to parent processppkill
: sendSIGKILL
(9) to parent processpsig
: send signal to process
- extra: some are buggy
-
dodaemon
: daemonize - [?]
apoptosis
: remove self's binary without exit - [?]
rebirth
: put self's binary back and re-start - [?]
evolution
: self-update, pull binary and re-start itself
-
- fs: file operations
-
fs
: top op codeget
: read file to streampush
: save stream to filedel
: delete file/directorycall
: execute filemv
: rename/movemkdir
: make directory
-
- task: for tasks/jobs/schedules
-
task
: top op code -
add
: -
del
: -
start
: -
stop
: -
ls
:
-
only enable basic op: go build -ldflags='-s -w' -tags="" bot.go
enable mod
and extra
op: go build -ldflags='-s -w' -tags="extra mod" bot.go
enable all op: go build -ldflags='-s -w' -tags="all" bot.go
A server run with public IP that can be connected.
- auto pull bot info
- push binary for update old version bot
- push tasks/woks for bot to run
- statistics for IP, uptime, bandwidth...etc.
- RSA Priv * n for bot
- ECDSA Pub * n to check authorized admin
go build hub.go share.go
A simple CLI tool to operate bots via hub.
- bot
- ls [id | addr | time | rtt] : list all bot on hub by ...
- kill
- reconn
- local
- ls : list local side server
- bind $bot_id $bind_addr $mode $argv... : bind server (eg. socks5) on local side
- stop $bind_addr
- RSA Pub * 1 for connect to hub, same as bot
- ECDSA Priv * 1 for hub to check authorized
go build admin.go share.go
[WIP] socks5 proxy server for auto switch between bots use round-robin. With web API/UI for user operate, plan to replace admin tool.
- socks5 proxy server with auto switch between all bots in a hub
- select single/multiple bots for proxy auto switch
- multiple hub connection
- list all bots on hub
- select single/multiple bots for operate
genkeys.go
: RSA & ECDSA keys generator