我试图扫描我的服务器的漏洞,我正在使用马鹿做它。奇怪的是,当我运行它时,我会得到这个错误。怎么了?
root@server [~/wapiti-2.3.0/bin]# python wapiti http://my.ip.address.here
Traceback (most recent call last):
File "wapiti", line 41, in <module>
lan.configure()
File "/root/wapiti-2.3.0/wapitiCore/language/language.py", line 58, in configure
lang = langCounty[:2] # en
TypeError: 'NoneType' object is unsubscriptable
root@server [~/wapiti-2.3.0/bin]#
发布于 2015-09-11 11:16:26
您正在使用最新版本。
然而,电流源有一个固定的版本:
if lang is None:
# if lang is not specified, default language is used
def_locale = locale.getdefaultlocale()
langCounty = def_locale[0] # en_UK
if not langCounty is None:
lang = langCounty[:2] # en
是臭虫,2013年固定日期-10-21。
https://stackoverflow.com/questions/32521935
复制相似问题