/plugins/BMC-Remedy.rb

https://github.com/eliasdorneles/WhatWeb · Ruby · 75 lines · 45 code · 12 blank · 18 comment · 1 complexity · 931de826dc21546b01ee3550e8b2e821 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 "BMC-Remedy" do
  8. author "Brendan Coles <bcoles@gmail.com>" # 2011-07-11
  9. version "0.1"
  10. description "BMC Remedy Action Request System (also known as Remedy, AR System and ARS) is a client-server software application development environment from BMC Software (originally developed by Remedy Corporation). BMC Remedy Mid-Tier is a server component in the Action Request System for web access. - Homepage: http://www.bmc.com/products/offering/itsm-premise-ondemand.html"
  11. # More Info #
  12. # http://en.wikipedia.org/wiki/BMC_Remedy_Action_Request_System
  13. # http://en.wikipedia.org/wiki/AR_Mid-Tier
  14. # Google results as at 2011-07-11 #
  15. # 103 for intitle:"Remedy Mid Tier" "User Name" +Password
  16. # Dorks #
  17. dorks [
  18. 'intitle:"Remedy Mid Tier" "User Name" "Password"'
  19. ]
  20. # Examples #
  21. examples %w|
  22. soporte.quitze.com.mx/arsys/shared/login.jsp
  23. str.bsnl.co.in:8014/arsys/shared/login.jsp
  24. hcl-remedy.hcl.in
  25. remedy.perceptis.com
  26. hibajegy.invitel.co.hu
  27. servicedesk.servicegruppen.dk
  28. support.koan-it.com
  29. v-rem-lnx1.nwu.ac.za:8080/MidTier/
  30. supportportal.tideworks.com
  31. remedysupport.globecommsystems.com/arsys/
  32. https://help.afsv.net/
  33. https://servicios.itsm.ejie.net/arsys/shared/login.jsp
  34. https://csdpmt1.k12.hi.us/
  35. https://remedy.its.ws
  36. ccconline.nwpg.gov.za/arsys/shared/login.jsp
  37. https://its.support.nc.gov/
  38. https://itsm.ca.gov/arsys/home
  39. gemini.srv.cs.cmu.edu
  40. support.utoledo.edu
  41. itsm.uws.edu.au
  42. support.utoledo.edu
  43. https://helpdesk.uh.edu/arsys/
  44. https://remedy.ccit.arizona.edu:8081/arsys/
  45. https://helpdesk.ksu.edu/arsys/shared/login.jsp
  46. https://hd.kc.us.army.mil/
  47. https://remedy1.afbudsys.disa.mil/arsys/home
  48. https://mt1.afrc.af.mil/arsys/
  49. |
  50. # Matches #
  51. matches [
  52. # Login Page # HTML Comment
  53. { :text=>'<!-- common to all login jsps - not localized information -->' },
  54. # Login Page # HTML Comment
  55. { :text=>'<!-- Added to prevent iFrame exploit. Need to comment out for portlet to work -->' },
  56. # Login Page # Clear form button
  57. { :text=>'<input type="button" name="clear" value="Clear" class="Login" onClick="clearLogin();"><!--;-->' },
  58. { :text=>'<input type="button" name="clear" value="Clear" onClick="clearLogin();"><!--;-->' },
  59. # Version Detection # Title
  60. { :version=>/<title>(BMC&nbsp;)?Remedy&nbsp;Mid&nbsp;Tier&nbsp;([^\s]+) - (Error page|Login)<\/title><!--;-->/, :offset=>1 },
  61. { :version=>/<title>(BMC )?Remedy Mid Tier ([^\s]+) - (Error page|Login)<\/title>/, :offset=>1 },
  62. ]
  63. end