-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCl4y_Gerador.py
193 lines (158 loc) · 6.99 KB
/
Cl4y_Gerador.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
# Criador do Gerador #Cl4y#
#!/bin/bash
#!/usr/bin/env python3
import re
import requests
from subprocess import run
from os import system
import os
import random
from time import sleep
opcao = 0
import getpass
from random import randint
# Cores
R = '\033[1;31m'
B = '\033[1;34m'
C = '\033[1;37m'
Y = '\033[1;33m'
G = '\033[1;32m'
RT = '\033[;0m'
clear = lambda: os.system('clear')
def cpf_validate(numbers):
# Obtém os números do CPF e ignora outros caracteres
cpf = [int(char) for char in numbers if char.isdigit()]
# Verifica se o CPF tem 11 dígitos
if len(cpf) != 11:
return False
# Verifica se o CPF tem todos os números iguais, ex: 111.111.111-11
# Esses CPFs são considerados inválidos mas passam na validação dos dígitos
# Antigo código para referência: if all(cpf[i] == cpf[i+1] for i in range (0, len(cpf)-1))
if cpf == cpf[::-1]:
return False
# Valida os dois dígitos verificadores
for i in range(9, 11):
value = sum((cpf[num] * ((i+1) - num) for num in range(0, i)))
digit = ((value * 10) % 11) % 10
if digit != cpf[i]:
return False
return True
def cpf_generate():
# Gera os primeiros nove dígitos (e certifica-se de que não são todos iguais)
while True:
cpf = [randint(0, 9) for i in range(9)]
if cpf != cpf[::-1]:
break
# Gera os dois dígitos verificadores
for i in range(9, 11):
value = sum((cpf[num] * ((i + 1) - num) for num in range(0, i)))
digit = ((value * 10) % 11) % 10
cpf.append(digit)
# Retorna o CPF como string
result = ''.join(map(str, cpf))
return result
#tem todas as bin BR GOLD
list1 = [
"541839", "403407", "518307", "439142", "491314", "517718", "403246", "536467", "554471", "544839", "403236", "516220", "477387", "421126", "498407", "527497", "439017", "520141", "482457", "403249", "445498", "545500", "544831", "493100", "544879", "418044", "491411", "545670", "540905", "544871", "493101", "477386", "457675", "423071", "473898", "547109", "422621", "549090", "518843", "482479", "512207", "546452", "439389", "526962", "459315", "411809", "535895", "407843", "636368", "636369", "438935", "504175", "451416", "636297", "506699", "522978", "554927",]
# lista data de vencimento
list = [ 2024, 2025, 2026, 2027, 2028, 2029, 2030, 2031, 2035, 2036, 2037, 2038, 2049, 2050,]
# Lista de senhas
list3 =(
"mividaentera1","mividaentera01","mividaenrosayael",
"mividaenrosa","mividaelrock@hotmail.com",
"mividaelparaiso","mividaeamo","mividadura","mividadiva","mividadios",
"mividadieguis","ividadetrasdelatuya","mividaderstu",
"mividadeamor","mividadary","mividadali","mividacontinua","mividaconel","mividacondios","mividaconderek-2","Pedro171", "Yuri157", "Igor69", "Matheus666", "Francisco1234", "José123", "João232", "Carlos1341", "Paulo222", "Lucas420", "Marcelo45", "Daniel155", "Raimundo1", "Rodrigo123", "Eduardo445", "Luiz" "Diego", "Kaike"
)
#lista de nomes
name = ("Pedro", "Yuri", "Igor", "Matheus", "Francisco", "José", "João", "Carlos", "Paulo", "Lucas", "Marcelo", "Daniel", "Raimundo", "Rodrigo", "Eduardo", "Luiz" "Diego", "Kaike")
name2 = ("Pereira", "Silva", "Roberto", "Carneiro",)
name3 = ("Henrique", "Grabriel", "Dantas", "Silva", "David",)
nume2 = random.randrange(1, 9999999999)
binlist1 = random.choice(list1)
cvv = random.randint(3, 999)
data1 = random.randrange(1, 31)
data2 = random.randrange(1, 12)
data3 = random.choice(list)
senha3 = random.choice(list3)
listname = random.choice(name)
listname2 = random.choice(name2)
listname3 = random.choice(name3)
listname4 = random.choice(name3)
cpf = cpf_generate()
cpf_validate(cpf)
print(f'''{G}*Criador Cl4y
{R}████████╗ ██████╗ ██████╗ ██╗ ███████╗
{B}╚══██╔══╝██╔═══██╗██╔═══██╗██║ ██╔════╝
{C} ██║ ██║ ██║██║ ██║██║ ███████╗
{Y} ██║ ██║ ██║██║ ██║██║ ╚════██║
{RT} ██║ ╚██████╔╝╚██████╔╝███████╗███████║
{R} ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝ {G}V.Beta.1
{G} Obrigado a todos, pelo o uso dessa ferramenta{C} !''')
sleep(1)
print()
print(f'''{R}#########################################################{C}''')
sleep(1)
print (f'''{Y}############# {B}[ 1{G} ✓{B} ] {G} CPF.{Y} ###############{C}''')
sleep(1)
print()
print (f'''{Y}############# {B}[ 2{G} ✓{B} ] {G} Gerar CCFUL.{Y} ###############{C}''')
sleep(1)
print()
print (f'''{Y}############# {B}[ 3{G} ✓{B} ] {G} Bin Válida.{Y} ###############{C}''')
sleep(1)
print()
print (f'''{Y}############# {B}[ 4{G} ✓{B} ] {G} Gerar CPF e SENHA.{Y}###############{C}''')
sleep(1)
print()
print (f'''{Y}############# {B}[ 5{G} ✓{B} ] {G} CVV.{Y} ###############{C}''')
sleep(1)
print()
print (f'''{Y}############# {B}[ 6{G} ✓{B} ] {G} Gerar NOME.{Y} ###############{C}''')
sleep(1)
print()
print (f'''{Y}#############{B} [ 0{G} ✓{B} ] {G} Sair do Programa.{Y} ###############{C}''')
sleep(1)
print()
print(f'''{R}#########################################################{C}''')
print()
sleep(1)
opcao = int(input(f''' {Y} Faça uma Escolha:--> {C} '''))
clear()
if opcao == 1:
opcao = int(input(f'''{R}[7]{B} Validar um CPF
{R}[8]{B} Gerar um CPF válido{C}
{Y} opção:--> {C}'''))
if opcao == 7:
cpf = input('Digite o CPF sem pontos e traços:--> ')
if cpf_validate(cpf):
print(f'''{Y}############# {B}[ {G} ✓{B} ] {G} CPF Válido:-->{C} ''')
sleep(1)
else:
print(f'''{Y}############# {R}[ ✓ ] CPF Inválido:-->{C} ''')
elif opcao == 8:
cpf = cpf_generate()
if cpf_validate(cpf):
print(f'''{Y}############# {G} CPF Gerado:--> {B} {cpf[:3]}.{cpf[3:6]}.{cpf[6:9]}-{cpf[9:]} ''')
if opcao == 2:
print(f'''{Y}############# {G} Nome do Cadastrado:--> {C}''' , listname, listname2, listname3, listname4 )
sleep(1)
print(f'''{Y}############# {G} Número do cartão:--> {C}''', binlist1,nume2)
sleep(2)
print(f'''{Y}############# {G} Cvv do cartão:--> {C}''',cvv)
sleep(3)
print(f'''{Y}############# {G} Data do cartão:--> {C}''', data1, data2, data3)
if opcao == 3:
print(f'''{Y}############# {G} BIN Válida:--> {C}''',binlist1)
if opcao == 4:
print(f'''{Y}############# {G} CPF Gerado:--> {B} {cpf[:3]}.{cpf[3:6]}.{cpf[6:9]}-{cpf[9:]} {C}''')
print (f'''{Y}#############{G} Senha:--> {B}''', senha3)
if opcao == 5:
print (f'''{Y}#############{G} CVV:--> {B} ''', cvv)
if opcao == 6:
print (f'''{Y}#############{G} Nome:--> {B}''', listname, listname2, listname3, listname4, data1, data2, data3)
if opcao == 0:
print("{Y}Finalizado Script ")
exit()
print("=-=" * 10)
print("Fim do Programa! Volte Sempre!!{C}")