mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
41 lines
1.2 KiB
Ruby
41 lines
1.2 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 "Zoom"
|
|
authors [
|
|
'bcoles', # v0.1 - 2020-09-19
|
|
]
|
|
version "0.1"
|
|
description "Zoom is the leader in modern enterprise video communications, with an easy, reliable cloud platform for video and audio conferencing, chat, and webinars across mobile, desktop, and room systems."
|
|
website "https://zoom.us/"
|
|
|
|
dorks [
|
|
'inurl:zoom.us intitle:"Video Conferencing, Web Conferencing, Online Meetings, Screen Sharing - Zoom"'
|
|
]
|
|
|
|
matches [
|
|
]
|
|
|
|
passive do
|
|
m = []
|
|
|
|
return m unless @base_uri.to_s =~ %r{^https://[^\s^/]+?\.zoom\.us}
|
|
|
|
if @body =~ %r{<title>Video Conferencing, Web Conferencing, Online Meetings, Screen Sharing - Zoom</title>}
|
|
m << { :text=>'<title>Video Conferencing, Web Conferencing, Online Meetings, Screen Sharing - Zoom</title>' }
|
|
end
|
|
|
|
organisation = @body.to_s.scan(%r{<img src="[^"]*/account/branding.* alt="([^"]+)?"}).flatten.first
|
|
if organisation and organisation != "Zoom Logo"
|
|
m << { :string=>organisation }
|
|
end
|
|
|
|
m
|
|
end
|
|
|
|
end
|