A Pen by Henrique Vianna on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| echo "$1" > q.txt && python3 asn2cidr.py -i q.txt && xargs -I {} cidr2ip {} < output.txt | tee -a ipz.txt && nrich ipz.txt | tee -a ehrichard.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #! /bin/bash | |
| git clone $(httpx -fr --silent --no-color -l "$1" | sed 's#\]\|\[##g') |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2billion-trees-2milliards-arbres.fjgc-gccf.gc.ca | |
| 2billion-trees-2milliards-arbres.nrcan-rncan.gc.ca | |
| 2Dpgc.statcan.gc.ca | |
| 2billion-trees-2milliards-arbres.fjgc-gccf.gc.ca | |
| 2billion-trees-2milliards-arbres.nrcan-rncan.gc.ca | |
| 6dec.gc.ca | |
| a2sc-csa2.apps.cic.gc.ca | |
| a2sc-csa2-dev.apps.cic.gc.ca | |
| aboriginal.bc.rcmp-grc.gc.ca | |
| acct.forums.ps-sp.gc.ca |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ocic.on.ca | |
| *.elections.on.ca | |
| *.pvnccdsb.on.ca | |
| *.reamined.on.ca | |
| *.conestogac.on.ca | |
| *.oicr.on.ca | |
| *.sheridanc.on.ca | |
| *.bwdsb.on.ca | |
| *.publichealthgreybruce.on.ca | |
| mailhost.horta-craft.on.ca |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Requires wget https://bgp.tools/table.txt && wget https://bgp.tools/asns.csv | |
| echo "Looking for $1 in asns.csv" && grep -Ei "$1" asns.csv | sort --field-separator=S --key=2n | tee matches.txt && echo "search finished" && cat matches.txt | xargs -I {} echo "{}" | grep -Ei -o 'AS[0-9]+,' | sed 's#\(AS\|,\)##g' | xargs -I {} grep -Ei ' {}' table.txt | sort --key=2n | tee ntblks.txt | grep -Ei '\/2[0-4]' | grepaddr -cidr4 | mapcidr --silent > ips.txt && nrich -o json ips.txt | tee nrichedasn.json |
.
JB^ 7B^
GJ?! GYJ~
.!^~~~~~~~~~~~~~~~~~~^?P :J!^^^^^^^^^^^:. :~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~. ..:^^^^^^^7G ^J!^^^^^^^^^^^^^^^^^^^^^^^:
~5
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [ | |
| { | |
| "healthcare_queries": { | |
| "zoll": "http.favicon.hash:-236942626", | |
| "dicom": "dicom", | |
| "perioperative": "HoF Perioperative", | |
| "wall_of_analytics": "title:'Wall of Analytics'", | |
| "viztek_exa": "X-Super-Powered-By: VIZTEK EXA", | |
| "medweb": "html:'DBA Medweb. All rights reserved.'", | |
| "intuitim": "http.favicon.hash:159662640", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| find ~/Music/ | grep 'wav\|mp3\|flac' | shuf | sed -e "s/^/file '/" | \ | |
| sed -e "s/$/'/" > /tmp/playlist.txt && \ | |
| ffmpeg -f concat -safe 0 -i /tmp/playlist.txt -f mp3 -ar 44100 -b:a 256k - | \ | |
| cstream -t 32k | \ | |
| curl -s -k -H "Transfer-Encoding: chunked" -X POST -T - \ | |
| "https://streammyaudio,com/YOURSTATIONNAME.mp3?stream=true&advertise=true" |