@@ -13,16 +13,22 @@ def module_gui(sub_parser: argparse.ArgumentParser):
1313
1414def module_dump (sub_parser : argparse .ArgumentParser ):
1515 dump_parser = sub_parser .add_parser (
16- "dump" ,
17- description = "Recon for available data connections and dump their content" ,
18- help = "Recon for available data connections and dump their content." ,
16+ "dump" , description = "Dump content for all available connection from recon" , help = "Dump content for all available connection from recon"
1917 )
2018 dump_parser .add_argument ("-c" , "--clear-cache" , action = "store_true" , help = "Clear local disk cache" )
2119 dump_parser .add_argument ("--cache-path" , default = CACHE_PATH , help = "Path to store collected resources and data." )
2220 dump_parser .add_argument ("-t" , "--tenant" , required = False , type = str , help = "Tenant id to connect." )
2321 dump_parser .add_argument ("-g" , "--gui" , action = "store_true" , help = "Run local server for gui." )
2422
2523
24+ def module_recon (sub_parser : argparse .ArgumentParser ):
25+ dump_parser = sub_parser .add_parser ("recon" , description = "Recon for available data connections" , help = "Recon for available data connections." )
26+ dump_parser .add_argument ("-c" , "--clear-cache" , action = "store_true" , help = "Clear local disk cache" )
27+ dump_parser .add_argument ("--cache-path" , default = CACHE_PATH , help = "Path to store collected resources and data." )
28+ dump_parser .add_argument ("-t" , "--tenant" , required = False , type = str , help = "Tenant id to connect." )
29+ dump_parser .add_argument ("-g" , "--gui" , action = "store_true" , help = "Run local server for gui." )
30+
31+
2632def module_nocodemalware (command_subparsers : argparse .ArgumentParser ):
2733 nocodemalware_parser = command_subparsers .add_parser (
2834 "nocodemalware" ,
@@ -126,6 +132,7 @@ def parse_arguments():
126132 command_subparsers = parser .add_subparsers (help = "command" , dest = "command" )
127133
128134 module_dump (command_subparsers )
135+ module_recon (command_subparsers )
129136 module_gui (command_subparsers )
130137 module_backdoor (command_subparsers )
131138 module_nocodemalware (command_subparsers )
0 commit comments