mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
38 lines
860 B
Ruby
38 lines
860 B
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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Windows-Remote-Printing"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-04-19
|
|
]
|
|
version "0.1"
|
|
description "The Windows remote printing interface displays networked printers, print job owner usernames and internal IP addresses."
|
|
|
|
# 4 results for inurl:Printers/ipp_0001.asp intitle:"All Printers on"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'inurl:Printers/ipp_0001.asp intitle:"All Printers on"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# GHDB
|
|
{ :ghdb=>'inurl:"Printers/ipp_0001.asp" intitle:"All Printers on"' },
|
|
|
|
# Frame src # /printers/ipp_0004.asp
|
|
{ :regexp=>/<frame src="ipp_000[\d]\.asp\?eprinter=/ },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|