Skip to content

Umar-Farook-we45/RoboZap

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

RoboZap

Documentation for test library RoboZap.

Please refer to the sample Zap Test in TestfireZap.robot that uses the RoboZap library and Selenium Library with it to perform "parameterized scanning"/authenticated scanning of the app.

Installing

  • Please install all requirements in requirements.txt with pip install requirements.txt
  • Install RoboZap libraries into the virtualenv with python setup.py install

Importing

Arguments: [proxy]

ZAP Library can be imported with one argument

Arguments: - proxy: Proxy is required to initialize the ZAP Proxy at that location. Must include PortSpec - port: Port is required to be set as a global/suite variable for the rest of the suite to access location

Examples:

| = Keyword Definition = | = Description = |

| Library |RoboZap | proxy| port |

Start Headless Zap

Arguments: [path]

Start OWASP ZAP without a GUI

Examples:

| start headless zap | path |

Start GUI Zap

Arguments: [path]

Start OWASP ZAP without a GUI

Examples:

| start gui zap | path |

Zap Define Context

Arguments: [contextname, url]

Add Target to a context and use the context to perform all scanning/spidering operations

Examples:

| zap define context | contextname | target |

Zap Open Url

Arguments: [url]

Invoke URLOpen with ZAP

Examples:

| zap open url | target |

Zap Scan Status

Arguments: [scan_id]

Fetches the status for the spider id provided by the user

Examples:

| zap scan status | scan_id |

Zap Shutdown

Arguments: []

Shutdown process for ZAP Scanner

Zap Spider Status

Arguments: [spider_id]

Fetches the status for the spider id provided by the user Examples: | zap spider status | spider_id |

Zap Start Ascan

Arguments: [context, url, policy=Default Policy]

Initiates ZAP Active Scan on the target url and context

Examples:

| zap start ascan | context | url |

Zap Start Spider

Arguments: [target, url]

Start ZAP Spider with ZAP's inbuilt spider mode

Examples:

| zap start spider | target | url |

Zap Write To Json File

Arguments: [scan_id]

Fetches all the results from zap.core.alerts() and writes to json file.

Examples:

| zap write to json | scan_id |

Zap Generate Report (Export Report Plugin)

Arguments: [file_path, report_format, report_title, report_author]

Uses the Export Report from ZAP to generate reports in multiple formats.

  • file_path: needs to be an absolute path and include the file name with extension.
  • format: can be json|xml|xhtml|pdf|doc
  • report title: Any title you deem fit for the exported report
  • report auhor: Any name you want for the author of the report

Examples:

| zap export report | file_path | format | report title | report author

Zap Write To Tiny

Arguments: [base_url, db_name, app_name]

** This will be deprecated soon. TinyDB and existing ways of doing this is becoming a pain **

Fetches all the results from zap.core.alerts() and writes to json file.

Examples:

| zap write to json | scan_id |

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%