PageRenderTime 61ms CodeModel.GetById 3ms RepoModel.GetById 0ms app.codeStats 0ms

/plugins/GpsGate-Server.rb

https://github.com/eliasdorneles/WhatWeb
Ruby | 61 lines | 36 code | 10 blank | 15 comment | 1 complexity | 40bad31ff6b79ccf6b22fb68260192a2 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 "GpsGate-Server" do
  8. author "Brendan Coles <bcoles@gmail.com>" # 2011-06-20
  9. version "0.1"
  10. description "GpsGate Server is a platform for web based GPS tracking of vehicles, valuable assets and persons. The modular GpsGate Server platform also allows you to configure, extend and customize applications to your needs. - Homepage: http://gpsgate.com/products/gpsgate_server"
  11. # Google results as at 2011-06-20 #
  12. # 37 for "GpsGate Server - Login" intitle:"GpsGate Server - Login"
  13. # ShodanHQ results as at 2011-06-20 #
  14. # 2 for gpsgateserver
  15. # Dorks #
  16. dorks [
  17. '"GpsGate Server - Login" intitle:"GpsGate Server - Login"'
  18. ]
  19. # Examples #
  20. examples %w|
  21. marathon.gpsgate.com
  22. trackershop.gpsgate.com
  23. gps.skidelivery.net/gpsgateserver/
  24. www.itrak247.com.au/gpsApp/index.aspx
  25. www.rastrealo.com/Login.aspx
  26. www.northloc24.com
  27. gpstrack.glaszer.com
  28. srv3.kontrolloauto.com/Login.aspx
  29. gpsguardian.pl:8001/monitoring/login.aspx
  30. www.rastrealo.es/Login.aspx
  31. www.chipsbay.com
  32. bluetrack.gpsgate.com
  33. primagroupinc.com
  34. www.andromedagps.com
  35. 64.139.70.65
  36. 213.200.20.10/gpsgateserver/
  37. gpsgate.atv.net.au
  38. tracking.ccems.org
  39. tracking.planetpin.com/trackingserver/
  40. lbs.office.ccm-systems.com/gprs/
  41. car-tracker.com.ua/gpsgateserver/
  42. car-tracker.com.ua/gpsgateserver/VehicleTracker/
  43. |
  44. # Matches #
  45. matches [
  46. # Password input # HTML is static between languages unlike the username field
  47. { :text=>'<input name="LoginControl$TextBoxPassword" type="password" id="LoginControl_TextBoxPassword" tabindex="2" class="form" onfocus="document.getElementById(\'LoginControl_TextBoxPassword\').select()" value="password"' },
  48. # Title
  49. { :regexp=>/<head><title>\r?\n\tGpsGate Server - Login\r?\n<\/title><\/head>/ },
  50. ]
  51. end