| 20 | |
| 21 | pub 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 | |
| 31 | impl<'a> SqlInjectionScanner<'a> { |
| 32 | pub fn new( |
| 33 | target_urls: Vec<Url>, |
nothing calls this directly
no outgoing calls
no test coverage detected