我正在尝试扫描服务器中的漏洞,并且正在使用Wapiti来做到这一点。奇怪的是,我在运行它时收到此错误。怎么了?

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]#

最佳答案

您正在使用最新版本。

但是,current source具有固定版本:

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


a bugfixed on 2013-10-21

10-06 13:23