Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dileep17/cypress_burpsuite
https://github.com/dileep17/cypress_burpsuite
Last synced: 29 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dileep17/cypress_burpsuite
- Owner: Dileep17
- Created: 2020-05-12T13:14:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-04T17:45:17.000Z (almost 2 years ago)
- Last Synced: 2024-11-05T10:59:54.836Z (3 months ago)
- Language: JavaScript
- Size: 100 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cypress_burpsuite
To be done - code below api calls to perform the scan
##### Add the target to scope
```
curl -X PUT --header 'Content-Type: application/json' --header 'Accept: application/json' 'http://localhost:8090/burp/target/scope?url=http://owsapjuiceshopapp.herokuapp.com' -v# Spider the targetcurl -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' 'http://localhost:8090/burp/spider?baseUrl=http://owsapjuiceshopapp.herokuapp.com' -v
```##### Scan the target
```
curl -X POST --header 'Content-Type: application/json' --header 'Accept: */*' 'http://localhost:8090/burp/scanner/scans/active?baseUrl=http://owsapjuiceshopapp.herokuapp.com/rest/user/login' -v
```##### Get Status of Scan
```
curl -X GET --header 'Accept: application/json' 'http://localhost:8080/burp/scanner/status'
```##### Create HTML Report
```
curl -X GET --header 'Accept: application/octet-stream' 'http://localhost:8080/burp/report?urlPrefix=http://owsapjuiceshopapp.herokuapp.com/rest/user/login&reportType=HTML' -o testReport.html
```Issues
1. https://github.com/vmware/burp-rest-api/issues/95