Sha256: 0f9efa6adaa8d705f81d1ce58446715d0178d3af01b7ab83c4ac10e9eeb433a7
Contents?: true
Size: 705 Bytes
Versions: 5
Compression:
Stored size: 705 Bytes
Contents
=begin Copyright 2010-2022 Ecsypno <http://www.ecsypno.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end module Arachni module Platform::Fingerprinters # # Identifies Windows operating systems. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> # # @version 0.1 # class Windows < Platform::Fingerprinter IDs = %w(windows win32) def run IDs.each do |id| next if !server_or_powered_by_include? id return platforms << :windows end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems