hikariatama / acunetix

Acunetix Web Vulnerability Scanner SDK for Python

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DeepSource

DeepSource

GitHub code size in bytes GitHub repo size License Forks Stars Code Style: Black

SDK for Acunetix Web Vulnerability Scanner

Installation

pip install acunetix

Usage

import asyncio
from acunetix import AcunetixAPI

async def main():
    api = AcunetixAPI("TOKEN", "localhost:3443")
    await api.connect()
    result = await api.default_scan(InputTarget("https://hikariatama.ru"))
    print(result)

asyncio.run(main())

License

GNU AGPLv3

Docs

Documentation is not ready yet, but you can read the source code.

About

Acunetix Web Vulnerability Scanner SDK for Python

License:GNU Affero General Public License v3.0


Languages

Language:Python 100.0%