urlscan
TODO Write a description here
Installation
- Install Crystal
git clone
this repocd
into the reposhards build
Docker
You can also use the Docker image:
docker run -it --rm neuralegion/urlscan --url https://www.google.com --method GET
Usage
Simple example:
urlscan --url https://www.google.com --method GET
This will output the request and response body as HAR to the console. You can use a simple pipe to save it to a file:
urlscan --url https://www.google.com --method GET > google.har
Full usage:
Usage: urlscan [arguments]
-u URL, --url=URL Target URL
-m METHOD, --method=METHOD HTTP Method to use (GET/POST/etc..)
-b BODY, --body=BODY Body to send
-H HEADER, --header=HEADER Header to send (NAME:VALUE)
-h, --help
Contributing
- Fork it (https://github.com/NeuraLegion/urlscan/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Bar Hofesh - creator and maintainer