Skip to content

Instantly share code, notes, and snippets.

@DCSantu2000
Created November 15, 2016 08:53
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DCSantu2000/a18af862e4ed9a3c56f238aacdd7ba02 to your computer and use it in GitHub Desktop.
Save DCSantu2000/a18af862e4ed9a3c56f238aacdd7ba02 to your computer and use it in GitHub Desktop.
Python Brute Force Using Itertools Library.It allows you to make password library.This code helps you to make a password from (0 to zzzzzzzzzzzzzzzzzzzz).
###################Details#########
#A simple python brute force algarithm
#using itertools library.
#####################################
#_author_="Antu Roy"
#_year_=2015
########imports##########
import itertools
##########################
#########algarithm#########
x=0
for x in range(0,21):
char=itertools.product("0123546798ABCDEFGHIJKLMNOPQRSTUVWXYZ#$%&*-+£¢€^_qwertyuiopasdfghjklzxcvbnm",repeat=x)
for pin in char:
pinready=''.join(pin)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment