{ "info": { "author": "attwad", "author_email": "tmusoft@gmail.com", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Topic :: Security", "Topic :: Software Development :: Libraries", "Topic :: System :: Networking" ], "description": "========\npynessus\n========\n\nClient for the xml rpc interface of the Nessus vulnerability scanner v5+.\n\nMethods mirror what is in the official API at\nhttp://static.tenable.com/documentation/nessus_5.0_XMLRPC_protocol_guide.pdf\nin a pythonic way so that you don't have to care about json or xml.\n\nOngoing work\n------------\nFeatures are being added, not all the API is mapped yet.\nAs all the api calls kind of look the same, it is braindead work so pull\nrequests are more than welcome.\n\nExample usage\n-------------\n\n.. code-block:: python\n\n with Nessus('127.0.0.1:8443') as nes:\n nes.Login('admin', 'pass$%&(#'%#[]@:')\n logging.info('Feeds: %s', nes.Feed())\n\nAll calls can also be done asynchronously if needed:\n\n.. code-block:: python\n\n with Nessus('127.0.0.1:8443') as nes:\n def LoginCallback(result, error=None):\n if error:\n logging.warning('Error while logging: %s', error)\n return\n logging.info('Correcty logged in: %s', result)\n\n future = nes.Login('admin', 'pass$%&(#\\'%#[]@:', callback=LoginCallback)\n futures.wait([future])\n # At this point the LoginCallback is sure to have been called.", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/attwad/pynessus", "keywords": null, "license": "UNKNOWN", "maintainer": null, "maintainer_email": null, "name": "pynessus", "package_url": "https://pypi.org/project/pynessus/", "platform": "any", "project_url": "https://pypi.org/project/pynessus/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://github.com/attwad/pynessus" }, "release_url": "https://pypi.org/project/pynessus/0.9.1/", "requires_dist": null, "requires_python": null, "summary": "Library to talk to a remote Nessus 5 server that via its xmlrpc interface.", "version": "0.9.1" }, "last_serial": 1036707, "releases": { "0.9": [ { "comment_text": "", "digests": { "md5": "c91a2e333baa85ee6ae1a1c752e0e304", "sha256": "6710dc23e6e4ef45fae49b1e838376609b2730d29d3332d515a956411db9438d" }, "downloads": -1, "filename": "pynessus-0.9.zip", "has_sig": false, "md5_digest": "c91a2e333baa85ee6ae1a1c752e0e304", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9853, "upload_time": "2014-03-21T04:20:53", "url": "https://files.pythonhosted.org/packages/91/c2/75de9808b46aa1172c76e448c15f8ac2f82c3e2b716d60c1e8cc045c8ab5/pynessus-0.9.zip" } ], "0.9.1": [ { "comment_text": "", "digests": { "md5": "dd52eb919cfbf5a128b981ff407a6144", "sha256": "b0aba6e0f52fd5ecfc6f25b9791b528a425d09f92f0e7fd0d3f4e4f400b07de9" }, "downloads": -1, "filename": "pynessus-0.9.1.zip", "has_sig": false, "md5_digest": "dd52eb919cfbf5a128b981ff407a6144", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9957, "upload_time": "2014-03-21T04:26:10", "url": "https://files.pythonhosted.org/packages/50/03/336b36ddbbb7de5effb1195a6511fa205e01373168448d6e8eb721572add/pynessus-0.9.1.zip" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "dd52eb919cfbf5a128b981ff407a6144", "sha256": "b0aba6e0f52fd5ecfc6f25b9791b528a425d09f92f0e7fd0d3f4e4f400b07de9" }, "downloads": -1, "filename": "pynessus-0.9.1.zip", "has_sig": false, "md5_digest": "dd52eb919cfbf5a128b981ff407a6144", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9957, "upload_time": "2014-03-21T04:26:10", "url": "https://files.pythonhosted.org/packages/50/03/336b36ddbbb7de5effb1195a6511fa205e01373168448d6e8eb721572add/pynessus-0.9.1.zip" } ] }