├── .gitignore ├── README.md ├── config.py ├── config.pyc ├── core ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── banner.cpython-38.pyc │ ├── color.cpython-38.pyc │ └── show_modules.cpython-38.pyc ├── banner.py ├── banner.pyc ├── color.py ├── color.pyc ├── show_modules.py └── show_modules.pyc ├── deathnote.py ├── media ├── 16013729755637.jpg ├── 16013732304757.jpg ├── 16013733824390.jpg ├── 16014330583852.jpg ├── 16014332380779.jpg ├── 16014332498130.jpg ├── 16014332953451.jpg └── 16014334668980.jpg ├── modules ├── __init__.py ├── __init__.pyc ├── __pycache__ │ ├── __init__.cpython-38.pyc │ ├── bitsadmin_module.cpython-38.pyc │ ├── certutil_module.cpython-38.pyc │ ├── linux_module.cpython-38.pyc │ ├── msbuild_module.cpython-38.pyc │ ├── msf_module.cpython-38.pyc │ ├── mshta_module.cpython-38.pyc │ ├── msiexec_module.cpython-38.pyc │ ├── nmap_module.cpython-38.pyc │ ├── persistence_module.cpython-38.pyc │ ├── powershell_module.cpython-38.pyc │ ├── python_module.cpython-38.pyc │ ├── regsvr32_module.cpython-38.pyc │ ├── tips_module.cpython-38.pyc │ └── wmi_module.cpython-38.pyc ├── bitsadmin_module.py ├── bitsadmin_module.pyc ├── certutil_module.py ├── certutil_module.pyc ├── docker_module.py ├── elevate_module.py ├── linux_module.py ├── linux_module.pyc ├── msbuild_module.py ├── msbuild_module.pyc ├── msf_module.py ├── msf_module.pyc ├── mshta_module.py ├── mshta_module.pyc ├── msiexec_module.py ├── msiexec_module.pyc ├── nmap_module.py ├── nmap_module.pyc ├── other_module.py ├── other_module.pyc ├── persistence_module.py ├── persistence_module.pyc ├── powershell_module.py ├── powershell_module.pyc ├── python_module.py ├── python_module.pyc ├── regsvr32_module.py ├── regsvr32_module.pyc ├── tips_module.py ├── tips_module.pyc ├── wmi_module.py └── wmi_module.pyc ├── requirements.txt └── util ├── __init__.py ├── __init__.pyc ├── __pycache__ ├── __init__.cpython-37.pyc ├── __init__.cpython-38.pyc ├── util.cpython-37.pyc └── util.cpython-38.pyc ├── util.py └── util.pyc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/config.py -------------------------------------------------------------------------------- /config.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/config.pyc -------------------------------------------------------------------------------- /core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /core/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/__init__.pyc -------------------------------------------------------------------------------- /core/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/banner.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/__pycache__/banner.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/color.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/__pycache__/color.cpython-38.pyc -------------------------------------------------------------------------------- /core/__pycache__/show_modules.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/__pycache__/show_modules.cpython-38.pyc -------------------------------------------------------------------------------- /core/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/banner.py -------------------------------------------------------------------------------- /core/banner.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/banner.pyc -------------------------------------------------------------------------------- /core/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/color.py -------------------------------------------------------------------------------- /core/color.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/color.pyc -------------------------------------------------------------------------------- /core/show_modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/show_modules.py -------------------------------------------------------------------------------- /core/show_modules.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/core/show_modules.pyc -------------------------------------------------------------------------------- /deathnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/deathnote.py -------------------------------------------------------------------------------- /media/16013729755637.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16013729755637.jpg -------------------------------------------------------------------------------- /media/16013732304757.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16013732304757.jpg -------------------------------------------------------------------------------- /media/16013733824390.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16013733824390.jpg -------------------------------------------------------------------------------- /media/16014330583852.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16014330583852.jpg -------------------------------------------------------------------------------- /media/16014332380779.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16014332380779.jpg -------------------------------------------------------------------------------- /media/16014332498130.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16014332498130.jpg -------------------------------------------------------------------------------- /media/16014332953451.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16014332953451.jpg -------------------------------------------------------------------------------- /media/16014334668980.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/media/16014334668980.jpg -------------------------------------------------------------------------------- /modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /modules/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__init__.pyc -------------------------------------------------------------------------------- /modules/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/bitsadmin_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/bitsadmin_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/certutil_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/certutil_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/linux_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/linux_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/msbuild_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/msbuild_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/msf_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/msf_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/mshta_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/mshta_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/msiexec_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/msiexec_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/nmap_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/nmap_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/persistence_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/persistence_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/powershell_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/powershell_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/python_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/python_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/regsvr32_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/regsvr32_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/tips_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/tips_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/__pycache__/wmi_module.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/__pycache__/wmi_module.cpython-38.pyc -------------------------------------------------------------------------------- /modules/bitsadmin_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/bitsadmin_module.py -------------------------------------------------------------------------------- /modules/bitsadmin_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/bitsadmin_module.pyc -------------------------------------------------------------------------------- /modules/certutil_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/certutil_module.py -------------------------------------------------------------------------------- /modules/certutil_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/certutil_module.pyc -------------------------------------------------------------------------------- /modules/docker_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/docker_module.py -------------------------------------------------------------------------------- /modules/elevate_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/elevate_module.py -------------------------------------------------------------------------------- /modules/linux_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/linux_module.py -------------------------------------------------------------------------------- /modules/linux_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/linux_module.pyc -------------------------------------------------------------------------------- /modules/msbuild_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msbuild_module.py -------------------------------------------------------------------------------- /modules/msbuild_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msbuild_module.pyc -------------------------------------------------------------------------------- /modules/msf_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msf_module.py -------------------------------------------------------------------------------- /modules/msf_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msf_module.pyc -------------------------------------------------------------------------------- /modules/mshta_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/mshta_module.py -------------------------------------------------------------------------------- /modules/mshta_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/mshta_module.pyc -------------------------------------------------------------------------------- /modules/msiexec_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msiexec_module.py -------------------------------------------------------------------------------- /modules/msiexec_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/msiexec_module.pyc -------------------------------------------------------------------------------- /modules/nmap_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/nmap_module.py -------------------------------------------------------------------------------- /modules/nmap_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/nmap_module.pyc -------------------------------------------------------------------------------- /modules/other_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/other_module.py -------------------------------------------------------------------------------- /modules/other_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/other_module.pyc -------------------------------------------------------------------------------- /modules/persistence_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/persistence_module.py -------------------------------------------------------------------------------- /modules/persistence_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/persistence_module.pyc -------------------------------------------------------------------------------- /modules/powershell_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/powershell_module.py -------------------------------------------------------------------------------- /modules/powershell_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/powershell_module.pyc -------------------------------------------------------------------------------- /modules/python_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/python_module.py -------------------------------------------------------------------------------- /modules/python_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/python_module.pyc -------------------------------------------------------------------------------- /modules/regsvr32_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/regsvr32_module.py -------------------------------------------------------------------------------- /modules/regsvr32_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/regsvr32_module.pyc -------------------------------------------------------------------------------- /modules/tips_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/tips_module.py -------------------------------------------------------------------------------- /modules/tips_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/tips_module.pyc -------------------------------------------------------------------------------- /modules/wmi_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/wmi_module.py -------------------------------------------------------------------------------- /modules/wmi_module.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/modules/wmi_module.pyc -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | future 2 | win_unicode_console 3 | colorama -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /util/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/__init__.pyc -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /util/__pycache__/util.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/__pycache__/util.cpython-37.pyc -------------------------------------------------------------------------------- /util/__pycache__/util.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/__pycache__/util.cpython-38.pyc -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/util.py -------------------------------------------------------------------------------- /util/util.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/j3ers3/DeathNote/HEAD/util/util.pyc --------------------------------------------------------------------------------