Advertisement
sxiii

ICO Search Script using 10 most popular websites

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