Class: Aspisec::Modules::Sqlmap
- Inherits:
-
Aspisec::Module
- Object
- Aspisec::Module
- Aspisec::Modules::Sqlmap
- Defined in:
- lib-ruby/aspisec/modules/sqlmap.rb
Overview
Sqlmap module.
Inherits Aspisec::Module.
Instance Attribute Summary collapse
- #history ⇒ Location readonly
- #logs ⇒ Location readonly
Attributes inherited from Aspisec::Module
#base, #conf, #locations_list, #name
Instance Method Summary collapse
-
#initialize(conf, logger: nil) ⇒ Sqlmap
constructor
Inherits from Aspisec::Module but has only the
conf
argument,tool_name
is hardcoded for each module.
Methods inherited from Aspisec::Module
#check_config, #enabled?, #locations
Constructor Details
#initialize(conf, logger: nil) ⇒ Sqlmap
Inherits from Aspisec::Module but has only the conf
argument,
tool_name
is hardcoded for each module.
50 51 52 53 54 55 |
# File 'lib-ruby/aspisec/modules/sqlmap.rb', line 50 def initialize(conf, logger: nil) super(conf, 'sqlmap', logger:) @history = Location.new(@conf, 'history') @logs = Location.new(@conf, 'logs') @locations_list = %w[history logs] end |