gpt4 book ai didi

python - 类型错误 : 'NoneType' object is unsubscriptable with Wapiti

转载 作者:太空宇宙 更新时间:2023-11-03 17:26:15 26 4
gpt4 key购买 nike

我正在尝试扫描我的服务器是否存在漏洞,我正在使用 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 bug , fixed on 2013-10-21

关于python - 类型错误 : 'NoneType' object is unsubscriptable with Wapiti,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32521935/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com