/plugins/Fluid-Dynamics-Search-Engine.rb

https://github.com/rmillet42/WhatWeb · Ruby · 70 lines · 49 code · 9 blank · 12 comment · 1 complexity · c958b25dc4f9cb11118806a7bc2df58b MD5 · raw file

  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 "Fluid-Dynamics-Search-Engine" do
  8. author "Brendan Coles <bcoles@gmail.com>" # 2011-03-17
  9. version "0.1"
  10. description "FDSE is an easy-to-install search engine for local and remote sites. It returns fast, accurate results from a template-driven architecture. Freeware and shareware versions are available with Perl source. - Homepage: http://www.xav.com/scripts/search/"
  11. # Google results as at 2011-03-17 #
  12. # 180 for "Powered by the Fluid Dynamics Search Engine"
  13. # Dorks #
  14. dorks [
  15. '"Powered by the Fluid Dynamics Search Engine"'
  16. ]
  17. # Examples #
  18. examples %w|
  19. www.cmrb.vic.gov.au/cgi-bin/search/search.pl
  20. mars1.jpl.nasa.gov/cgi-bin/redplanet/search.pl
  21. www.stonepages.com/search/search.pl
  22. www.ajb2.com/search/search.cgi
  23. demo.nickname.net/latest/sr/search/search.pl
  24. www.insidepolitics.org/search/search.pl
  25. www.stenograph.com/cgi-bin/search.pl
  26. www.xav.com/search.pl
  27. dpnow.com/search/search.pl
  28. www.micromountain.com/search/search.pl
  29. www.asiarecipe.com/search/search.pl
  30. www.redsearising.net/cgi-bin/search/search.cgi
  31. www.tentmaker.org/search/search.pl
  32. www.alexandria.ucsb.edu/search/search.cgi
  33. www.fdhost.com/search.pl
  34. www.counterpoint-music.com/search/search.pl
  35. jpgsonline.com/search/search.pl
  36. www.africanheart.com/cgi-bin/search/search.cgi
  37. www.collectorsplants.com/cgi-bin/search/search.pl
  38. www.plasmas.org/cgi-bin/search/search.cgi
  39. www.fiftiesweb.com/cgi-bin/search/search.pl
  40. www.eduscan.info/science/search8/search.pl
  41. www.pastamachines.com/search/search.cgi
  42. www.stonepages.com/search/search.pl
  43. www.sports-media.org/search/search.pl
  44. citruslocal.com/search/search.pl
  45. www.newcovpub.com/cgi-bin/search/search.pl
  46. cimi.webfarm.com/cgi-bin/search/search.pl
  47. www.kentcounty.com/cgi-bin/search/search.cgi
  48. www.libwil.com.au/cgi-bin/search/search.pl
  49. www.traditionalplants.com/cgi-bin/search/search.pl
  50. www.internationaleducationmedia.com/search/search.pl
  51. www.amazing1.com/search/search.pl
  52. www.visitor-flow.com/perl/search/search.pl
  53. www.polymerclayexpress.com/search/search.pl
  54. www.migenweb.net/search/search.pl
  55. |
  56. # Matches #
  57. matches [
  58. # Version Detection # Powered by text
  59. { :version=>/Powered by the <a href="http:\/\/www.xav.com\/scripts\/search\/"[^>]*>Fluid Dynamics Search Engine<\/a> v([\d\.]+) &copy; 20[\d]{2}/ },
  60. ]
  61. end