TypeError:'NoneType'对象与Wapiti不可取消订阅

时间:2015-09-11 11:04:42

标签: python security wapiti

我正在尝试扫描我的服务器以查找漏洞,而我正在使用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]#

1 个答案:

答案 0 :(得分:1)

您使用的是最新版本。

但是,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