https://github.com/ddworken/xsscrapyprocess
A python script to help process the output from xsscrapy and remove duplicate vulnerabilities
https://github.com/ddworken/xsscrapyprocess
Last synced: about 2 months ago
JSON representation
A python script to help process the output from xsscrapy and remove duplicate vulnerabilities
- Host: GitHub
- URL: https://github.com/ddworken/xsscrapyprocess
- Owner: ddworken
- License: gpl-2.0
- Created: 2015-03-24T20:00:32.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-03-26T00:18:53.000Z (about 11 years ago)
- Last Synced: 2025-12-10T07:44:01.587Z (6 months ago)
- Language: Python
- Size: 289 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# xsscrapyProcess
A python script to help process the output from xsscrapy and remove duplicate vulnerabilities
```
usage: xsscrapyProcess.py fileName
[--removeURLs REMOVEURLS]
[--onlyURLs ONLYURLS]
[--removeDuplicateInjections]
[--removeUserAgentVulns]
[--output OUTPUT]
[--quiet]
```
###Examples:
=========
Read input from xsscrapy-vulns.txt and remove all URLs containing ```example.com/blog/```
```
python xsscrapyProcess.py xsscrapy-vulns.txt --removeURLs example.com/blog/
```
==========
Read input from xsscrapy-vulns.txt and remove all URLs that don't contain ```example.com/blog/```
```
python xsscrapyProcess.py xsscrapy-vulns.txt --onlyURLs example.com/blog/
```
==========
Read input from xsscrapy-vulns.txt and remove vulnerabilities with duplicate injection points.
```
python xsscrapyProcess.py xsscrapy-vulns.txt --removeDuplicateInjections
```
==========
Read input from xsscrapy-vulns.txt and remove user agent based vulnerabilities..
```
python xsscrapyProcess.py xsscrapy-vulns.txt --removeUserAgentVulns
```