Esempio n. 1
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.show_values, ["values", "ls"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.help(["values", "ls"], "Show all options.")

        event.help("gateway", "Set your gateway.")
        event.help("target", "Target a local ip.")
        event.help("interface", "Set the interface you would like to use.")

        event.help("run", "Run the test.")
Esempio n. 2
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.show_values, ["values", "ls"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.help(["values", "ls"], "Show all options.")

        event.help("target", "Set the target.")
        event.help("targets", "Set multiple targets.")
        event.help("size", "Set packet size.")
        event.help("threads", "Threads to use.")
        event.help("sleep", "Delay between threads.")
        event.help("interval", "Delay between each packet send.")
        event.help("auto stop", "Automatically stop attack after x seconds.")
        event.help("run", "Run the Ping of Death.")
        event.help("jammer", "Kill a whole wifi network, by targeting all.")
Esempio n. 3
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")
        event.commands(self.help, "help")
        event.parser(self.run_debug_arg, "$")
        event.parser(self.run_shell_arg, ".")
        event.help(["exit", "quit", "e", "q"], "Exit Raven-Storm.")
        event.help("help", "View all commands.")
        event.help("upgrade", "Upgrade Raven-Storm.")
        event.help(".", "Run a shell command.")
        event.help("clear", "Clear the screen.")
        event.help("l4", "Load the layer4 module. (UDP/TCP)")
        event.help("l3", "Load the layer3 module. (ICMP)")
        event.help("scanner", "Load the scanner module.")
        event.help("flood", "Load a very simple but effective dos module.")

        var.modules["Layer4"] = console()
        var.modules["Layer3"] = console()
        var.modules["Scanner"] = console()
        var.modules["Flood"] = console()
Esempio n. 4
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.show_values, ["values", "ls"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.help(["values", "ls"], "Show all options.")

        event.help("scan", "Scan for targets.")
        event.help("target", "Target a BL MAC adress.")
        event.help("threads", "Amount of threads to use.")
        event.help("size", "Size of the packets.")
        event.help("sleep", "Delay between threads.")
        # event.help("interval", "Delay between each packet send.")
        event.help("interface", "Set the interface you would like to use.")
        event.help("run", "Run the stress test.")
Esempio n. 5
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.show_values, ["values", "ls"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.help(["values", "ls"], "Show all options.")

        event.help("scan", "Scan for wifi networks.")
        event.help("channel", "Set the channel.")
        event.help("bssid", "Set the targets bssid address.")
        event.help("essid", "Set the targets essid name.")
        event.help("mon", "Set your own monitor interface.")
        event.help("interface", "Set the interface you would like to use.")
        event.help("threads", "Set the amount of threads to use.")
        event.help("run", "Run the stress test.")
Esempio n. 6
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.commands(self.show_values, ["values", "ls"])

        event.help_comment("|\n|-- Main commands:")
        event.help("port", "Set the target's port.")
        event.help("threads", "Set the number of threads.")
        event.help("ip", "Set the target's IP.")
        event.help("web", "Target the ip of a domain.")
        event.help("method", "Change attack method between UPD, TCP.")
        event.help("sleep", "Set the time delay between each packet send.")
        event.help("outtxt",
                   "Output each packets send status: enable/disable.")
        event.help("mute", "Do not output the connection reply.")
        event.help(["values", "ls"], "Show all selected options.")
        event.help("run", "Start the attack.")
        event.help_comment("|\n|-- Set Send-text:")
        event.help("message", "Set the packt's message.")
        event.help("repeat", "Repeat the target's message specific times.")
        event.help("mb", "Send specified amount of MB packtes to server.")
        event.help("get", "Define the GET Header.")
        event.help("agent", "Define a user agent instead of a random ones.")
        event.help_comment("|\n|-- Stress Testing:")
        event.help("stress", "Enable the Stress-testing mode.")
        event.help("st wait", "Set the time between each stress level.")
        event.help_comment("|\n|-- Multiple:")
        event.help("ips", "Set multple ips to target.")
        event.help("webs", "Set multple domains to target.")
        event.help("ports", "Attack multiple ports.")
        event.help_comment("|\n|-- Automation:")
        event.help("auto start",
                   "Set the delay before the attack should start.")
        event.help("auto step",
                   "Set the delay between the next thread to activate.")
        event.help("auto stop", "Set the delay after the attack should stop.")
Esempio n. 7
0
	def _add_commands(self):
		event.commands(self.exit_console, ["exit", "quit", "e", "q"])
		event.commands(self.show_values, ["values", "ls"])
		event.command(self.help)

		event.commands(self.run_shell, ".")
		event.commands(self.debug, "$")

		event.help(["values", "ls"], "Show all options.")

		event.help("target", "Set the target.")
		event.help("targets", "Set multiple targets.")
		event.help("threads", "Amount of threads to use.")
		event.help("sleep", "Delay between threads.")
		event.help("interval", "Delay between each packet send.")
		event.help("agent", "Define a user agent instead of a random ones.")
		event.help("run", "Run the stress test.")
Esempio n. 8
0
	def _add_commands(self):
		event.commands(self.exit_console, ["exit", "quit", "e", "q"])
		event.command(self.help)

		event.commands(self.run_shell, ".")
		event.commands(self.debug, "$")

		event.help_comment("|\n|-- Port scanning:")
		event.help("ports ip", "Get port of IP (get port i).")
		event.help("ports web", "Get port of web (get port w).")
		event.help_comment("|\n|-- Network scanning:")
		event.help("lan scan", "Get all Ips of Wifi.")
		event.help_comment("|\n|-- Domain scanning:")
		event.help("domain ip", "Get the IP by host.")
		# event.help("post scan", "Get all post variables of a Website.")
		event.help_comment("|\n|-- Speed testing:")
		event.help("speed down", "Return the time it needs to open a website.")
		event.help("speed ping", "Return the time it needs to ping an IP.")
Esempio n. 9
0
 def _add_commands(self):
     event.commands(self.exit_console, ["exit", "quit", "e", "q"])
     event.commands(self.run_shell, ".")
     event.commands(self.debug, "$")
     event.commands(self.help, "help")
     event.parser(self.run_debug_arg, "$")
     event.parser(self.run_shell_arg, ".")
     event.help(["exit", "quit", "e", "q"], "Exit Raven-Storm.")
     event.help("help", "View all commands.")
     event.help(".", "Run a shell command.")
     event.help("clear", "Clear the screen.")
     event.help("host", "Enter a host ip.")
     event.help("port", "Enter the hosting port.")
     event.help("password", "Setup a password.")
     event.help("run", "Start the server.")
Esempio n. 10
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")
        event.commands(self.help, "help")
        event.parser(self.run_debug_arg, "$")
        event.parser(self.run_shell_arg, ".")
        event.help(["exit", "quit", "e", "q"], "Exit Raven-Storm.")
        event.help("help", "View all commands.")
        event.help("upgrade", "Upgrade Raven-Storm.")
        event.help(".", "Run a shell command.")
        event.help("clear", "Clear the screen.")
        event.help("record", "Save this session.")
        event.help("load", "Redo a session using a session file.")
        event.help("ddos", "Connect to a Raven-Storm server.")
        event.help_comment("\nModules:")
        event.help("l4", "Load the layer4 module. (UDP/TCP)")
        event.help("l3", "Load the layer3 module. (ICMP)")
        event.help("l7", "Load the layer7 module. (HTTP)")
        event.help("bl", "Load the bluetooth module. (L2CAP)")
        event.help("arp", "Load the arp spoofing module. (ARP)")
        event.help("wifi", "Load the wifi module. (IEEE)")
        event.help("server", "Load the server module for DDos atacks.")
        event.help("scanner", "Load the scanner module.")

        var.modules["Layer4"] = console()
        var.modules["Layer3"] = console()
        var.modules["Layer7"] = console()
        var.modules["BL"] = console()
        var.modules["ARP"] = console()
        var.modules["Scanner"] = console()
        var.modules["Server"] = console()
        var.modules["WIFI"] = console()
Esempio n. 11
0
    def _add_commands(self):
        event.commands(self.exit_console, ["exit", "quit", "e", "q"])
        event.commands(self.show_values, ["values", "ls"])
        event.command(self.help)

        event.commands(self.run_shell, ".")
        event.commands(self.debug, "$")

        event.help(["values", "ls"], "Show all options.")

        event.help("target", "Set the target.")
        event.help("targets", "Set multiple targets.")
        event.help("threads", "Threads to use.")
        event.help("sleep", "Delay between threads.")
        event.help("interval", "Delay between each packet send.")
        event.help("run", "Run the Ping of Death.")