1.0.6 • Published 6 months ago

is-responding v1.0.6

Weekly downloads
1
License
MIT
Repository
github
Last release
6 months ago

is-responding

cli-available node version npm version downloads count size license github-ci

🔨 A tool to find active endpoints using an enumeration strategy

Give a ⭐️ if this project helped you!

Motivation

A lot of services use the next integer in parameters.

If you want to test services like that, this tool is for you!

CLI

Installation:

npm install -g is-responding
is-responding -h
Options:
  --version      Show version number                                   [boolean]
  --url, -u      URL with {{parameter}}                               [required]
  --from, -f     Provide an initial value from count should start   [default: 0]
  --to, -t       Provide an last value when count ends             [default: 10]
  --verbose, -v  Display endpoints which refused
  --help         Show help                                             [boolean]

Examples

➡️ Use case: Start making request

is-responding -u "https://example.org/{{integer}}/foo?bar=1" -f 123 -t 234 -v
ℹ Enumeration started
✔ [20] 200: https://example.org/20/foo?bar=1
✔ [98] 200: https://example.org/98/foo?bar=1
ℹ Enumeration completed

Related

License

The MIT License @ 2020