Path: blob/master/app/finders/plugins/query_parameter.rb
485 views
# frozen_string_literal: true12module WPScan3module Finders4module Plugins5# Plugins finder from Dynamic Finder 'QueryParameter'6class QueryParameter < Finders::DynamicFinder::WpItems::Finder7DEFAULT_CONFIDENCE = 1089def passive(_opts = {})10# Handled by UrlsInHomePage, so no need to check this twice11end1213# @param [ Hash ] opts The options from the #passive, #aggressive methods14# @param [ Typhoeus::Response ] response15# @param [ String ] slug16# @param [ String ] klass17# @param [ Hash ] config The related dynamic finder config hash18#19# @return [ Plugin ] The detected plugin in the response, related to the config20def process_response(opts, response, slug, klass, config)21# TODO: when a real case will be found22end23end24end25end26end272829