diff options
| author | jerome <jerome@xlinfo.fr> | 2024-09-17 15:32:53 +0200 |
|---|---|---|
| committer | jerome <jerome@xlinfo.fr> | 2024-09-17 15:32:53 +0200 |
| commit | 550497e907868ac0249a18eef2a0fb7f5bcd9ed8 (patch) | |
| tree | 5690fce051444c9897a2bcf610d174b20dfe6718 /webClient.py | |
| parent | cdb4e2f17863038e28ab063415f59cc4d94491d6 (diff) | |
| download | python-550497e907868ac0249a18eef2a0fb7f5bcd9ed8.tar.gz python-550497e907868ac0249a18eef2a0fb7f5bcd9ed8.zip | |
scapy
Diffstat (limited to 'webClient.py')
| -rw-r--r-- | webClient.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/webClient.py b/webClient.py new file mode 100644 index 0000000..4bd6ac2 --- /dev/null +++ b/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") + + + + |
