├── LICENSE ├── README.md ├── async-shell-handler ├── LICENSE ├── README.md ├── async-client.ps1 ├── cgi-shell-handler.pl ├── cli.pl ├── functions │ ├── base64-obfuscate.pl │ └── ps-base64-obfuscate.ps1 ├── install.sh ├── lighttpd.conf └── tcp-client.ps1 ├── base64-tcp-shell ├── LICENSE ├── README.md ├── b64-tcp-client.ps1 ├── b64-tcp-handler.pl └── wmi-stager.vbs ├── boot2own ├── ABOUT ├── COPYING ├── CREDITS-B2O ├── LICENSE ├── README.md ├── b2o-compile.sh ├── b2o-isogen.sh ├── b2o-pxe.sh ├── live-files │ ├── boot-2-own │ │ ├── b2o-autopwn.sh │ │ └── creddump │ │ │ ├── CHANGELOG │ │ │ ├── COPYING │ │ │ ├── README │ │ │ ├── cachedump.py │ │ │ ├── framework │ │ │ ├── __init__.py │ │ │ ├── __init__.pyc │ │ │ ├── addrspace.py │ │ │ ├── addrspace.pyc │ │ │ ├── newobj.py │ │ │ ├── newobj.pyc │ │ │ ├── object.py │ │ │ ├── object.pyc │ │ │ ├── types.py │ │ │ ├── types.pyc │ │ │ └── win32 │ │ │ │ ├── __init__.py │ │ │ │ ├── __init__.pyc │ │ │ │ ├── domcachedump.py │ │ │ │ ├── hashdump.py │ │ │ │ ├── hashdump.pyc │ │ │ │ ├── lsasecrets.py │ │ │ │ ├── rawreg.py │ │ │ │ └── rawreg.pyc │ │ │ ├── lsadump.py │ │ │ └── pwdump.py │ ├── pld2 │ └── pld3 ├── srcs │ ├── samba-4.0.4.tar.gz │ ├── samba-hashpass.patch │ └── winexe-waf.tar.gz └── system_migrate.rb ├── gen-obfuscated ├── LICENSE ├── README.md ├── gen-obfuscated.pl └── tcp-client.ps1 ├── iac2 ├── README.md ├── cli_shell.pl ├── iaa-monitor.pl ├── inital-access-agent.ps1 ├── initial-access-agent.py ├── lighttpd.conf └── setup-iac2.sh ├── mkatz-obfuscator ├── LICENSE ├── README.md ├── launcher.ps1 └── ps1-obfuscator.ps1 ├── ps-batchfile ├── ps12bat.ps1 ├── ps12bat_v2.ps1 ├── ps12bat_v3.ps1 ├── readme.md └── rsh.ps1 └── ps-obfuscate ├── LICENSE ├── PSobfuscator.ps1 └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/README.md -------------------------------------------------------------------------------- /async-shell-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/LICENSE -------------------------------------------------------------------------------- /async-shell-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/README.md -------------------------------------------------------------------------------- /async-shell-handler/async-client.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/async-client.ps1 -------------------------------------------------------------------------------- /async-shell-handler/cgi-shell-handler.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/cgi-shell-handler.pl -------------------------------------------------------------------------------- /async-shell-handler/cli.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/cli.pl -------------------------------------------------------------------------------- /async-shell-handler/functions/base64-obfuscate.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/functions/base64-obfuscate.pl -------------------------------------------------------------------------------- /async-shell-handler/functions/ps-base64-obfuscate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/functions/ps-base64-obfuscate.ps1 -------------------------------------------------------------------------------- /async-shell-handler/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/install.sh -------------------------------------------------------------------------------- /async-shell-handler/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/lighttpd.conf -------------------------------------------------------------------------------- /async-shell-handler/tcp-client.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/async-shell-handler/tcp-client.ps1 -------------------------------------------------------------------------------- /base64-tcp-shell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/base64-tcp-shell/LICENSE -------------------------------------------------------------------------------- /base64-tcp-shell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/base64-tcp-shell/README.md -------------------------------------------------------------------------------- /base64-tcp-shell/b64-tcp-client.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/base64-tcp-shell/b64-tcp-client.ps1 -------------------------------------------------------------------------------- /base64-tcp-shell/b64-tcp-handler.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/base64-tcp-shell/b64-tcp-handler.pl -------------------------------------------------------------------------------- /base64-tcp-shell/wmi-stager.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/base64-tcp-shell/wmi-stager.vbs -------------------------------------------------------------------------------- /boot2own/ABOUT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/ABOUT -------------------------------------------------------------------------------- /boot2own/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/COPYING -------------------------------------------------------------------------------- /boot2own/CREDITS-B2O: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/CREDITS-B2O -------------------------------------------------------------------------------- /boot2own/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/LICENSE -------------------------------------------------------------------------------- /boot2own/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/README.md -------------------------------------------------------------------------------- /boot2own/b2o-compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/b2o-compile.sh -------------------------------------------------------------------------------- /boot2own/b2o-isogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/b2o-isogen.sh -------------------------------------------------------------------------------- /boot2own/b2o-pxe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/b2o-pxe.sh -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/b2o-autopwn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/b2o-autopwn.sh -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/CHANGELOG -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/COPYING -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/README -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/cachedump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/cachedump.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/__init__.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/addrspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/addrspace.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/addrspace.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/addrspace.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/newobj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/newobj.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/newobj.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/newobj.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/object.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/object.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/object.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/types.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/types.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/types.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/__init__.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/domcachedump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/domcachedump.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/hashdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/hashdump.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/hashdump.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/hashdump.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/lsasecrets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/lsasecrets.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/rawreg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/rawreg.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/framework/win32/rawreg.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/framework/win32/rawreg.pyc -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/lsadump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/lsadump.py -------------------------------------------------------------------------------- /boot2own/live-files/boot-2-own/creddump/pwdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/boot-2-own/creddump/pwdump.py -------------------------------------------------------------------------------- /boot2own/live-files/pld2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/pld2 -------------------------------------------------------------------------------- /boot2own/live-files/pld3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/live-files/pld3 -------------------------------------------------------------------------------- /boot2own/srcs/samba-4.0.4.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/srcs/samba-4.0.4.tar.gz -------------------------------------------------------------------------------- /boot2own/srcs/samba-hashpass.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/srcs/samba-hashpass.patch -------------------------------------------------------------------------------- /boot2own/srcs/winexe-waf.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/srcs/winexe-waf.tar.gz -------------------------------------------------------------------------------- /boot2own/system_migrate.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/boot2own/system_migrate.rb -------------------------------------------------------------------------------- /gen-obfuscated/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/gen-obfuscated/LICENSE -------------------------------------------------------------------------------- /gen-obfuscated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/gen-obfuscated/README.md -------------------------------------------------------------------------------- /gen-obfuscated/gen-obfuscated.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/gen-obfuscated/gen-obfuscated.pl -------------------------------------------------------------------------------- /gen-obfuscated/tcp-client.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/gen-obfuscated/tcp-client.ps1 -------------------------------------------------------------------------------- /iac2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/README.md -------------------------------------------------------------------------------- /iac2/cli_shell.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/cli_shell.pl -------------------------------------------------------------------------------- /iac2/iaa-monitor.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/iaa-monitor.pl -------------------------------------------------------------------------------- /iac2/inital-access-agent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/inital-access-agent.ps1 -------------------------------------------------------------------------------- /iac2/initial-access-agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/initial-access-agent.py -------------------------------------------------------------------------------- /iac2/lighttpd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/lighttpd.conf -------------------------------------------------------------------------------- /iac2/setup-iac2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/iac2/setup-iac2.sh -------------------------------------------------------------------------------- /mkatz-obfuscator/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/mkatz-obfuscator/LICENSE -------------------------------------------------------------------------------- /mkatz-obfuscator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/mkatz-obfuscator/README.md -------------------------------------------------------------------------------- /mkatz-obfuscator/launcher.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/mkatz-obfuscator/launcher.ps1 -------------------------------------------------------------------------------- /mkatz-obfuscator/ps1-obfuscator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/mkatz-obfuscator/ps1-obfuscator.ps1 -------------------------------------------------------------------------------- /ps-batchfile/ps12bat.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-batchfile/ps12bat.ps1 -------------------------------------------------------------------------------- /ps-batchfile/ps12bat_v2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-batchfile/ps12bat_v2.ps1 -------------------------------------------------------------------------------- /ps-batchfile/ps12bat_v3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-batchfile/ps12bat_v3.ps1 -------------------------------------------------------------------------------- /ps-batchfile/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-batchfile/readme.md -------------------------------------------------------------------------------- /ps-batchfile/rsh.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-batchfile/rsh.ps1 -------------------------------------------------------------------------------- /ps-obfuscate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-obfuscate/LICENSE -------------------------------------------------------------------------------- /ps-obfuscate/PSobfuscator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-obfuscate/PSobfuscator.ps1 -------------------------------------------------------------------------------- /ps-obfuscate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xor-function/fathomless/HEAD/ps-obfuscate/README.md --------------------------------------------------------------------------------