You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
PurpleDome/plugins/default/kali/nmap/nmap_stresstest_plugin.py

44 lines
1.1 KiB
Python

#!/usr/bin/env python3
# A plugin to nmap targets - in an agressive way to break sensors
from plugins.base.attack import AttackPlugin
class NmapStresstestPlugin(AttackPlugin):
# Boilerplate
name = "nmap_stresstest"
description = "Nmap scan the target. As aggressive as possible to overload sensors. Maybe even crash them"
ttp = "T1595"
references = ["https://attack.mitre.org/techniques/T1595/"]
required_files = [] # Files shipped with the plugin which are needed by the kali tool. Will be copied to the kali share
def __init__(self):
super().__init__()
self.plugin_path = __file__
def run(self, targets):
""" Run the command
@param targets: A list of targets, ip addresses will do
"""
res = ""
pg = self.get_attacker_playground()
cmd = f"cd {pg};"
for t in targets:
cmd += f"nmap -T5 --min-parallelism 100 --max-scan-delay 1 {t.get_ip()};"
res += self.attacker_run_cmd(cmd) or ""
return res
def get_config_section_name(self):
""" Use nmap configuration """
return "nmap"