rg443

torproject exit-addresses [SpectX]

Sep 8th, 2020 (edited)
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. $tor_list_pattern = <<<EOP
  2. ('ExitNode ' LD:exitNode EOL
  3. 'Published ' TIMESTAMP('yyyy-MM-dd HH:mm:ss'):published EOL
  4. 'LastStatus ' TIMESTAMP('yyyy-MM-dd HH:mm:ss'):lastStatus EOL
  5. )?
  6. 'ExitAddress ' IPV4:exitAddress ' ' TIMESTAMP('yyyy-MM-dd HH:mm:ss'):addrTime EOL
  7. EOP;
  8.  
  9. LIST('https://check.torproject.org/exit-addresses') | parse(pattern:$tor_list_pattern)
  10. | select (exitAddress,CC(exitAddress),IPLOC(exitAddress)[city],asname(exitAddress),ASN(exitAddress),addrTime,published)
  11. | sort(exitAddress)
  12. // DNS_LOOKUP(exitAddress)
Add Comment
Please, Sign In to add comment