#!/bin/python
#-*-encoding: utf-8 -*-
#PassGen By Z
#Licencia GPL
#2011
#Importamos libreria random, para poder escoger numeros y letras al azar
import random
from random import choice
#Definimos el proceso de la creacion del PassWord
def createpass():
num=random.choice(range(1,100))
may=random.choice('ABCDEFGHIJKLMOPQRSTUVWXYZÑ')
minu=random.choice('abcdefghijklmnopqrstuvwxyzñ')
raros=random.choice('?\¿¡!#$%&/()=[]{}^{}`}.,_><')
x=str(num)
y=x+may+minu+raros
z=0
while z<1:
num=random.choice(range(1,100))
xx=str(num)
may=random.choice('ABCDEFGHIJKLMOPQRSTUVWXYZÑ')
minu=random.choice('abcdefghijklmnopqrstuvwxyzñ')
raros=random.choice('?\¿¡!#$%&/()=[]{}^{}`}.,_><')
yy=xx+may+minu+raros
z+=1
zz=0
while zz<1:
num=random.choice(range(1,100))
xxx=str(num)
may=random.choice('ABCDEFGHIJKLMOPQRSTUVWXYZÑ')
minu=random.choice('abcdefghijklmnopqrstuvwxyzñ')
raros=random.choice('?\¿¡!#$%&/()=[]{}^{}`}.,_><')
yyy=raros+may+minu+xxx
zz+=1
print 'PASS GENERADO: ',y+yy+yyy
print'Grcias por usar PassGen By ZtuX'
#Funcion Principal
def main():
opcion=raw_input('Generar password[?]: ')
if opcion=='si' or opcion=='S' or opcion=='s' or opcion=='Si' or opcion=='SI':
createpass()
elif opcion=='no' or opcion=='NO' or opcion=='No' or opcion=='n':
print 'Gracias Por Usar PassG3n by ZtuX'
raw_input()
else:
print '>>>Debes Escribir Si/si/s o No/no/n'
main()
#Aqui inicia el programa...
main()
Suscribirse a:
Enviar comentarios (Atom)
Comments
0 Response to 'PassGen by Me xD: Escrito en Python'
Publicar un comentario