Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashkarin/httpresphasher
Toy-tool to request URLs and calculate MD5 hashes of received responses in parallel. :car:
https://github.com/ashkarin/httpresphasher
Last synced: 7 days ago
JSON representation
Toy-tool to request URLs and calculate MD5 hashes of received responses in parallel. :car:
- Host: GitHub
- URL: https://github.com/ashkarin/httpresphasher
- Owner: ashkarin
- Created: 2021-04-13T23:58:18.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T09:08:28.000Z (over 3 years ago)
- Last Synced: 2024-11-07T08:46:58.394Z (about 2 months ago)
- Language: Go
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
HTTP Response Hasher
=====================![Tests](https://github.com/ashkarin/httpresphasher/actions/workflows/test.yaml/badge.svg)
Tool to request URLs and calculate MD5 hashes of the received responses
in parallel.# Disclaimer #
This is a toy project made for fun and it will not be supported.
It is implemented using only the standard Go library.# Build and Test #
To build the project
```
make build
```To run tests
```
make test
```# Install #
To install
```
go intsall github.com/ashkarin/httpresphasher@latest
```# Usage #
The tool has only a `--parallel` parameter to control the number of workers
processing the URLs in parallel.```
httpresphasher --parallel 2 google.com http://mail.ru
```## DEMO ##
[![asciicast](https://asciinema.org/a/xdMLtnmv58DuopAYrBezwiJht.svg)](https://asciinema.org/a/xdMLtnmv58DuopAYrBezwiJht)