Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
making a more secure password maker (advance)
Help PWDs == Root Key - anonymous_root
anonymous_Key - anonymous_encrypt, anonymous_decryption
from colorama import Fore, Back, Style
words_lst_high = (('q', '0^1'), ('w','0
1'), ('e','130'), ('r','1*0'), ('t', '0:1'), ('y', '0%1'),1'), ('E','130'), ('R','1*0'), ('T', '0:1'), ('Y', '0%1'),('u', '1_0'), ('i', '1!0'), ('o', '001'), ('p', '091'), ('a', '1@0'), ('s', '1$0'),
('d', '0{1'), ('f', '0}1'), ('g', '1(0'), ('h', '1)0'), ('j', '0/1'), ('k', "0."),
('l', '1|0'), ('z', '0#1'), ('x', '0?1'), ('c', '1=0'), ('v', '1.0'), ('b', '081'),
('n', '0+1'), ('m', '1-0'), ('Q', '0^1'), ('W','0
('U', '1_0'), ('I', '1!0'), ('O', '001'), ('P', '091'), ('A', '1@0'), ('S', '1$0'),
('D', '0{1'), ('F', '0}1'), ('G', '1(0'), ('H', '1)0'), ('J', '0/1'), ('K', "0."),
('L', '1|0'), ('Z', '0#1'), ('X', '0?1'), ('C', '1=0'), ('V', '1.0'), ('B', '081'),
('N', '0+1'), ('M', '1-0'), (' ', ';;'))
words_lst_med = (('q', '^'), ('w','~'), ('e','3'), ('r','*'), ('t', ':'), ('y', '%'),
('u', '_'), ('i', '!'), ('o', '0'), ('p', '9'), ('a', '@'), ('s', '$'),
('d', '{'), ('f', '}'), ('g', '('), ('h', ')'), ('j', '/'), ('k', "."),
('l', '|'), ('z', '#'), ('x', '?'), ('c', '='), ('v', '.'), ('b', '8'),
('n', '+'), ('m', '-'))
words_lst_low = (('q', 'Q#'), ('w','W#'), ('e','3'), ('r','R#'), ('t', 'T#'), ('y', 'Y#'),
('u', '_'), ('i', '!'), ('o', '0'), ('p', '9'), ('a', '@'), ('s', '$'),
('d', 'D#'), ('f', 'F#'), ('g', 'G#'), ('h', 'H#'), ('j', 'J#'), ('k', "K#"),
symbol_list = (('!', '1!'), ('@', '2@'), ('#','3#'),('$', '4$'), ('%', '5%'),
('^', '6^'), ('&', '7&'), ('', '8'),('(', '9('), (')' ,'0)'))
decryption_high_lst = (('0^1', 'q'), ('0~1','w'), ('130','e'), ('1*0','r'), ('0:1', 't'), ('0%1', 'y'),
('1_0', 'u'), ('1!0', 'i'), ('001', 'o'), ('091', 'p'), ('1@0', 'a'), ('1$0', 's'),
('0{1', 'd'), ('0}1', 'f'), ('1(0', 'g'), ('1)0', 'h'), ('0/1', 'j'), ('0.', "k"),
('1|0', 'l'), ('0#1', 'z'), ('0?1', 'x'), ('0?1', 'c'), ('1.0', 'v'), ('081', 'b'),
('0+1', 'n'), ('1-0', 'm'), (';;', ' '))
decryption_medium_lst = (('^', 'q'), ('~','w'), ('e','3'), ('*','r'), (':', 't'), ('%', 'y'),
('_', 'u'), ('!', 'i'), ('0', 'o'), ('9', 'p'), ('@', 'a'), ('$', 's'),
('{', 'd'), ('}', 'f'), ('(', 'g'), (')', 'h'), ('/', 'j'), ('.', "k"),
('|', 'l'), ('#', 'z'), ('?', 'x'), ('=', 'c'), ('.', 'v'), ('8', 'b'),
('+', 'n'), ('-', 'm'))
decryption_low_lst = (('Q#', 'q'), ('W#','w'), ('3','e'), ('R#','r'), ('T#', 't'), ('Y#', 'y'),
('_', 'u'), ('!', 'i'), ('0', 'o'), ('9', 'p'), ('@', 'a'), ('$', 's'),
('D#', 'd'), ('F#', 'f'), ('G#', 'g'), ('H#', 'h'), ('J#', 'j'), ('K#', "k"),
decryption_symbols_lst = (('1!', '!'), ('2@', '@'), ('3#','#'),('4$', '$'), ('5%', '%'),
('6^', '^'), ('7&', '&'), ('8*', '*'),('9(', '('), ('0)' ,')'))
def number_lst():
number_lst = (('1', '1!q'), ('2', '2@w'), ('3', '3#e'), ('4', '4$r'), ('5', '5%t'), ('6', '6^y'),
('7', '7&u'), ('8', '*i'), ('9', '9(0'), ('0', '0)P'), (' ', ';;'))
def encryption_of_passwords(usr_pass):
for a, b in words_lst_high:
usr_pass = usr_pass.replace(a,b)
return usr_pass
def encryption_of_passwords2(usr_pass2):
for a,b in words_lst_med:
usr_pass2 = usr_pass2.replace(a,b)
return usr_pass2
def encryption_of_passwords3(usr_pass3):
for a, b in words_lst_low:
usr_pass3 = usr_pass3.replace(a, b)
return usr_pass3
def encryption_of_symbol(usr_pass4):
for a,b in symbol_list:
usr_pass4 = usr_pass4.replace(a, b)
return usr_pass4
def decryption_high(usr_pass51):
for a, b in decryption_high_lst:
usr_pass51 = usr_pass51.replace(a, b)
return usr_pass51
def decryption_medium(usr_pass52):
for a, b in decryption_medium_lst:
usr_pass52 = usr_pass52.replace(a, b)
return usr_pass52
def decryption_low(usr_pass53):
for a, b in decryption_low_lst:
usr_pass53 = usr_pass53.replace(a, b)
return usr_pass53
def decryption_symbols(usr_pass54):
for a, b in decryption_symbols_lst:
usr_pass54 = usr_pass54.replace(a, b)
return usr_pass54
def decryption_number_lst():
number_lst = (('1!q', '1'), ('2@w', '2'), ('3#e', '3'), ('4$r', '4'), ('5%t', '5'), ('6^y', '6'),
('7&u', '7'), ('*i', '8'), ('9(0', '9'), ('0)P', '0'), (';;', ' '))
def main():
import time
if name == 'main':
print('\033[33m ++++ Welcome To The\033[00m'+' \033[41m X-Crawler!!\033[00m'+ '\033[33m ++++\033[00m')
time.sleep(0.1)
print(' \033[33m {{--Coded By:\033[00m'+' Kamaldeep Singh'+'\033[33m--}}\n\033[00m')
def lol():
print('Error')
print('Lol!')
print(' _ ')
print(' | | | |')
print(' | | ___ | |')
print(' | |/ _ | |')
print(' | | () | |')
print(' ||___/||')
exit()
Facebook Auto liker
+12522282703
C:/Program Files (x86)/Google/Chrome/chromedriver.exe
def facebook():
from selenium import webdriver
from time import sleep
from selenium.webdriver.common.keys import Keys
import time
import requests
print('-----------------------------------------------------------------------')
print('\033[43m Note: This script needs Active Internet Access!\033[00m')
print('\033[31m Do you have Internet Access?[1/0]\033[00m')
internet = input('==> ')
if (internet == '1'):
Auto_Viewer_Bot -
def youtube():
Anonymous Web mailer
def anony_mailer():
main()