├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── boomer.py ├── extra_functions ├── __init__.py ├── autocomplete.py ├── banner.py ├── color.py ├── custom_print.py ├── list_dll_by_pid.py ├── load.py ├── record.py ├── registry.py ├── search.py ├── sessions │ ├── linux │ │ ├── data.py │ │ └── linux_session.py │ ├── mac │ │ ├── data.py │ │ └── mac_session.py │ ├── model.py │ ├── session.py │ └── windows │ │ └── windows_session.py ├── set_address_shellcodes.py ├── xor_encode64.py └── xor_encode86.py ├── files ├── input │ └── .gitkeep └── output │ └── .gitkeep ├── help ├── modules │ └── put.txt └── tool │ ├── load.txt │ ├── search.txt │ └── show.txt ├── linuxrequirements.txt ├── macrequirements.txt ├── mayhem ├── __init__.py ├── datatypes │ ├── __init__.py │ ├── structure.py │ └── windows.py ├── proc │ ├── __init__.py │ └── windows.py └── utilities.py ├── module.py ├── module_payload.py ├── modules ├── __init__.py ├── linux │ ├── __init__.py │ ├── elevation │ │ ├── nagios_exploit.py │ │ └── screen_exploit.py │ ├── gathering │ │ ├── get_applications.py │ │ └── suid_sgid_root.py │ └── overflow │ │ └── jad15.py ├── listener │ └── python │ │ └── boomerpreter.py ├── mac │ ├── elevation │ │ ├── murus_exploit.py │ │ └── rootpipe.py │ └── gathering │ │ ├── __init__.py │ │ └── get_applications.py ├── multi │ ├── app_vulnerabilities.py │ └── autopwn.py └── windows │ ├── __init__.py │ ├── elevation │ └── unquoted_serv_attack.py │ ├── gathering │ ├── auto_elevate_process.py │ ├── get_applications.py │ └── unquoted_service.py │ ├── injection │ ├── dll_injection.py │ ├── dll_injection2.py │ └── python_injection.py │ └── overflow │ ├── dup_scout.py │ ├── gold_wave.py │ └── sys_gauge.py ├── payload_model.py ├── shell.py ├── support ├── boomerpreter │ └── boomerpreter.py └── payloads │ ├── local │ ├── linux │ │ └── x86 │ │ │ └── open_local_shell.py │ └── windows │ │ └── x86 │ │ └── calc.py │ └── msf │ └── linux │ ├── x64 │ └── shell_reverse_tcp.py │ └── x86 │ └── shell_reverse_tcp.py └── windowsrequirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.pyc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boomer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/boomer.py -------------------------------------------------------------------------------- /extra_functions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra_functions/autocomplete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/autocomplete.py -------------------------------------------------------------------------------- /extra_functions/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/banner.py -------------------------------------------------------------------------------- /extra_functions/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/color.py -------------------------------------------------------------------------------- /extra_functions/custom_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/custom_print.py -------------------------------------------------------------------------------- /extra_functions/list_dll_by_pid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/list_dll_by_pid.py -------------------------------------------------------------------------------- /extra_functions/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/load.py -------------------------------------------------------------------------------- /extra_functions/record.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/record.py -------------------------------------------------------------------------------- /extra_functions/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/registry.py -------------------------------------------------------------------------------- /extra_functions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/search.py -------------------------------------------------------------------------------- /extra_functions/sessions/linux/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/linux/data.py -------------------------------------------------------------------------------- /extra_functions/sessions/linux/linux_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/linux/linux_session.py -------------------------------------------------------------------------------- /extra_functions/sessions/mac/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/mac/data.py -------------------------------------------------------------------------------- /extra_functions/sessions/mac/mac_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/mac/mac_session.py -------------------------------------------------------------------------------- /extra_functions/sessions/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/model.py -------------------------------------------------------------------------------- /extra_functions/sessions/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/session.py -------------------------------------------------------------------------------- /extra_functions/sessions/windows/windows_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/sessions/windows/windows_session.py -------------------------------------------------------------------------------- /extra_functions/set_address_shellcodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/set_address_shellcodes.py -------------------------------------------------------------------------------- /extra_functions/xor_encode64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/xor_encode64.py -------------------------------------------------------------------------------- /extra_functions/xor_encode86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/extra_functions/xor_encode86.py -------------------------------------------------------------------------------- /files/input/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /files/output/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /help/modules/put.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/help/modules/put.txt -------------------------------------------------------------------------------- /help/tool/load.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/help/tool/load.txt -------------------------------------------------------------------------------- /help/tool/search.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/help/tool/search.txt -------------------------------------------------------------------------------- /help/tool/show.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/help/tool/show.txt -------------------------------------------------------------------------------- /linuxrequirements.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | boltons>=17.1.0 3 | pefile 4 | tabulate==0.7.3 5 | -------------------------------------------------------------------------------- /macrequirements.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | boltons>=17.1.0 3 | pefile 4 | tabulate==0.7.3 5 | gnureadline 6 | -------------------------------------------------------------------------------- /mayhem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayhem/datatypes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mayhem/datatypes/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/mayhem/datatypes/structure.py -------------------------------------------------------------------------------- /mayhem/datatypes/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/mayhem/datatypes/windows.py -------------------------------------------------------------------------------- /mayhem/proc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/mayhem/proc/__init__.py -------------------------------------------------------------------------------- /mayhem/proc/windows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/mayhem/proc/windows.py -------------------------------------------------------------------------------- /mayhem/utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/mayhem/utilities.py -------------------------------------------------------------------------------- /module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/module.py -------------------------------------------------------------------------------- /module_payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/module_payload.py -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/linux/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/linux/elevation/nagios_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/linux/elevation/nagios_exploit.py -------------------------------------------------------------------------------- /modules/linux/elevation/screen_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/linux/elevation/screen_exploit.py -------------------------------------------------------------------------------- /modules/linux/gathering/get_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/linux/gathering/get_applications.py -------------------------------------------------------------------------------- /modules/linux/gathering/suid_sgid_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/linux/gathering/suid_sgid_root.py -------------------------------------------------------------------------------- /modules/linux/overflow/jad15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/linux/overflow/jad15.py -------------------------------------------------------------------------------- /modules/listener/python/boomerpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/listener/python/boomerpreter.py -------------------------------------------------------------------------------- /modules/mac/elevation/murus_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/mac/elevation/murus_exploit.py -------------------------------------------------------------------------------- /modules/mac/elevation/rootpipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/mac/elevation/rootpipe.py -------------------------------------------------------------------------------- /modules/mac/gathering/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/mac/gathering/get_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/mac/gathering/get_applications.py -------------------------------------------------------------------------------- /modules/multi/app_vulnerabilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/multi/app_vulnerabilities.py -------------------------------------------------------------------------------- /modules/multi/autopwn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/multi/autopwn.py -------------------------------------------------------------------------------- /modules/windows/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/windows/elevation/unquoted_serv_attack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/elevation/unquoted_serv_attack.py -------------------------------------------------------------------------------- /modules/windows/gathering/auto_elevate_process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/gathering/auto_elevate_process.py -------------------------------------------------------------------------------- /modules/windows/gathering/get_applications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/gathering/get_applications.py -------------------------------------------------------------------------------- /modules/windows/gathering/unquoted_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/gathering/unquoted_service.py -------------------------------------------------------------------------------- /modules/windows/injection/dll_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/injection/dll_injection.py -------------------------------------------------------------------------------- /modules/windows/injection/dll_injection2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/injection/dll_injection2.py -------------------------------------------------------------------------------- /modules/windows/injection/python_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/injection/python_injection.py -------------------------------------------------------------------------------- /modules/windows/overflow/dup_scout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/overflow/dup_scout.py -------------------------------------------------------------------------------- /modules/windows/overflow/gold_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/overflow/gold_wave.py -------------------------------------------------------------------------------- /modules/windows/overflow/sys_gauge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/modules/windows/overflow/sys_gauge.py -------------------------------------------------------------------------------- /payload_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/payload_model.py -------------------------------------------------------------------------------- /shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/shell.py -------------------------------------------------------------------------------- /support/boomerpreter/boomerpreter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/support/boomerpreter/boomerpreter.py -------------------------------------------------------------------------------- /support/payloads/local/linux/x86/open_local_shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/support/payloads/local/linux/x86/open_local_shell.py -------------------------------------------------------------------------------- /support/payloads/local/windows/x86/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/support/payloads/local/windows/x86/calc.py -------------------------------------------------------------------------------- /support/payloads/msf/linux/x64/shell_reverse_tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/support/payloads/msf/linux/x64/shell_reverse_tcp.py -------------------------------------------------------------------------------- /support/payloads/msf/linux/x86/shell_reverse_tcp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Josue87/BoomER/HEAD/support/payloads/msf/linux/x86/shell_reverse_tcp.py -------------------------------------------------------------------------------- /windowsrequirements.txt: -------------------------------------------------------------------------------- 1 | psutil 2 | pyreadline 3 | requests 4 | boltons>=17.1.0 5 | pefile 6 | tabulate==0.7.3 --------------------------------------------------------------------------------