Run the SQL brute force attack on the given IP and port.
(self, ip, port)
| 32 | logger.info("SQLConnector initialized.") |
| 33 | |
| 34 | def bruteforce_sql(self, ip, port): |
| 35 | """ |
| 36 | Run the SQL brute force attack on the given IP and port. |
| 37 | """ |
| 38 | return self.sql_connector.run_bruteforce(ip, port) |
| 39 | |
| 40 | def execute(self, ip, port, row, status_key): |
| 41 | """ |