Earn visit For Links


SUBMITTED BY: Guest

DATE: June 20, 2014, 9:42 p.m.

FORMAT: Text only

SIZE: 579 Bytes

HITS: 235492

  1. Requirement:
  2. -Software Tor.
  3. -File: urls.txt (file with urls links)
  4. -Script.sh:
  5. CODE Script
  6. #! /bin/bash
  7. while true; do
  8. while read line
  9. do
  10. # echo -e "$line\n"
  11. echo "$line"
  12. curl -v --socks5-hostname 127.0.0.1:9050 $line --connect-timeout
  13. done < /root/scripts/urls.txt
  14. service tor restart
  15. let count=count+1
  16. echo `date` >>/var/log/tor/count.log
  17. echo "Se ha conectado a todos los enlaces :" $count >>/var/log/tor/count.log
  18. sleep 1
  19. done

comments powered by Disqus