Module: Ronin::Exploits::Metadata::CookieParam::ClassMethods
- Defined in:
- lib/ronin/exploits/metadata/cookie_param.rb
Overview
Class-methods.
Instance Method Summary collapse
-
#cookie_param(new_cookie_param = nil) ⇒ String?
Get or sets the target Cookie param of the exploit.
Instance Method Details
#cookie_param(new_cookie_param = nil) ⇒ String?
Get or sets the target Cookie param of the exploit.
57 58 59 60 61 62 63 64 65 |
# File 'lib/ronin/exploits/metadata/cookie_param.rb', line 57 def (=nil) if @cookie_param = else @cookie_param ||= if superclass.kind_of?(ClassMethods) superclass. end end end |