Skip to content

filters the endpoints using blacklist(or whitelist) method

License

Notifications You must be signed in to change notification settings

espalloc7/endpoint-filter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

endpoint-filter

filters the endpoints using blacklist(or whitelist) method

Usage

put endpoints in endpoints.txt, modify the code that what you want to filter, (e.g. '404' or 'not found' [case insensitive]) and you are good to go.

if you want to use one-liner bash script instead:

while read endpoint; do curl -s $endpoint | grep -iq '401' || echo $endpoint; done < endpoints.txt > alive.txt

About

filters the endpoints using blacklist(or whitelist) method

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages