Method: Arachni::State::Framework#available_status_messages
- Defined in:
- lib/arachni/state/framework.rb
#available_status_messages ⇒ Hash{Symbol=>String}
Returns All possible #status_messages by type.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/arachni/state/framework.rb', line 100 def { suspending: 'Will suspend as soon as the current page is audited.', waiting_for_browser_cluster_jobs: 'Waiting for %i browser cluster jobs to finish.', suspending_plugins: 'Suspending plugins.', saving_snapshot: 'Saving snapshot at: %s', snapshot_location: 'Snapshot location: %s', browser_cluster_startup: 'Initialising the browser cluster.', browser_cluster_shutdown: 'Shutting down the browser cluster.', clearing_queues: 'Clearing the audit queues.', waiting_for_plugins: 'Waiting for the plugins to finish.', aborting: 'Aborting the scan.' } end |