We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f654fea commit c8bab6aCopy full SHA for c8bab6a
lib/rex/post/meterpreter/ui/console/command_dispatcher/core.rb
@@ -337,9 +337,17 @@ def cmd_irb(*args)
337
'-w' => [ true, 'Retry wait time (seconds)' ],
338
'-h' => [ false, 'Help menu' ])
339
340
+ def cmd_set_timeouts_help
341
+ print_line('Usage: set_timeouts [options]')
342
+ print_line
343
+ print_line('Set the current timeout options.')
344
+ print_line('Any or all of these can be set at once.')
345
+ print_line(@@set_timeouts_opts.usage)
346
+ end
347
+
348
def cmd_set_timeouts(*args)
349
if ( args.length == 0 or args.include?("-h") )
- cmd_transport_help
350
+ cmd_set_timeouts_help
351
return
352
end
353
0 commit comments