mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
62 lines
1.4 KiB
Ruby
62 lines
1.4 KiB
Ruby
##
|
|
# This file is part of WhatWeb and may be subject to
|
|
# redistribution and commercial restrictions. Please see the WhatWeb
|
|
# web site for more information on licensing and terms of use.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "DLI-LPC"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-07-15
|
|
]
|
|
version "0.1"
|
|
description "Digital Loggers Inc remote switch with built-in web server for remote reboot and power control"
|
|
website "http://www.digital-loggers.com/lpc.html"
|
|
|
|
# Defaults Settings #
|
|
# IP: 192.168.0.100
|
|
# Username: admin
|
|
# Password: 1234
|
|
|
|
# Manuals #
|
|
# http://www.digital-loggers.com/lpcman.pdf
|
|
# http://www.digital-loggers.com/lpc2man.pdf
|
|
# http://www.digital-loggers.com/lpc3man.pdf
|
|
|
|
# ShodanHQ results as at 2011-07-15 #
|
|
# 1,583 for DLILPC
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Title
|
|
{ :text=>'<title>Power Controller </title>' },
|
|
|
|
# Form
|
|
{ :text=>'<FORM NAME="login" ID="login" ACTION="/login.tgi" METHOD=post>' },
|
|
{ :text=>'<FORM NAME="secin" ID="secin" ACTION="/login.tgi" METHOD=post>' },
|
|
|
|
# h1 warning
|
|
{ :text=>'<tr><td align=center><h1>Warning: Insecure Authentication</h1></td></tr>' },
|
|
|
|
# Submitbtn
|
|
{ :text=>'<TD><INPUT onClick="calcResponse(); return false;" TYPE="Submit" NAME="Submitbtn" VALUE="OK">' },
|
|
|
|
]
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# DLILPC Cookie
|
|
m << { :name=>"DLILPC Cookie" } if @headers["set-cookie"] =~ /DLILPC=""; Version=[\d]+; Max-Age=[\d]+; Path=/
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
|
|
end
|
|
|