=begin Copyright 2010-2022 Ecsypno 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 # Extracts paths from `data-url` attributes. # # @author Tasos "Zapotek" Laskos class Arachni::Parser::Extractors::DataURL < Arachni::Parser::Extractors::Base def run return [] if !html || !check_for?( 'data-url' ) html.scan( /data-url\s*=\s*['"]?(.*?)?['"]?[\s>]/ ) end end