PageRenderTime 26ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/plugins/Cachelogic-Expired-Domains-Script.rb

https://github.com/eliasdorneles/WhatWeb
Ruby | 76 lines | 46 code | 13 blank | 17 comment | 1 complexity | 526989766a3828c8cf7511672b8e74fc MD5 | raw file
Possible License(s): GPL-2.0
  1. ##
  2. # This file is part of WhatWeb and may be subject to
  3. # redistribution and commercial restrictions. Please see the WhatWeb
  4. # web site for more information on licensing and terms of use.
  5. # http://www.morningstarsecurity.com/research/whatweb
  6. ##
  7. Plugin.define "Cachelogic-Expired-Domains-Script" do
  8. author "Brendan Coles <bcoles@gmail.com>" # 2011-03-20
  9. version "0.1"
  10. description "Expired Domains Script runs daily and updates the database with the latest expiring domains. Requires: Unix Host, PHP5, MYSQL5, CURL Enabled, Cron, Support for the zip extension in PHP. - Homepage: http://cachelogic.net/"
  11. # Google results as at 2011-03-20 #
  12. # 40 for "Developed by Cachelogic.net" "Domain contains(keyword):" "All TLDs" -inurl:"cachelogic.net"
  13. # 36 for allinurl:page domain ext filter hyphen numbers ncharacter
  14. # Dorks #
  15. dorks [
  16. '"Developed by Cachelogic.net" "Domain contains(keyword):" "All TLDs" -inurl:"cachelogic.net"',
  17. 'allinurl:page domain ext filter hyphen numbers ncharacter'
  18. ]
  19. # Examples #
  20. examples %w|
  21. cachelogic.net/demo/index.php
  22. expireddomaindigger.com
  23. www.buyexpireddomains.info
  24. tldexpired.com
  25. eatld.com/dropped/
  26. somacore.com/expir/
  27. www.newexpireddomains.com/index.php
  28. irish-sweaters.net
  29. www.expireddomainvault.com
  30. ranking-domain.com
  31. www.dropbydrop.info
  32. mrdomains.com/expire/index.php
  33. domains.sdweb.dk/index.php
  34. www.comfx.net
  35. pagerankcrunch.com/expireddomains/index.php
  36. buyexpireddomains.org
  37. webclassonline.com/domains/index.php
  38. findhotdomainnames.com/index.php
  39. hosterbox.com/expireddomains/index.php
  40. domainthis.com/index.php
  41. www.sitedetective.net/index.php
  42. domainrail.com/index.php
  43. sitedetective.justcrowd.com/index.php
  44. expireddomains.powerhoster.com/index.php
  45. www.domainrafter.com/index.php
  46. zd.se/index.php
  47. www.webclassonline.com/domains/index.php
  48. deletedexpired.com/index.php
  49. |
  50. # Matches #
  51. matches [
  52. # searchdays select options
  53. { :text=>'<option value="30">Last 30 days</option><option value="21">Last 21 days</option><option value="14">Last 14 days</option><option value="7">Last 7 days</option><option value="6">Last 6 days</option><option value="5">Last 5 days</option><option value="4">Last 4 days</option><option value="3">Last 3 days</option><option value="2">Last 2 days</option><option value="1">Last 1 days</option>' },
  54. # ncharacters select options
  55. { :text=>'<option value="15">15</option><option value="12">12</option><option value="10">10</option><option value="8">8</option><option value="7">7</option><option value="6">6</option><option value="5">5</option><option value="4">4</option><option value="3">3</option><option value="2">2</option>' },
  56. # stats.php
  57. { :text=>'<br><br><br>Website is powered by <a href="http://cachelogic.net">Cachelogic.net</a>' },
  58. # HTML Comment # Free Edition
  59. { :string=>"Free", :text=>"<!-- Please do not remove. It is illegal to remove this footer in Cachelogic Expired Domains Free Edition-->" },
  60. # Cachelogic.net Link
  61. { :text=>'href="http://cachelogic.net">Cachelogic.net</a></td></tr>' },
  62. ]
  63. end