Skip to content

Latest commit

 

History

History
51 lines (39 loc) · 1.81 KB

README.md

File metadata and controls

51 lines (39 loc) · 1.81 KB

grepX

Extract URLs that may be vulnerable from a list of URLs

made-with-python GitHub release PRs Welcome Open Source Love svg1 GitHub license

What is grepX?

grepX is a multi-threaded CLI tool which extracts some special URLs with parameters that may be vulnerable. Each pattern will output different URLs according to its parameters.

Installation

$ git clone https://github.com/DevanshRaghav75/grepX.git
$ cd grepX
$ sudo python3 setup.py install
$ grepX -h 

Args

Args Discription
file Specify the URLs file
Pattern Specify the pattern you want to find
-s/--silent Enable silent mode
-c/--concurrency Specify the concurrency, default are 100

Usage

Finding sqli patterns

grepx urls.txt sqli 

Finding xss patterns with silent and concurrency argument

grepx urls.txt xss --silent -c 20

Finding and saving the output

grepx urls.txt lfi > urls.lfi

Inspired by