experimenting with different sorting options for efficiency

This commit is contained in:
Austin Burk 2023-01-11 12:24:45 -05:00
parent 23f2d0710f
commit 6140de7594

@ -122,4 +122,10 @@ hashcat -m 100 -w3 --session commonsuffix -o cracked.txt -a3 data/todo.txt commo
hashcat --session commonsuffix --restore hashcat --session commonsuffix --restore
``` ```
various things
```
../mc-server-list-scraper/scripts/list_all.sh | tr [:upper:] [:lower:] | sort -u | expandmc | tr -d "'" | pv -l | xargs -P5 node try_url.js
../mc-server-list-scraper/scripts/list_all.sh | tr [:upper:] [:lower:] | sort -u | awk -F. '{print $(NF-1)"."$NF}' | expandmc | tr -d "'" | pv -l | xargs -P5 node try_url.js
cat ../wordlists/words_alpha.txt |awk '{print $1"mc",$1"pvp",$1"craft",$1"prison"}'| tr ' ' '\n'| awk '{print $1".com",$1".net",$1".org",$1".co"}'|tr ' ' '\n'| awk '{print "*."$1}'| pv -l | xargs -P6 node try_url.js
```