Advertisement
WhosYourDaddySec

Use & Abuse Me FU CK ME CHUCK ME

Nov 10th, 2023
174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.30 KB | None | 0 0
  1. python
  2. import argparse
  3. import os
  4. from cryptography.hazmat.primitives import hashes
  5. from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
  6. from cryptography.hazmat.backends import default_backend
  7. import sqlite3
  8. from PIL import Image, ImageFilter
  9. import PyPDF2
  10.  
  11. class AdvancedTool:
  12. def __init__(self):
  13. self.salt = os.urandom(16)
  14.  
  15. def bind_files(self, file1, file2, output_file):
  16. try:
  17. with open(file1, 'rb') as f1, open(file2, 'rb') as f2:
  18. data1 = f1.read()
  19. data2 = f2.read()
  20.  
  21. with open(output_file, 'wb') as output:
  22. output.write(data1)
  23. output.write(data2)
  24.  
  25. print(f"Files bound successfully. Output saved to {output_file}")
  26. except Exception as e:
  27. print(f"Error binding files: {str(e)}")
  28.  
  29. def encrypt_file(self, input_file, output_file):
  30. try:
  31. with open(input_file, 'rb') as infile:
  32. plain_data = infile.read()
  33.  
  34. password = input("Enter encryption password: ")
  35. key = self.derive_key(password)
  36.  
  37. cipher = Fernet(key)
  38. encrypted_data = cipher.encrypt(plain_data)
  39.  
  40. with open(output_file, 'wb') as outfile:
  41. outfile.write(encrypted_data)
  42.  
  43. print(f"File encrypted and saved to {output_file}")
  44. except Exception as e:
  45. print(f"Error encrypting file: {str(e)}")
  46.  
  47. def create_database(self, database_path):
  48. try:
  49. connection = sqlite3.connect(database_path)
  50. cursor = connection.cursor()
  51. cursor.execute('''CREATE TABLE IF NOT EXISTS users (id INTEGER PRIMARY KEY, name TEXT, email TEXT)''')
  52.  
  53. connection.commit()
  54. connection.close()
  55. print(f"Database created at {database_path}")
  56. except Exception as e:
  57. print(f"Error creating database: {str(e)}")
  58.  
  59. def derive_key(self, password):
  60. kdf = PBKDF2HMAC(
  61. algorithm=hashes.SHA256(),
  62. salt=self.salt,
  63. iterations=100000,
  64. length=32,
  65. backend=default_backend()
  66. )
  67. key = kdf.derive(password.encode())
  68. return key
  69.  
  70. def main():
  71. parser = argparse.ArgumentParser(
  72. description='Comprehensive Expert Tool',
  73. formatter_class=argparse.RawTextHelpFormatter,
  74. )
  75. subparsers = parser.add_subparsers(dest="action")
  76.  
  77. tool = AdvancedTool()
  78.  
  79. # Subparser for file binding
  80. bind_parser = subparsers.add_parser("bind_files", help="Bind two files together")
  81. bind_parser.add_argument('file1', help='Path of the first file')
  82. bind_parser.add_argument('file2', help='Path of the second file')
  83. bind_parser.add_argument('output_file', help='Path of the output file')
  84. bind_parser.set_defaults(func=tool.bind_files)
  85.  
  86. # Subparser for data encryption
  87. encrypt_parser = subparsers.add_parser("encrypt", help="Encrypt a file")
  88. encrypt_parser.add_argument('input_file', help='Path to the input file')
  89. encrypt_parser.add_argument('output_file', help='Path to save the encrypted file')
  90. encrypt_parser.set_defaults(func=tool.encrypt_file)
  91.  
  92. # Subparser for database creation
  93. db_parser = subparsers.add_parser("create_db", help="Create a SQLite database")
  94. db_parser.add_argument('database_path', help='Path to create the SQLite database')
  95. db_parser.set_defaults(func=tool.create_database)
  96.  
  97. args = parser.parse_args()
  98. if hasattr(args, 'func'):
  99. args.func(**vars(args))
  100.  
  101. if __name__ == '__main__':
  102. main()
  103.  
  104.  
  105. ### Setup Guide:
  106.  
  107. 1. Environment Setup:
  108. - Ensure you have Python installed (recommended version: 3.7+).
  109.  
  110. 2. Dependencies Installation:
  111. - Install required dependencies:
  112. ```
  113. pip install cryptography Pillow
  114. ```
  115.  
  116. 3. Usage:
  117. - Bind Files:
  118. ```
  119. python tool.py bind_files file1.jpg file2.pdf bound_output.jpg
  120. ```
  121.  
  122. - Encrypt File:
  123. ```
  124. python tool.py encrypt secret.txt encrypted.txt
  125. ```
  126.  
  127. - Create Database:
  128. ```
  129. python tool.py create_db mydb.db
  130. ```
  131.  
  132. 4. output:
  133. - Output files or database will be created as specified in the command examples.
  134. - For encryption, a password prompt is added for enhanced security.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement