Add example url

This commit is contained in:
Tobe O 2019-08-16 11:13:33 -04:00
parent ceb913b78d
commit 4a1dd8849e

View file

@ -21,4 +21,9 @@ main() async {
// Start the server. // Start the server.
await http.startServer('127.0.0.1', 3000); await http.startServer('127.0.0.1', 3000);
print('SQLi filtering example listening at ${http.uri}'); print('SQLi filtering example listening at ${http.uri}');
var exampleUri = http.uri.replace(queryParameters: {
'id': "-1' and 1=1 union/* foo */select load_file('/etc/passwd')--"
});
print('Example URI: $exampleUri');
} }