diff options
| author | jerome <jerome@xlinfo.fr> | 2025-10-12 17:41:43 +0200 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2025-10-12 17:41:43 +0200 |
| commit | ec8893a097a6c0fffebd7db9e4a5568a3bf4df47 (patch) | |
| tree | ffebe60c3aa98df05d14aec8cea937430272c1ec /bruteforce/webClient.py | |
| parent | ba41fa46e69dbb264dfbed1b9fca5daab44a07c7 (diff) | |
| download | python-ec8893a097a6c0fffebd7db9e4a5568a3bf4df47.tar.gz python-ec8893a097a6c0fffebd7db9e4a5568a3bf4df47.zip | |
organisation
Diffstat (limited to 'bruteforce/webClient.py')
| -rw-r--r-- | bruteforce/webClient.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/bruteforce/webClient.py b/bruteforce/webClient.py new file mode 100644 index 0000000..4bd6ac2 --- /dev/null +++ b/bruteforce/webClient.py @@ -0,0 +1,16 @@ +#!/usr/bin/env python + +import requests + +def webClient(url,username,os): + response = requests.get(url,params={ + "username": username, + "os": os + }) + print(response.text) + +webClient("http://10.20.236.161:4444/page.php","jerome","Linux") + + + + |
