| 15 | } |
| 16 | |
| 17 | pub struct AccessControlScanner<'a> { |
| 18 | target_url: Url, |
| 19 | discovered_urls: Vec<Url>, |
| 20 | sensitive_paths: Vec<String>, |
| 21 | reporter: &'a Arc<Reporter>, |
| 22 | rate_limiter: Arc<RateLimiter>, |
| 23 | client: Client, |
| 24 | } |
| 25 | |
| 26 | impl<'a> AccessControlScanner<'a> { |
| 27 | pub fn new( |
nothing calls this directly
no outgoing calls
no test coverage detected