pub struct ScannerBuilder { /* private fields */ }Expand description
Builder for configuring a Scanner with options
Implementations§
Source§impl ScannerBuilder
impl ScannerBuilder
Sourcepub fn allow_private(self, allow: bool) -> Self
pub fn allow_private(self, allow: bool) -> Self
Allow scanning private/internal IP addresses (localhost, 192.168.x.x, etc.)
By default, SSRF protection blocks requests to internal networks. Enable this to scan local WordPress installations.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ScannerBuilder
impl RefUnwindSafe for ScannerBuilder
impl Send for ScannerBuilder
impl Sync for ScannerBuilder
impl Unpin for ScannerBuilder
impl UnwindSafe for ScannerBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more