Class: Arachni::Element::Path
- Includes:
- Capabilities::WithAuditor
- Defined in:
- lib/arachni/element/path.rb
Overview
Represents an auditable path element, currently a placeholder for a vulnerable path vector.
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes included from Capabilities::WithAuditor
Attributes inherited from Base
#initialization_options, #page
Instance Method Summary collapse
- #action ⇒ Object
-
#initialize(url) ⇒ Path
constructor
A new instance of Path.
Methods included from Capabilities::WithAuditor
#dup, #marshal_dump, #orphan?, #prepare_for_report, #remove_auditor
Methods inherited from Base
#==, #dup, from_rpc_data, #hash, #id, #marshal_dump, #marshal_load, #persistent_hash, #prepare_for_report, #reset, #to_h, #to_hash, #to_rpc_data, too_big?, #type, type, #url, #url=
Methods included from Utilities
#available_port, #bytes_to_kilobytes, #bytes_to_megabytes, #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, #full_and_absolute_url?, #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?, #regexp_array_match, #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 Capabilities::WithScope
Constructor Details
#initialize(url) ⇒ Path
Returns a new instance of Path.
20 21 22 23 |
# File 'lib/arachni/element/path.rb', line 20 def initialize( url ) super url: url @initialization_options = url end |
Instance Method Details
#action ⇒ Object
25 26 27 |
# File 'lib/arachni/element/path.rb', line 25 def action url end |