1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
##
# 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 "Synology-DiskStation"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-08-07
]
version "0.1"
description "Synology DiskStation provides a full-featured Network Attached Storage (NAS) solution which offers RAID storage, backup, and network surveillance (NVR)."
website "http://www.synology.com/"
# ShodanHQ results as at 2011-08-07 #
# 2,425 for stauts
# 545 for webman
# 534 for webman/index.cgi
# Google results as at 2011-08-07 #
# 60 for intitle:"Synology DiskStation" inurl:"webman/index.cgi"
# Dorks #
dorks [
'intitle:"Synology DiskStation" inurl:"webman/index.cgi"'
]
# Matches #
matches [
{ :name=>'Device Name in Page Title',
:string=>%r{<title>Synology DiskStation - ([^\s]+)</title>} },
{ :name=>'Login Page HTML Comment',
:text=>"<!-- Don't contain any text node to avoid IE insertBefore bug -->" },
{ :name=>'SYNO.SDS.Session JavaScript',
:text=>'<script type="text/javascript">SYNO.SDS.Session = {' },
{ :name=>'Login Form HTML',
:text=>'<div id="sds-login-dialog-form" style="position: absolute; top: -10000px; left: -10000px;"><form id="login-form" class="x-plain-body" method="POST" action="login.cgi" target="login_iframe"' },
{ :name=>'synodefs.cgi Version Detection',
:url=>"/webman/index.cgi",
:version=>%r{<script type="text/javascript" src="synodefs\.cgi\?v=([\d]+)"></script>} },
{ :name=>'Stauts Header',
:certainty=>75,
:search=>"headers[stauts]",
:url=>'/',
:regexp=>/^30[12] Moved/ },
]
end
|