[][src]Struct feroxbuster::scanner::SCANNED_URLS

pub struct SCANNED_URLS { /* fields omitted */ }

Set of urls that have been sent to scan_url, used for deduplication

Methods from Deref<Target = FeroxScans>

pub fn insert(&self, scan: Arc<Mutex<FeroxScan>>) -> bool[src]

Add a FeroxScan to the internal container

If the internal container did NOT contain the scan, true is returned; else false

pub fn contains(&self, url: &str) -> bool[src]

Simple check for whether or not a FeroxScan is contained within the inner container based on the given URL

pub fn get_scan_by_url(&self, url: &str) -> Option<Arc<Mutex<FeroxScan>>>[src]

Find and return a FeroxScan based on the given URL

pub fn display_scans(&self)[src]

Print all FeroxScans of type Directory

Example: 0: complete https://10.129.45.20 9: complete https://10.129.45.20/images 10: complete https://10.129.45.20/assets

pub fn print_known_responses(&self)[src]

prints all known responses that the scanner has already seen

pub async fn pause(&self, get_user_input: bool)[src]

Forced the calling thread into a busy loop

Every SLEEP_DURATION milliseconds, the function examines the result stored in PAUSE_SCAN

When the value stored in PAUSE_SCAN becomes false, the function returns, exiting the busy loop

pub fn add_directory_scan(
    &self,
    url: &str,
    stats: Arc<Stats>
) -> (bool, Arc<Mutex<FeroxScan>>)
[src]

Given a url, create a new FeroxScan and add it to FeroxScans as a Directory Scan

If FeroxScans did not already contain the scan, return true; otherwise return false

Also return a reference to the new FeroxScan

pub fn add_file_scan(
    &self,
    url: &str,
    stats: Arc<Stats>
) -> (bool, Arc<Mutex<FeroxScan>>)
[src]

Given a url, create a new FeroxScan and add it to FeroxScans as a File Scan

If FeroxScans did not already contain the scan, return true; otherwise return false

Also return a reference to the new FeroxScan

Trait Implementations

impl Deref for SCANNED_URLS[src]

type Target = FeroxScans

The resulting type after dereferencing.

impl LazyStatic for SCANNED_URLS[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]