sshmitm.cli module

This module provides a set of tools for SSH Man-In-The-Middle attacks. The module provides a main method that parses the provided command line arguments and invokes the corresponding subcommand.

Class: SubCommand

The SubCommand class represents a subcommand in the SSH-MITM tool. It holds the implementation of the subcommand and the initialization of the corresponding parser for command line arguments.

Properties

  • run_func: function to run for the subcommand. It takes in the parsed command line arguments as input.

  • parser_func: function to initialize the command line argument parser for the subcommand.

  • help: help string for the subcommand.

Function: main

The main function is the entry point of the SSH-MITM tools. It provides a high-level overview of all available subcommands, parses the command line arguments, sets up logging, initializes the subcommand and executes the corresponding run function.

The main method takes in no inputs and returns nothing. It only has side effects such as setting up logging, parsing the command line arguments, and invoking the appropriate subcommand implementation. Arguments

The following command line arguments are supported by the main method:

  • -V, –version: prints the version information of the SSH-MITM tools.

  • -d, –debug: provides more verbose output of status information.

  • –paramiko-log-level: sets the log level for the paramiko library.

  • –disable-workarounds: disables the paramiko workarounds.

The main method also supports subcommands. The specific subcommands and their arguments are defined by the parser_func properties of the corresponding SubCommand instances.

sshmitm.cli.main()

Main function of the SSH-MITM tools, it provides a CLI interface to use the audit and server subcommands.

Return type:

None