From e6933829fca2fb921cf77fff209212667d9a325c Mon Sep 17 00:00:00 2001 From: Kevin Pham <37129444+deoxykev@users.noreply.github.com> Date: Tue, 29 Sep 2020 15:45:02 -0700 Subject: [PATCH 1/2] Update README.md Add misc network tools --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index fef0818..f4f89dd 100644 --- a/README.md +++ b/README.md @@ -72,6 +72,7 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `dig resolver.dnscrypt.info TXT +short` * `curl https://dnsjson.com/resolver.dnscrypt.info/TXT.json` * `curl -L https://edns.ip-api.com/json` +* `curl 'api.hackertarget.com/zonetransfer/?q=zonetransfer.me'` - DNS Zone Transfer ### JSON only @@ -91,6 +92,7 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `curl ifconfig.co/country` or `curl ifconfig.co/city` or `curl ifconfig.co/country-iso` or `http ifconfig.co/json` * `curl ifconfig.es/geo` or `curl ifconfig.es/json` or `curl ifconfig.es/country` or `curl ifconfig.es/code` or `curl ifconfig.es/city` or `curl ifconfig.es/latitude` or `curl ifconfig.es/longitude` + ## Text Sharing * `echo "Hello world!" | curl -F 'f:1=<-' ix.io` @@ -99,6 +101,7 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `echo "Hello world!" | nc termbin.com 9999` * `echo "Hello world!" | curl -F 'sprunge=<-' sprunge.us` * `echo "Hello world!" | curl -H "content-type: text/plain" -d @- https://textdb.dev/api/data/unique-id-for-my-text` +* `curl https://patchbay.pub/your-custom-path -d "Hello world!"` and `curl -s https://patchbay.pub/your-custom-path` ## URL shortener @@ -110,6 +113,7 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `curl --upload-file transfer.sh/` * `curl --upload-file filepush.co/upload/` * `curl -F file=@ https://ttm.sh` +* `curl https://patchbay.pub/your-custom-filepath.exe --data-binary @` and `curl -LO https://patchbay.pub/your-custom-filepath.exe` ## Browser @@ -125,6 +129,9 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `curl -s "https://httpbin.org/delay/4"` - HTTP request and response Service (e.g. send response after 4 seconds) * `curl -s "https://urlecho.appspot.com/echo?body=Hello+World"` - HTTP response defined in the request parameters * `curl -s "https://urlreq.appspot.com/req?method=GET&url=https://l2.io/ip"` - HTTP proxy makes new requests based on input parameters +* `curl -s "https://api.hackertarget.com/nmap/?q=93.184.216.34"` - TCP port scan using NMAP +* `curl -s "https://api.hackertarget.com/pagelinks/?q=msn.com"` - Extract all links from a page +* `curl -s "https://api.hackertarget.com/whois/?q=google.com"` - Whois lookup ## Cryptography @@ -170,6 +177,7 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya ## Documentation * `curl cheat.sh` — UNIX/Linux commands cheat sheets using curl ([chubin/cheat.sh](https://github.com/chubin/cheat.sh)) +* `curl 'api.hackertarget.com/subnetcalc/?q=192.168.1.0/24'` Subnet calculator * `gopher://telcodata.us:70` - NPA/NXX Lookup * `gopher://gopher.floodgap.com/1/world` - all known gopher servers From 2f63d0e20818afa1661b95826a49d3fd86cca570 Mon Sep 17 00:00:00 2001 From: Kevin Pham <37129444+deoxykev@users.noreply.github.com> Date: Tue, 29 Sep 2020 19:50:40 -0700 Subject: [PATCH 2/2] Update README.md Co-authored-by: Sandro --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index f4f89dd..a74a480 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,6 @@ Structured data of the list (kept in sync) is in [structured.yaml](structured.ya * `curl ifconfig.co/country` or `curl ifconfig.co/city` or `curl ifconfig.co/country-iso` or `http ifconfig.co/json` * `curl ifconfig.es/geo` or `curl ifconfig.es/json` or `curl ifconfig.es/country` or `curl ifconfig.es/code` or `curl ifconfig.es/city` or `curl ifconfig.es/latitude` or `curl ifconfig.es/longitude` - ## Text Sharing * `echo "Hello world!" | curl -F 'f:1=<-' ix.io`