Class: Aspisec::Modules::JwtTool

Inherits:
Aspisec::Module show all
Defined in:
lib-ruby/aspisec/modules/jwt_tool.rb

Overview

jwt_tool module.
Inherits Aspisec::Module.
For more examples of methods, see Sqlmap.

Examples:

# Get the global config
conf = Aspisec::Config.new.conf
# Create a JwtTool module instance
jwt = Aspisec::Modules::JwtTool.new(conf)
# Locations available
jwt.locations_list # => ["logs"]

See Also:

Instance Attribute Summary collapse

Attributes inherited from Aspisec::Module

#base, #conf, #locations_list, #name

Instance Method Summary collapse

Methods inherited from Aspisec::Module

#check_config, #enabled?, #locations

Constructor Details

#initialize(conf, logger: nil) ⇒ JwtTool

Inherits from Aspisec::Module but has only the conf argument,
tool_name is hardcoded for each module.

Parameters:



26
27
28
29
30
# File 'lib-ruby/aspisec/modules/jwt_tool.rb', line 26

def initialize(conf, logger: nil)
  super(conf, 'jwt_tool', logger:)
  @logs = Location.new(@conf, 'logs')
  @locations_list = %w[logs]
end

Instance Attribute Details

#logsLocation (readonly)

Returns:



21
22
23
# File 'lib-ruby/aspisec/modules/jwt_tool.rb', line 21

def logs
  @logs
end