Esempio n. 1
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. 2
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. 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(".", "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()