├── .gitignore ├── Architecture.md ├── BeaconatorC2-Manager.py ├── Defensive_Strategies.md ├── LICENSE ├── README.md ├── beacons ├── AutoHotkey-Beacon.ahk ├── Go │ ├── build_go_beacon.sh │ ├── go.mod │ └── go_beacon.go ├── Lua │ ├── lua54.dll │ ├── lua54.exe │ ├── simple_lua_beacon.lua │ └── socket │ │ ├── core.dll │ │ └── socket.lua ├── bash_oneliner_beacon.sh ├── python_beacon.py ├── simple_ahk_beacon.ahk ├── simple_autoit_beacon.au3 ├── simple_jscript_beacon.js ├── simple_powershell_beacon ├── simple_python_beacon.py ├── simple_vbs_beacon.vbs └── zsh_oneliner_beacon.sh ├── communication_standards.md ├── config ├── __init__.py ├── config_manager.py └── server_config.py ├── configs ├── __init__.py ├── receivers.json └── workflow_compatibility.yaml ├── database ├── __init__.py ├── models.py ├── repository.py └── setup.py ├── documentation.md ├── requirements.txt ├── resources ├── Montserrat-Regular.ttf ├── NotoSerif-Regular.ttf ├── SourceCodePro-Regular.ttf ├── arrow-big-left.svg ├── arrow-big-right.svg ├── bolt.svg ├── bomb.svg ├── building-broadcast-tower.svg ├── cancel.svg ├── cube-plus.svg ├── device-floppy.svg ├── file.svg ├── folder.svg ├── folders.svg ├── icon.ico ├── info-hexagon.svg ├── player-play.svg ├── server-bolt.svg └── sitemap.svg ├── schemas ├── SCHEMA_REFERENCE.md ├── autohotkey_beacon.yaml ├── bash_oneliner_beacon.yaml ├── beacon_schema_format.yaml ├── go_beacon.yaml ├── python_beacon.yaml ├── simple_ahk_beacoon.yaml ├── simple_autoit_beacon.yaml ├── simple_jscript_beacon.yaml ├── simple_lua_beacon.yaml ├── simple_powershell_beacon.yaml ├── simple_python_beacon.yaml ├── simple_vbs_beacon.yaml └── zsh_oneliner_beacon.yaml ├── services ├── __init__.py ├── command_processor.py ├── custom_msf_rpc.py ├── file_transfer.py ├── metasploit_manager.py ├── metasploit_service.py ├── receivers │ ├── __init__.py │ ├── base_receiver.py │ ├── encoding_strategies.py │ ├── http_receiver.py │ ├── legacy_migration.py │ ├── metasploit_receiver.py │ ├── receiver_config.py │ ├── receiver_manager.py │ ├── receiver_registry.py │ ├── smb_receiver.py │ ├── tcp_receiver.py │ └── udp_receiver.py ├── schema_service.py └── workflows │ ├── __init__.py │ ├── condition_evaluator.py │ ├── condition_processor.py │ ├── execution_types.py │ ├── node_compatibility.py │ ├── node_factory.py │ ├── node_positioning.py │ ├── parameter_template_engine.py │ ├── trigger_service.py │ ├── variable_extractor.py │ ├── workflow_engine.py │ ├── workflow_schema_manager.py │ ├── workflow_service.py │ └── workflow_validator.py ├── settings.json ├── ui ├── __init__.py ├── components │ ├── __init__.py │ ├── beacon_settings_widget.py │ ├── beacon_table.py │ ├── command_widget.py │ ├── documentation_panel.py │ ├── file_transfer_widget.py │ ├── metasploit_widget.py │ ├── navigation_menu.py │ ├── receiver_config_dialog.py │ ├── receivers_widget.py │ └── settings_page.py ├── dialogs │ ├── __init__.py │ └── session_terminal_dialog.py ├── main_window.py ├── widgets │ ├── __init__.py │ ├── keylogger_display.py │ ├── log_widget.py │ └── output_display.py └── workflows │ ├── __init__.py │ ├── active_workflows_dialog.py │ ├── active_workflows_widget.py │ ├── conditional_editing_content.py │ ├── connection_menu.py │ ├── custom_canvas.py │ ├── file_transfer_content.py │ ├── node_editing_content.py │ ├── node_parameter_dialog.py │ ├── set_variable_content.py │ ├── side_panel.py │ ├── template_variable_picker.py │ ├── trigger_editing_content.py │ ├── variables_content.py │ └── workflow_editor.py ├── utils ├── NTDSExtraction.py ├── __init__.py ├── documentation_manager.py ├── font_manager.py ├── helpers.py └── logger.py ├── weaponized document delivery ├── README.md ├── VMDK │ └── README.md └── WordDocDelivery │ ├── DownloadAndRun │ ├── Module1_RetrieveFile.txt │ ├── Normal_ThisDocument.txt │ └── README.md │ ├── EncodedCert │ ├── Module1_DecodeCertSaveAndRun.txt │ ├── Normal_ThisDocument.txt │ └── README.md │ └── ReadMe.md └── workers ├── __init__.py ├── beacon_update_worker.py ├── command_output_monitor.py ├── keylogger_monitor.py ├── receiver_update_worker.py └── workflow_execution_worker.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/.gitignore -------------------------------------------------------------------------------- /Architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/Architecture.md -------------------------------------------------------------------------------- /BeaconatorC2-Manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/BeaconatorC2-Manager.py -------------------------------------------------------------------------------- /Defensive_Strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/Defensive_Strategies.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/README.md -------------------------------------------------------------------------------- /beacons/AutoHotkey-Beacon.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/AutoHotkey-Beacon.ahk -------------------------------------------------------------------------------- /beacons/Go/build_go_beacon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Go/build_go_beacon.sh -------------------------------------------------------------------------------- /beacons/Go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Go/go.mod -------------------------------------------------------------------------------- /beacons/Go/go_beacon.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Go/go_beacon.go -------------------------------------------------------------------------------- /beacons/Lua/lua54.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Lua/lua54.dll -------------------------------------------------------------------------------- /beacons/Lua/lua54.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Lua/lua54.exe -------------------------------------------------------------------------------- /beacons/Lua/simple_lua_beacon.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Lua/simple_lua_beacon.lua -------------------------------------------------------------------------------- /beacons/Lua/socket/core.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Lua/socket/core.dll -------------------------------------------------------------------------------- /beacons/Lua/socket/socket.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/Lua/socket/socket.lua -------------------------------------------------------------------------------- /beacons/bash_oneliner_beacon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/bash_oneliner_beacon.sh -------------------------------------------------------------------------------- /beacons/python_beacon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/python_beacon.py -------------------------------------------------------------------------------- /beacons/simple_ahk_beacon.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_ahk_beacon.ahk -------------------------------------------------------------------------------- /beacons/simple_autoit_beacon.au3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_autoit_beacon.au3 -------------------------------------------------------------------------------- /beacons/simple_jscript_beacon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_jscript_beacon.js -------------------------------------------------------------------------------- /beacons/simple_powershell_beacon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_powershell_beacon -------------------------------------------------------------------------------- /beacons/simple_python_beacon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_python_beacon.py -------------------------------------------------------------------------------- /beacons/simple_vbs_beacon.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/simple_vbs_beacon.vbs -------------------------------------------------------------------------------- /beacons/zsh_oneliner_beacon.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/beacons/zsh_oneliner_beacon.sh -------------------------------------------------------------------------------- /communication_standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/communication_standards.md -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/config_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/config/config_manager.py -------------------------------------------------------------------------------- /config/server_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/config/server_config.py -------------------------------------------------------------------------------- /configs/__init__.py: -------------------------------------------------------------------------------- 1 | # Configuration files and examples -------------------------------------------------------------------------------- /configs/receivers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/configs/receivers.json -------------------------------------------------------------------------------- /configs/workflow_compatibility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/configs/workflow_compatibility.yaml -------------------------------------------------------------------------------- /database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/database/__init__.py -------------------------------------------------------------------------------- /database/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/database/models.py -------------------------------------------------------------------------------- /database/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/database/repository.py -------------------------------------------------------------------------------- /database/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/database/setup.py -------------------------------------------------------------------------------- /documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/documentation.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/requirements.txt -------------------------------------------------------------------------------- /resources/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /resources/NotoSerif-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/NotoSerif-Regular.ttf -------------------------------------------------------------------------------- /resources/SourceCodePro-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/SourceCodePro-Regular.ttf -------------------------------------------------------------------------------- /resources/arrow-big-left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/arrow-big-left.svg -------------------------------------------------------------------------------- /resources/arrow-big-right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/arrow-big-right.svg -------------------------------------------------------------------------------- /resources/bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/bolt.svg -------------------------------------------------------------------------------- /resources/bomb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/bomb.svg -------------------------------------------------------------------------------- /resources/building-broadcast-tower.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/building-broadcast-tower.svg -------------------------------------------------------------------------------- /resources/cancel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/cancel.svg -------------------------------------------------------------------------------- /resources/cube-plus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/cube-plus.svg -------------------------------------------------------------------------------- /resources/device-floppy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/device-floppy.svg -------------------------------------------------------------------------------- /resources/file.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/file.svg -------------------------------------------------------------------------------- /resources/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/folder.svg -------------------------------------------------------------------------------- /resources/folders.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/folders.svg -------------------------------------------------------------------------------- /resources/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/icon.ico -------------------------------------------------------------------------------- /resources/info-hexagon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/info-hexagon.svg -------------------------------------------------------------------------------- /resources/player-play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/player-play.svg -------------------------------------------------------------------------------- /resources/server-bolt.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/server-bolt.svg -------------------------------------------------------------------------------- /resources/sitemap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/resources/sitemap.svg -------------------------------------------------------------------------------- /schemas/SCHEMA_REFERENCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/SCHEMA_REFERENCE.md -------------------------------------------------------------------------------- /schemas/autohotkey_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/autohotkey_beacon.yaml -------------------------------------------------------------------------------- /schemas/bash_oneliner_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/bash_oneliner_beacon.yaml -------------------------------------------------------------------------------- /schemas/beacon_schema_format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/beacon_schema_format.yaml -------------------------------------------------------------------------------- /schemas/go_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/go_beacon.yaml -------------------------------------------------------------------------------- /schemas/python_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/python_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_ahk_beacoon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_ahk_beacoon.yaml -------------------------------------------------------------------------------- /schemas/simple_autoit_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_autoit_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_jscript_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_jscript_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_lua_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_lua_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_powershell_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_powershell_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_python_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_python_beacon.yaml -------------------------------------------------------------------------------- /schemas/simple_vbs_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/simple_vbs_beacon.yaml -------------------------------------------------------------------------------- /schemas/zsh_oneliner_beacon.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/schemas/zsh_oneliner_beacon.yaml -------------------------------------------------------------------------------- /services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/__init__.py -------------------------------------------------------------------------------- /services/command_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/command_processor.py -------------------------------------------------------------------------------- /services/custom_msf_rpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/custom_msf_rpc.py -------------------------------------------------------------------------------- /services/file_transfer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/file_transfer.py -------------------------------------------------------------------------------- /services/metasploit_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/metasploit_manager.py -------------------------------------------------------------------------------- /services/metasploit_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/metasploit_service.py -------------------------------------------------------------------------------- /services/receivers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/__init__.py -------------------------------------------------------------------------------- /services/receivers/base_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/base_receiver.py -------------------------------------------------------------------------------- /services/receivers/encoding_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/encoding_strategies.py -------------------------------------------------------------------------------- /services/receivers/http_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/http_receiver.py -------------------------------------------------------------------------------- /services/receivers/legacy_migration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/legacy_migration.py -------------------------------------------------------------------------------- /services/receivers/metasploit_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/metasploit_receiver.py -------------------------------------------------------------------------------- /services/receivers/receiver_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/receiver_config.py -------------------------------------------------------------------------------- /services/receivers/receiver_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/receiver_manager.py -------------------------------------------------------------------------------- /services/receivers/receiver_registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/receiver_registry.py -------------------------------------------------------------------------------- /services/receivers/smb_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/smb_receiver.py -------------------------------------------------------------------------------- /services/receivers/tcp_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/tcp_receiver.py -------------------------------------------------------------------------------- /services/receivers/udp_receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/receivers/udp_receiver.py -------------------------------------------------------------------------------- /services/schema_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/schema_service.py -------------------------------------------------------------------------------- /services/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/__init__.py -------------------------------------------------------------------------------- /services/workflows/condition_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/condition_evaluator.py -------------------------------------------------------------------------------- /services/workflows/condition_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/condition_processor.py -------------------------------------------------------------------------------- /services/workflows/execution_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/execution_types.py -------------------------------------------------------------------------------- /services/workflows/node_compatibility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/node_compatibility.py -------------------------------------------------------------------------------- /services/workflows/node_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/node_factory.py -------------------------------------------------------------------------------- /services/workflows/node_positioning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/node_positioning.py -------------------------------------------------------------------------------- /services/workflows/parameter_template_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/parameter_template_engine.py -------------------------------------------------------------------------------- /services/workflows/trigger_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/trigger_service.py -------------------------------------------------------------------------------- /services/workflows/variable_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/variable_extractor.py -------------------------------------------------------------------------------- /services/workflows/workflow_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/workflow_engine.py -------------------------------------------------------------------------------- /services/workflows/workflow_schema_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/workflow_schema_manager.py -------------------------------------------------------------------------------- /services/workflows/workflow_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/workflow_service.py -------------------------------------------------------------------------------- /services/workflows/workflow_validator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/services/workflows/workflow_validator.py -------------------------------------------------------------------------------- /settings.json: -------------------------------------------------------------------------------- 1 | {"port": 5074, "font_size": 14} -------------------------------------------------------------------------------- /ui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/__init__.py -------------------------------------------------------------------------------- /ui/components/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/__init__.py -------------------------------------------------------------------------------- /ui/components/beacon_settings_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/beacon_settings_widget.py -------------------------------------------------------------------------------- /ui/components/beacon_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/beacon_table.py -------------------------------------------------------------------------------- /ui/components/command_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/command_widget.py -------------------------------------------------------------------------------- /ui/components/documentation_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/documentation_panel.py -------------------------------------------------------------------------------- /ui/components/file_transfer_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/file_transfer_widget.py -------------------------------------------------------------------------------- /ui/components/metasploit_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/metasploit_widget.py -------------------------------------------------------------------------------- /ui/components/navigation_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/navigation_menu.py -------------------------------------------------------------------------------- /ui/components/receiver_config_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/receiver_config_dialog.py -------------------------------------------------------------------------------- /ui/components/receivers_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/receivers_widget.py -------------------------------------------------------------------------------- /ui/components/settings_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/components/settings_page.py -------------------------------------------------------------------------------- /ui/dialogs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/dialogs/__init__.py -------------------------------------------------------------------------------- /ui/dialogs/session_terminal_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/dialogs/session_terminal_dialog.py -------------------------------------------------------------------------------- /ui/main_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/main_window.py -------------------------------------------------------------------------------- /ui/widgets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/widgets/__init__.py -------------------------------------------------------------------------------- /ui/widgets/keylogger_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/widgets/keylogger_display.py -------------------------------------------------------------------------------- /ui/widgets/log_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/widgets/log_widget.py -------------------------------------------------------------------------------- /ui/widgets/output_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/widgets/output_display.py -------------------------------------------------------------------------------- /ui/workflows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/__init__.py -------------------------------------------------------------------------------- /ui/workflows/active_workflows_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/active_workflows_dialog.py -------------------------------------------------------------------------------- /ui/workflows/active_workflows_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/active_workflows_widget.py -------------------------------------------------------------------------------- /ui/workflows/conditional_editing_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/conditional_editing_content.py -------------------------------------------------------------------------------- /ui/workflows/connection_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/connection_menu.py -------------------------------------------------------------------------------- /ui/workflows/custom_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/custom_canvas.py -------------------------------------------------------------------------------- /ui/workflows/file_transfer_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/file_transfer_content.py -------------------------------------------------------------------------------- /ui/workflows/node_editing_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/node_editing_content.py -------------------------------------------------------------------------------- /ui/workflows/node_parameter_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/node_parameter_dialog.py -------------------------------------------------------------------------------- /ui/workflows/set_variable_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/set_variable_content.py -------------------------------------------------------------------------------- /ui/workflows/side_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/side_panel.py -------------------------------------------------------------------------------- /ui/workflows/template_variable_picker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/template_variable_picker.py -------------------------------------------------------------------------------- /ui/workflows/trigger_editing_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/trigger_editing_content.py -------------------------------------------------------------------------------- /ui/workflows/variables_content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/variables_content.py -------------------------------------------------------------------------------- /ui/workflows/workflow_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/ui/workflows/workflow_editor.py -------------------------------------------------------------------------------- /utils/NTDSExtraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/NTDSExtraction.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/documentation_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/documentation_manager.py -------------------------------------------------------------------------------- /utils/font_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/font_manager.py -------------------------------------------------------------------------------- /utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/helpers.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/utils/logger.py -------------------------------------------------------------------------------- /weaponized document delivery/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/README.md -------------------------------------------------------------------------------- /weaponized document delivery/VMDK/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/VMDK/README.md -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/DownloadAndRun/Module1_RetrieveFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/DownloadAndRun/Module1_RetrieveFile.txt -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/DownloadAndRun/Normal_ThisDocument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/DownloadAndRun/Normal_ThisDocument.txt -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/DownloadAndRun/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/DownloadAndRun/README.md -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/EncodedCert/Module1_DecodeCertSaveAndRun.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/EncodedCert/Module1_DecodeCertSaveAndRun.txt -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/EncodedCert/Normal_ThisDocument.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/EncodedCert/Normal_ThisDocument.txt -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/EncodedCert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/EncodedCert/README.md -------------------------------------------------------------------------------- /weaponized document delivery/WordDocDelivery/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/weaponized document delivery/WordDocDelivery/ReadMe.md -------------------------------------------------------------------------------- /workers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/__init__.py -------------------------------------------------------------------------------- /workers/beacon_update_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/beacon_update_worker.py -------------------------------------------------------------------------------- /workers/command_output_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/command_output_monitor.py -------------------------------------------------------------------------------- /workers/keylogger_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/keylogger_monitor.py -------------------------------------------------------------------------------- /workers/receiver_update_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/receiver_update_worker.py -------------------------------------------------------------------------------- /workers/workflow_execution_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CroodSolutions/BeaconatorC2/HEAD/workers/workflow_execution_worker.py --------------------------------------------------------------------------------