| 10 | #[derive(Debug, Clone)] |
| 11 | pub struct SqlInjectionVulnerability { |
| 12 | pub url: Url, |
| 13 | pub parameter: String, |
| 14 | pub payload: String, |
| 15 | pub vuln_type: String, |
| 16 | } |
| 17 | |
| 18 | use std::fs; |
| 19 | use std::io::{self, BufRead}; |
| 20 |
nothing calls this directly
no outgoing calls
no test coverage detected