python-optparse模块给脚本增加参数选项

import optparse
parser = optparse.OptionParser('[-] Usage %prog '+
'-H <RHOST[s]> -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')

(options, args) = parser.parse_args()

上一篇:PHY过采样问题


下一篇:黑马程序员——【Java基础】——Java语法基础