Login Register
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.


Very Basic Brute forceing script filter_list
Author
Message
Very Basic Brute forceing script #1
I made a very basic brute force script in python, using itertools, Later on I will be Releasing my Basic RainbowTableAPI which can be used with this tool.
Please note that all the tools I post are designed for educational purposes, their are plenty of efficient tools to use for real pen-testing.
Code:
import itertools def bruteforce(charset, min_length,maxlength):    return (''.join(candidate)        for candidate in itertools.chain.from_iterable(itertools.product(charset, repeat=i)        for i in range(min_length, maxlength + 1))) #Test of script lst = list(bruteforce("0123456789",2,3)) #Outputs permutations for i in range(len(lst)):    print(lst[i])

Reply

RE: Very Basic Brute forceing script #2
Thanks for this, mate. You did well, I'll use it.
I have a few, though. But thanks again!
[Image: hJkWWcF.png]

Reply







Users browsing this thread: 1 Guest(s)