sqlmap中有定义了class AttribDict(dict):这个类来存储数据,父类是dict。
conf = AttribDict()
实例化conf之后就可以执行如下代码
if conf.profile: 如果conf没有profile,它会返回none
这里我就不太懂了,是什么原因导致它会返回none
例如:
a = {}
print a.jj
这样的输出应该是错误AttributeError: 'dict' object has no attribute 'jj'
谢了