#!/usr/bin/python3 # -*- coding: utf-8 -*- """ Author : LimerBoy github.com/LimerBoy/BlazeRAT Notes : The file is needed to store the text and, if necessary, quickly translate it into other languages. """ """ Authorization messages """ class auth: incorrect_token = "โ›”๏ธ Incorrect token, attempts left %i" user_authorized = "๐Ÿ”‘ User %s authorized as '%s',\nsession will expire at %s" already_authorized = "โš ๏ธ You are already authorized!" not_authorized = "โ›”๏ธ Access denied, you need to authorize!" permission_not_found = "โš ๏ธ You don't have permissions to do this!" user_deauthorized = "โ˜ ๏ธ User %s deauthorized" user_is_banned = "๐Ÿ’ฃ Account is banned, reason '%s'" """ Services messages """ class services: # Desktop screenshot desktop_screenshot_captured = "๐ŸŒƒ Desktop screenshot taken" # Webcam screenshot webcam_screenshot_captured = "๐Ÿ“น Webcam screenshot taken" webcam_screenshot_button = "๐Ÿ“น Take screenshot" webcam_start_recording_button = "โ–ถ๏ธ Start video recording" webcam_stop_recording_button = "โน Stop video recording" webcam_select_action = "๐ŸŽฅ Select an action...\nDevice index is %i" webcam_recording_started = "๐Ÿ“ธ Webcam recording started" webcam_recording_stopped = "๐Ÿ“ท Webcam recording stopped" webcam_recording_not_started = "๐Ÿ“ท Unable to stop recording because it was not started!" webcam_recording_not_stopped = "๐Ÿ“ธ It is impossible to start recording as it is already started!" webcam_failed_open = "๐Ÿ“ท Failed to open webcam %i" # System audio volume control volume_get_level_button = "๐Ÿ”‰ Current level is %i" volume_set_level_button = "๐Ÿ”Š Set %i" volume_get_level = "๐Ÿ”‰ Current volume level is %i" volume_set_level = "๐Ÿ”Š Changed volume level to %i" # Micophone recorder microphone_start_recording_button = "โ–ถ๏ธ Start recording" microphone_stop_recording_button = "โน Stop recording" microphone_select_action = "๐ŸŽค Select an action..." microphone_recording_started = "๐ŸŽ™ Recording started" microphone_recording_stopped = "๐ŸŽ™ Recording stopped" microphone_recording_not_started = "๐ŸŽค Unable to stop recording because it was not started!" microphone_recording_not_stopped = "๐ŸŽค It is impossible to start recording as it is already started!" # Keylogger controls keylogger_start_recording_button = "โ–ถ๏ธ Start logger" keylogger_stop_recording_button = "โน Stop logger" keylogger_get_logs_button = "โŒจ๏ธ Retrieve logs" keylogger_clean_logs_button = "โ™ป๏ธ๏ธ Clean logs" keylogger_logs_received = "๐Ÿ“„ Here is keylogger logs" keylogger_logs_cleaned = "๐Ÿšฎ Keylogger logs cleaned" keylogger_recording_started = "โŒจ๏ธ Keylogger started" keylogger_recording_stopped = "โŒจ๏ธ Keylogger stopped" keylogger_recording_not_started = "โ‰๏ธUnable to stop keylogger because it was not started!" keylogger_recording_not_stopped = "โ‰๏ธIt is impossible to start keylogger as it is already started!" # Power controls power_control = "๐Ÿ”‹ Select power command:" power_received = "๐Ÿ”‹ Power event %s received" power_shutdown = "๐Ÿ”ป Shutdown" power_suspend = "๐Ÿ”ป Suspend" power_reboot = "๐Ÿ”ป Reboot" power_logout = "๐Ÿ”ป Log out" # Location location_success = "๐Ÿ—บ Location:\n\tLatitude: %f\n\tLongitude: %f\n\tRange: %i\n\tAddress: \"%s\"\n\n๐Ÿ“ก %s" location_gateway_detection_failed = "๐Ÿ“ก Failed to get default gateway!" location_arp_request_failed = "๐Ÿ“ก Failed to get gateway mac address!" location_api_request_failed = "๐Ÿ“ก Failed to make API request!" # Shell commands shell_session_opened = "โš™๏ธ Terminal session opened" shell_session_closed = "โš™๏ธ Terminal session closed" shell_command_is_empty = "๐Ÿš Input command is empty!" shell_command_executed = "๐Ÿš System command executed.\n%s" shell_pwd_success = "๐Ÿ“‚ Current directory is:\n%s" shell_chdir_success = "๐Ÿ“‚ Current directory changed to:\n%s" shell_chdir_not_found = "๐Ÿ“‚ Directory not found:\n%s" shell_chdir_not_a_dir = "๐Ÿ“‚ Not a directory:\n%s" shell_chdir_failed = "๐Ÿ“‚ (%s)\nFailed to change directory to:\n%s" # Process manager taskmanager_process_list = "โš™ Taskmanager (%s) running %i processes:" taskmanager_process_kill_success = "๐Ÿ”ซ Process %s (%i) killed" taskmanager_process_kill_failed = "๐Ÿ”ซ Failed to kill process %i, error:\n%s" # Wipe browsers data wipe_files_count = "๐Ÿงจ %i files will be deleted beyond recovery" wipe_confirm = "โ™ป๏ธ Do you want to clean browsers data?" wipe_agree = "โœ… Wipe all data" wipe_disagree = "๐Ÿ›‘ NO!" wipe_cancelled = "โœ… Wipe cancelled" wipe_removed = "๐Ÿ—‘ Removed %i files from system" # Installation stub_install = "๐Ÿ‘ป Installing service..." stub_uninstall = "๐Ÿ—‘ Uninstalling service..." """ File transfer and filemanager """ class file: upload_path_not_found = "๐Ÿ“„ File %s not found!" download_file_success = "๐Ÿ“„ File %s saved" start_file_success = "๐Ÿ“„ Start file:\n%s" remove_directory_success = "๐Ÿ—‘ Directory removed:\n%s" remove_directory_failed = "๐Ÿ—‘ (%s)\nFailed to remove directory:\n%s" remove_file_success = "๐Ÿ—‘ File removed:\n%s" remove_file_failed = "๐Ÿ—‘ (%s)\nFailed to remove file:\n%s" """ User messages """ class user: name_anonymous = "Anonymous" help = (""" ๐Ÿ”‘ *[Auth]* /authorize /deauthorize /permissions ๐Ÿ—ƒ *[Files]* /download /filemanager ๐Ÿ‘โ€๐Ÿ—จ *[Spying]* /location /keylogger /information /webcam /screenshot /microphone ๐Ÿš *[System]* /taskmanager /uninstall /keyboard /volume /power /shell /wipe """)