Python XMLRPC Nessus错误

时间:2012-01-04 15:37:38

标签: python xml-rpc nessus

有人知道我为什么会收到这个错误吗?

我正在使用http://code.google.com/p/nessusxmlrpc/wiki/HowTo

root@bt:~/NessusXMLRPC-0.21# python newnessusscan.py 
Traceback (most recent call last):
  File "newnessusscan.py", line 6, in <module>
    scan = x.quickScan("MyXMLTestSCan", "192.168.1.100", "Internal Network Scan")
  File "/root/NessusXMLRPC-0.21/NessusXMLRPC.py", line 280, in quickScan
    if type(policies['policy']) is dict:
TypeError: list indices must be integers, not str

我尝试传递一个整数,但没有运气。

附件是实际模块中存在问题的代码:

 if type(policies['policy']) is dict:
            # There appears to be only one configured policy
            policy = policies['policy']
            if policy['policyName'] == policy_name:
                policy_id = policy['policyID']

包含newnessusscan.py的pastebin链接: http://pastebin.com/Bd2Zsw49

1 个答案:

答案 0 :(得分:2)

这是由nessusxmlrpc-py中的error引起的。

您可以应用NessusXMLRPC.py的{​​{3}}或patch