Releases: Edu4rdSHL/fhc
Releases · Edu4rdSHL/fhc
FHC v0.8.2
FHC v0.8.1
- The output format has been reverted to the previous default of just the URL. If you want all the info, you can use the
--show-full-data
flag. - Performance has been improved by refining the data assignation depending on the use-case.
FHC v0.8.0
- Show the final redirection location by default
- High-performance improvements, simplifying code logic.
FHC v0.7.1
Please check the 7.0.0 release notes for the full changelog.
FIXES
- Properly return the URL if --max-redirects is used. 8293e8b
FHC v0.7.0
FHC v0.6.1
- Use our custom trust-dns implementation until https://github.com/bluejekyll/trust-dns/pull/1632 is decided. 66a6166
FHC v0.6.0
- Split functions across modules and performance optimizations. Now you to use the crate as a library calling the public functions such as return_http_data (for a faster and accurate HTTP checking process that returns a HashMap of the data) and
return_http_client
(insecure on purpose). 2121522
FHC v0.5.1
- Give a better help message. 24683bd
FHC v0.5.0
- Wordlists support for brute-forcing a custom
-d/--domain
. Usage:cat wordlist.txt | fhc -d example.com
. It will append all the words inwordlist.txt
toexample.com
and then check the HTTP status of the resulting hosts. 4439d45 - Random user agent per request support. 4439d45
- Performance improvement dropping the tasks once finished. 4439d45
- Add
--retries
support, fixed #1. cd220f7 - Bump dependencies. 4439d45
FHC v0.4.0
- Add support for showing status codes with the
-s/--show-codes
option.