From 19c68b09d848256d6f01488ce8d79623788607e0 Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Tue, 9 Jul 2024 09:23:03 +0100 Subject: [PATCH] Update README.md --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index dbe09da..5c3936e 100644 --- a/README.md +++ b/README.md @@ -2118,6 +2118,16 @@ Many other services (for free) ## 12. Intelligence Gathering + +Find sub domains from TLS Database: +```sh +crt() { + [ $# -ne 1 ] && { echo >&2 "crt "; return 255; } + curl -s "https://crt.sh/?q=${1:?}&output=json" --compressed | jq -r '.[].common_name,.[].name_value' | anew | sed 's/^\*\.//g' | tr '[:upper:]' '[:lower:]' +} +# Usage: crt +``` + | OSINT Hacker Tools || | --- | --- | | https://api.c99.nl | Free: [Subdomain Finder](https://subdomainfinder.c99.nl), PAID: Phone-Lookup, CF Resolver, WAF Detector, IP2Host, and more...for $25/year. |