├── .github ├── dependabot.yml └── workflows │ ├── codeql.yml │ └── todo.yml ├── .gitignore ├── LICENSE ├── README.md ├── agents └── client.py ├── doc ├── agent_info.png ├── agent_list.png ├── commands.md ├── listener_context.PNG ├── payload_context.PNG └── protocol.md ├── install.sh ├── reave ├── __init__.py ├── agent.py ├── app.py ├── cmdhelp.py ├── conf │ ├── csr.conf │ └── reave.conf ├── listener.py ├── menu │ ├── __init__.py │ ├── commands.py │ ├── completion.py │ ├── contexts.py │ └── helpers.py ├── payloads.py ├── payloads │ ├── aggressors │ │ └── any-set-firewall.py │ ├── enumeration │ │ └── any-get-login-history.py │ ├── exfiltration │ │ └── esx-netcat-file.py │ ├── payload-template.py.template │ └── persistence │ │ ├── any-launch-reverse-shell.py │ │ ├── esx-add-backdoor-user.py │ │ └── esx-add-ssh-key.py ├── protocol.py ├── resource │ ├── reave.conf.default │ └── www │ │ ├── 404.html │ │ ├── index.html │ │ └── openlogo-75.png └── responses.py └── requirements.txt /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/todo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/.github/workflows/todo.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/README.md -------------------------------------------------------------------------------- /agents/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/agents/client.py -------------------------------------------------------------------------------- /doc/agent_info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/agent_info.png -------------------------------------------------------------------------------- /doc/agent_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/agent_list.png -------------------------------------------------------------------------------- /doc/commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/commands.md -------------------------------------------------------------------------------- /doc/listener_context.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/listener_context.PNG -------------------------------------------------------------------------------- /doc/payload_context.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/payload_context.PNG -------------------------------------------------------------------------------- /doc/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/doc/protocol.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/install.sh -------------------------------------------------------------------------------- /reave/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reave/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/agent.py -------------------------------------------------------------------------------- /reave/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/app.py -------------------------------------------------------------------------------- /reave/cmdhelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/cmdhelp.py -------------------------------------------------------------------------------- /reave/conf/csr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/conf/csr.conf -------------------------------------------------------------------------------- /reave/conf/reave.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/conf/reave.conf -------------------------------------------------------------------------------- /reave/listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/listener.py -------------------------------------------------------------------------------- /reave/menu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/menu/__init__.py -------------------------------------------------------------------------------- /reave/menu/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/menu/commands.py -------------------------------------------------------------------------------- /reave/menu/completion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/menu/completion.py -------------------------------------------------------------------------------- /reave/menu/contexts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/menu/contexts.py -------------------------------------------------------------------------------- /reave/menu/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/menu/helpers.py -------------------------------------------------------------------------------- /reave/payloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads.py -------------------------------------------------------------------------------- /reave/payloads/aggressors/any-set-firewall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/aggressors/any-set-firewall.py -------------------------------------------------------------------------------- /reave/payloads/enumeration/any-get-login-history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/enumeration/any-get-login-history.py -------------------------------------------------------------------------------- /reave/payloads/exfiltration/esx-netcat-file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/exfiltration/esx-netcat-file.py -------------------------------------------------------------------------------- /reave/payloads/payload-template.py.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/payload-template.py.template -------------------------------------------------------------------------------- /reave/payloads/persistence/any-launch-reverse-shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/persistence/any-launch-reverse-shell.py -------------------------------------------------------------------------------- /reave/payloads/persistence/esx-add-backdoor-user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/persistence/esx-add-backdoor-user.py -------------------------------------------------------------------------------- /reave/payloads/persistence/esx-add-ssh-key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/payloads/persistence/esx-add-ssh-key.py -------------------------------------------------------------------------------- /reave/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/protocol.py -------------------------------------------------------------------------------- /reave/resource/reave.conf.default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/resource/reave.conf.default -------------------------------------------------------------------------------- /reave/resource/www/404.html: -------------------------------------------------------------------------------- 1 | Not Found! -------------------------------------------------------------------------------- /reave/resource/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/resource/www/index.html -------------------------------------------------------------------------------- /reave/resource/www/openlogo-75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/resource/www/openlogo-75.png -------------------------------------------------------------------------------- /reave/responses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/reave/responses.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Psmths/reave/HEAD/requirements.txt --------------------------------------------------------------------------------