├── .gitignore ├── LICENSE ├── README.md ├── cli-client ├── Makefile ├── display.go ├── display.go_color ├── includes │ ├── agent.cpp │ ├── agent.h │ ├── session.cpp │ ├── session.h │ ├── tibane_shell.c │ └── tibane_shell.h ├── libs │ └── libdisplay.h └── main.cpp ├── configuration-templates ├── console_configuration_template.json └── server_configuration_template.json ├── core ├── .vscode │ ├── c_cpp_properties.json │ ├── launch.json │ └── settings.json ├── Makefile ├── includes │ ├── common.c │ ├── common.h │ ├── db.c │ ├── db.h │ ├── implant_handler.c │ ├── implant_handler.h │ ├── listener.c │ ├── listener.h │ ├── logs.c │ ├── logs.h │ ├── operator.c │ └── operator.h └── main.c ├── db ├── .$ERD.drawio.bkp ├── ERD.drawio └── setup.sql ├── docs ├── Communication Channels.md ├── File upload-download.md ├── Getting Started.md ├── Implants.md └── Operator Console.md ├── implants ├── Makefile ├── compile.sh ├── implant_linux ├── keylogger ├── linux_keylogger.cpp └── main.cpp ├── install-client.sh ├── install-server.sh ├── release ├── tibane-client │ ├── add_user.py │ ├── tibane-console │ └── tibane_console_conf.json └── tibane-server │ ├── certs │ ├── agent_cert.pem │ └── agent_key.pem │ └── tibane_server_conf.json ├── scripts ├── add_user.py ├── client_valgrind.sh ├── emulators │ ├── implant.py │ ├── implant_ssl.py │ └── operator.py ├── health_check.py ├── health_check.sh └── valgrind.sh ├── test ├── download ├── download.c ├── file_transfer │ ├── files │ │ ├── cli.cpp │ │ ├── client │ │ ├── client.cpp │ │ ├── cyclic_data │ │ ├── flag.txt │ │ ├── myapp │ │ └── server.c │ ├── myapp │ ├── new.c │ ├── server │ └── server.c ├── file_upload │ ├── flag.txt │ ├── upload │ └── upload.c └── flag.txt ├── tibaneC2.png └── web-panel ├── api ├── db.php ├── index.php ├── plan.md └── test.sh ├── frontend ├── README.md ├── api.php ├── implant.php ├── index.php ├── login.php ├── logout.php └── tasks.php └── test ├── agent.php ├── c2_api.php ├── index.php └── tasks.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/README.md -------------------------------------------------------------------------------- /cli-client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/Makefile -------------------------------------------------------------------------------- /cli-client/display.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/display.go -------------------------------------------------------------------------------- /cli-client/display.go_color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/display.go_color -------------------------------------------------------------------------------- /cli-client/includes/agent.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli-client/includes/agent.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli-client/includes/session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/includes/session.cpp -------------------------------------------------------------------------------- /cli-client/includes/session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/includes/session.h -------------------------------------------------------------------------------- /cli-client/includes/tibane_shell.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cli-client/includes/tibane_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/includes/tibane_shell.h -------------------------------------------------------------------------------- /cli-client/libs/libdisplay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/libs/libdisplay.h -------------------------------------------------------------------------------- /cli-client/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/cli-client/main.cpp -------------------------------------------------------------------------------- /configuration-templates/console_configuration_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/configuration-templates/console_configuration_template.json -------------------------------------------------------------------------------- /configuration-templates/server_configuration_template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/configuration-templates/server_configuration_template.json -------------------------------------------------------------------------------- /core/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /core/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/.vscode/launch.json -------------------------------------------------------------------------------- /core/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/.vscode/settings.json -------------------------------------------------------------------------------- /core/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/Makefile -------------------------------------------------------------------------------- /core/includes/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/common.c -------------------------------------------------------------------------------- /core/includes/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/common.h -------------------------------------------------------------------------------- /core/includes/db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/db.c -------------------------------------------------------------------------------- /core/includes/db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/db.h -------------------------------------------------------------------------------- /core/includes/implant_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/implant_handler.c -------------------------------------------------------------------------------- /core/includes/implant_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/implant_handler.h -------------------------------------------------------------------------------- /core/includes/listener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/listener.c -------------------------------------------------------------------------------- /core/includes/listener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/listener.h -------------------------------------------------------------------------------- /core/includes/logs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/logs.c -------------------------------------------------------------------------------- /core/includes/logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/logs.h -------------------------------------------------------------------------------- /core/includes/operator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/operator.c -------------------------------------------------------------------------------- /core/includes/operator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/includes/operator.h -------------------------------------------------------------------------------- /core/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/core/main.c -------------------------------------------------------------------------------- /db/.$ERD.drawio.bkp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/db/.$ERD.drawio.bkp -------------------------------------------------------------------------------- /db/ERD.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/db/ERD.drawio -------------------------------------------------------------------------------- /db/setup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/db/setup.sql -------------------------------------------------------------------------------- /docs/Communication Channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/docs/Communication Channels.md -------------------------------------------------------------------------------- /docs/File upload-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/docs/File upload-download.md -------------------------------------------------------------------------------- /docs/Getting Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/docs/Getting Started.md -------------------------------------------------------------------------------- /docs/Implants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/docs/Implants.md -------------------------------------------------------------------------------- /docs/Operator Console.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/docs/Operator Console.md -------------------------------------------------------------------------------- /implants/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/Makefile -------------------------------------------------------------------------------- /implants/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/compile.sh -------------------------------------------------------------------------------- /implants/implant_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/implant_linux -------------------------------------------------------------------------------- /implants/keylogger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/keylogger -------------------------------------------------------------------------------- /implants/linux_keylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/linux_keylogger.cpp -------------------------------------------------------------------------------- /implants/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/implants/main.cpp -------------------------------------------------------------------------------- /install-client.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/install-client.sh -------------------------------------------------------------------------------- /install-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/install-server.sh -------------------------------------------------------------------------------- /release/tibane-client/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-client/add_user.py -------------------------------------------------------------------------------- /release/tibane-client/tibane-console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-client/tibane-console -------------------------------------------------------------------------------- /release/tibane-client/tibane_console_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-client/tibane_console_conf.json -------------------------------------------------------------------------------- /release/tibane-server/certs/agent_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-server/certs/agent_cert.pem -------------------------------------------------------------------------------- /release/tibane-server/certs/agent_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-server/certs/agent_key.pem -------------------------------------------------------------------------------- /release/tibane-server/tibane_server_conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/release/tibane-server/tibane_server_conf.json -------------------------------------------------------------------------------- /scripts/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/add_user.py -------------------------------------------------------------------------------- /scripts/client_valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/client_valgrind.sh -------------------------------------------------------------------------------- /scripts/emulators/implant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/emulators/implant.py -------------------------------------------------------------------------------- /scripts/emulators/implant_ssl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/emulators/implant_ssl.py -------------------------------------------------------------------------------- /scripts/emulators/operator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/emulators/operator.py -------------------------------------------------------------------------------- /scripts/health_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/health_check.py -------------------------------------------------------------------------------- /scripts/health_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/health_check.sh -------------------------------------------------------------------------------- /scripts/valgrind.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/scripts/valgrind.sh -------------------------------------------------------------------------------- /test/download: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/download -------------------------------------------------------------------------------- /test/download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/download.c -------------------------------------------------------------------------------- /test/file_transfer/files/cli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/cli.cpp -------------------------------------------------------------------------------- /test/file_transfer/files/client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/client -------------------------------------------------------------------------------- /test/file_transfer/files/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/client.cpp -------------------------------------------------------------------------------- /test/file_transfer/files/cyclic_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/cyclic_data -------------------------------------------------------------------------------- /test/file_transfer/files/flag.txt: -------------------------------------------------------------------------------- 1 | Unknown command 2 | -------------------------------------------------------------------------------- /test/file_transfer/files/myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/myapp -------------------------------------------------------------------------------- /test/file_transfer/files/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/files/server.c -------------------------------------------------------------------------------- /test/file_transfer/myapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/myapp -------------------------------------------------------------------------------- /test/file_transfer/new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/new.c -------------------------------------------------------------------------------- /test/file_transfer/server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/server -------------------------------------------------------------------------------- /test/file_transfer/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_transfer/server.c -------------------------------------------------------------------------------- /test/file_upload/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_upload/flag.txt -------------------------------------------------------------------------------- /test/file_upload/upload: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_upload/upload -------------------------------------------------------------------------------- /test/file_upload/upload.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/file_upload/upload.c -------------------------------------------------------------------------------- /test/flag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/test/flag.txt -------------------------------------------------------------------------------- /tibaneC2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/tibaneC2.png -------------------------------------------------------------------------------- /web-panel/api/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/api/db.php -------------------------------------------------------------------------------- /web-panel/api/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/api/index.php -------------------------------------------------------------------------------- /web-panel/api/plan.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/api/plan.md -------------------------------------------------------------------------------- /web-panel/api/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/api/test.sh -------------------------------------------------------------------------------- /web-panel/frontend/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/README.md -------------------------------------------------------------------------------- /web-panel/frontend/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/api.php -------------------------------------------------------------------------------- /web-panel/frontend/implant.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/implant.php -------------------------------------------------------------------------------- /web-panel/frontend/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/index.php -------------------------------------------------------------------------------- /web-panel/frontend/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/login.php -------------------------------------------------------------------------------- /web-panel/frontend/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/logout.php -------------------------------------------------------------------------------- /web-panel/frontend/tasks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/frontend/tasks.php -------------------------------------------------------------------------------- /web-panel/test/agent.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-panel/test/c2_api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/test/c2_api.php -------------------------------------------------------------------------------- /web-panel/test/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t1b4n3/TibaneC2/HEAD/web-panel/test/index.php -------------------------------------------------------------------------------- /web-panel/test/tasks.php: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------