Class: Arachni::Component::Base Abstract
- Extended by:
- Utilities
- Defined in:
- lib/arachni/component/base.rb
Overview
Base check class to be extended by all components.
Defines basic structure and provides utilities.
Direct Known Subclasses
Constant Summary
Constants included from Arachni
BANNER, Arachni::Cookie, Form, Header, Link, LinkTemplate, Severity, VERSION, WEBSITE, WIKI
Class Method Summary collapse
- .author ⇒ Object
- .description ⇒ Object
- .fullname ⇒ Object
- .shortname ⇒ Object
- .shortname=(shortname) ⇒ Object
- .version ⇒ Object
Instance Method Summary collapse
Methods included from Utilities
Methods included from Utilities
#available_port, #caller_name, #caller_path, #cookie_decode, #cookie_encode, #cookies_from_document, #cookies_from_file, #cookies_from_response, #exception_jail, #exclude_path?, #follow_protocol?, #form_decode, #form_encode, #forms_from_document, #forms_from_response, #generate_token, #get_path, #hms_to_seconds, #html_decode, #html_encode, #include_path?, #links_from_document, #links_from_response, #normalize_url, #page_from_response, #page_from_url, #parse_set_cookie, #path_in_domain?, #path_too_deep?, #port_available?, #rand_port, #random_seed, #redundant_path?, #remove_constants, #request_parse_body, #seconds_to_hms, #skip_page?, #skip_path?, #skip_resource?, #skip_response?, #to_absolute, #uri_decode, #uri_encode, #uri_parse, #uri_parse_query, #uri_parser, #uri_rewrite
Methods included from Output
#depersonalize_output, #depersonalize_output?, #intercept_print_message
Methods included from UI::Output
#debug?, #debug_off, #debug_on, #disable_only_positives, #included, #mute, #muted?, #only_positives, #only_positives?, #print_bad, #print_debug, #print_debug_backtrace, #print_debug_level_1, #print_debug_level_2, #print_debug_level_3, #print_error, #print_error_backtrace, #print_exception, #print_info, #print_line, #print_ok, #print_status, #print_verbose, #reroute_to_file, #reroute_to_file?, reset_output_options, #unmute, #verbose?, #verbose_on
Methods included from Arachni
URI, jruby?, null_device, profile?, windows?
Class Method Details
.author ⇒ Object
43 44 45 |
# File 'lib/arachni/component/base.rb', line 43 def info[:author] end |
.description ⇒ Object
39 40 41 |
# File 'lib/arachni/component/base.rb', line 39 def description info[:description] end |
.fullname ⇒ Object
35 36 37 |
# File 'lib/arachni/component/base.rb', line 35 def fullname info[:name] end |
.shortname ⇒ Object
55 56 57 |
# File 'lib/arachni/component/base.rb', line 55 def shortname @shortname end |
.shortname=(shortname) ⇒ Object
51 52 53 |
# File 'lib/arachni/component/base.rb', line 51 def shortname=( shortname ) @shortname = shortname end |
.version ⇒ Object
47 48 49 |
# File 'lib/arachni/component/base.rb', line 47 def version info[:version] end |
Instance Method Details
#shortname ⇒ Object
30 31 32 |
# File 'lib/arachni/component/base.rb', line 30 def shortname self.class.shortname end |