From 1ad02bb5fd52a749cc6e472bcf8e7c6b718f49bb Mon Sep 17 00:00:00 2001 From: skyper <5938498+SkyperTHC@users.noreply.github.com> Date: Tue, 9 Jul 2024 09:25:50 +0100 Subject: [PATCH] Update README.md --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c3936e..5651fe7 100644 --- a/README.md +++ b/README.md @@ -2118,6 +2118,13 @@ Many other services (for free) ## 12. Intelligence Gathering +Reverse DNS from multiple public databases: +```sh +rdns () { + curl "https://lookup.segfault.net/api/v1/download?ip_address=${1:?}&limit=10&apex_domain=${2}" | column -t -s, +} +# rdns +``` Find sub domains from TLS Database: ```sh @@ -2125,7 +2132,7 @@ 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 +# crt ``` | OSINT Hacker Tools ||