summaryrefslogtreecommitdiff
path: root/bruteforce/webClient.py
diff options
context:
space:
mode:
Diffstat (limited to 'bruteforce/webClient.py')
-rw-r--r--bruteforce/webClient.py16
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")
+
+
+
+