MCPcopy Create free account
hub / github.com/VenTheZone/Project-WebHunter / SqlInjectionScanner

Class SqlInjectionScanner

src/sql_injection_scanner.rs:22–30  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

20
21pub struct SqlInjectionScanner<'a> {
22 target_urls: Vec<Url>,
23 forms: Vec<Form>,
24 error_based_payloads: Vec<String>,
25 boolean_based_payloads: Vec<(String, String)>,
26 time_based_payloads: Vec<String>,
27 reporter: &'a Arc<Reporter>,
28 rate_limiter: Arc<RateLimiter>,
29}
30
31impl<'a> SqlInjectionScanner<'a> {
32 pub fn new(
33 target_urls: Vec<Url>,

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected