Skip to content

cr0hn/zap-api-python

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

# zap-api-python

# Install

# pip install python-owasp-zap

# Basic usage

from zap import ZAPv24

zap = ZAPv24()

print('Spidering target %s' % target)
scanid = zap.spider.scan(target)

# Give the Spider a chance to start
time.sleep(2)

while int(zap.spider.status(scanid)) < 100:
    print('Spider progress %: ' + zap.spider.status(scanid))
    time.sleep(2)

About

OWASP ZAP Python API

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%