Module: Ronin::Exploits::Metadata::URLQueryParam
- Defined in:
- lib/ronin/exploits/metadata/url_query_param.rb
Overview
Adds a url_query_param metadata attribute to an exploit class.
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
-
.included(exploit) ⇒ Object
private
Adds ClassMethods to the exploit class.
Instance Method Summary collapse
-
#url_query_param ⇒ String?
The target URL query param of the exploit.
Class Method Details
.included(exploit) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Adds ClassMethods to the exploit class.
38 39 40 |
# File 'lib/ronin/exploits/metadata/url_query_param.rb', line 38 def self.included(exploit) exploit.extend ClassMethods end |
Instance Method Details
#url_query_param ⇒ String?
The target URL query param of the exploit.
78 79 80 |
# File 'lib/ronin/exploits/metadata/url_query_param.rb', line 78 def url_query_param self.class.url_query_param end |