Advertisement
sxiii

ICO Find Script

Sep 10th, 2018
209
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 1.41 KB | None | 0 0
  1. # # ICO Find Script
  2. # Script to help you find interesting ICO by name or other info
  3. # It searches across 10 ICO tracking websites and shows if text is found
  4. # #
  5. # # AUTHOR
  6. # Written by Security XIII https://golos.io/@sxiii
  7. # #
  8. # # REQUIREMENTS
  9. # WARNING! Requires curl.
  10. # You can install it in ubuntu: `sudo apt install curl`
  11. # #
  12. # # HOW TO CLEAN UP HTML
  13. # You might also install html2text to view websites in console, just run
  14. # `sudo apt install html2text` and uncomment `| html2text` after `grep $1`
  15. # Uncomment means removing # from the end of `cat test.file...` row.
  16. # Note: it will help to read some of the websites but will break others.
  17. # #
  18. # # USAGE
  19. # Just run the script with request like: `./findico.sh sandcoin`
  20. # Good luck.
  21.  
  22. # NOTE: cyber.fund/radar, icostats.com and icotracker.net is not working
  23. # due to dynamic nature of these websites (open them in your browser plz)
  24.  
  25. websites=(smithandcrown.com/icos/ investitin.com/ico-calendar icoalert.com ico-list.com ratei.co altcoinnews.co.au/ico.php ico4you.com icoscoring.com icobazaar.com tokenmarket.net/ico-calendar icocountdown.com bifabu.com icorating.com)
  26.  
  27. for i in "${websites[@]}"; do
  28. (( x++ ))
  29. echo -e "\e[1m \e[93m ! ( $x / ${#websites[@]} ) Here is what can be found on $i:"
  30. echo -e "\e[21m \e[39m"
  31. curl -A "Mozilla/5.0" -s -L $i >> test.file
  32. cat test.file | grep $1 # | html2text
  33. rm test.file
  34. done
  35.  
  36. echo "Thanks. Script completed!"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement