Add example url
This commit is contained in:
parent
ceb913b78d
commit
4a1dd8849e
1 changed files with 5 additions and 0 deletions
|
@ -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');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue