import optparse parser = optparse.OptionParser('[-] Usage %prog '+\ '-H -l [-p -F ]') parser.add_option('-H', dest='tgtHost', type='string',\ help='specify the target address[es]') parser.add_option('-p', dest='lport', type='string',\ help='specify the listen port') parser.add_option('-l', dest='lhost', type='string',\ help='specify the listen address') parser.add_option('-F', dest='passwdFile', type='string',\ help='password file for SMB brute force attempt') [s]>

(options, args) = parser.parse_args()

相关文章:

  • 2021-11-25
  • 2021-06-07
  • 2022-12-23
  • 2022-12-23
  • 2022-01-23
  • 2022-12-23
  • 2022-02-05
猜你喜欢
  • 2021-11-07
  • 2021-11-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案