Class: Aspisec::Modules::Recaf
- Inherits:
-
Aspisec::Module
- Object
- Aspisec::Module
- Aspisec::Modules::Recaf
- Defined in:
- lib-ruby/aspisec/modules/recaf.rb
Overview
Recaf module.
Inherits Aspisec::Module.
For more examples of methods, see Sqlmap.
Instance Attribute Summary collapse
- #classpath ⇒ Location readonly
- #logs ⇒ Location readonly
Attributes inherited from Aspisec::Module
#base, #conf, #locations_list, #name
Instance Method Summary collapse
-
#initialize(conf, logger: nil) ⇒ Recaf
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) ⇒ Recaf
Inherits from Aspisec::Module but has only the conf
argument,
tool_name
is hardcoded for each module.
30 31 32 33 34 35 |
# File 'lib-ruby/aspisec/modules/recaf.rb', line 30 def initialize(conf, logger: nil) super(conf, 'recaf', logger:) @classpath = Location.new(@conf, 'classpath') @logs = Location.new(@conf, 'logs') @locations_list = %w[classpath logs] end |