Forum Replies Created
- AuthorPosts
- Dimitris KalopisisSpectator
Sorry for the late response. I tried multiple times to replicate the issue but still to no avail. Let’s try one last thing: remove the sandbox evasion checks and see if that makes the backdoor work. You said you are running this on a real computer and not a VM, so the sandbox evasion might be getting a false positive rendering the backdoor useless.
Head to line 462 on the code/discord/main.py file and comment the if-statement and make sure to un-intend the rest of the code below the if-statement.
Check out the screenshot I supplied to see how it is supposed to look.Try to generate a new backdoor this way and try to run it on the target. You will not need to click this time to activate the backdoor.
Let me know how it goes.
Attachments:
You must be logged in to view attached files.Dimitris KalopisisSpectatorIt looks like the executable is not the issue. All the settings are set properly and the building process is also executing properly.
Let’s see what happens on the side of the backdoor. Please head to the builder.py file and to line 258 which should look like this:
compile_command = ["wine", path_to_pyinstaller, "--onefile", "--noconsole", "--icon=img/exe_file.ico", list[0]+".py"]
Change the line to this:
compile_command = ["wine", path_to_pyinstaller, "--onefile", "--icon=img/exe_file.ico", list[0]+".py"]
Once you change that build a discord backdoor and run it from the terminal on the windows machine. This will output errors on the terminal and we can find out what the issue is.
Dimitris KalopisisSpectatorHi There,
Sorry for the late response. Are you sure the bot token is set correctly? Can you show me the config command result after adding the parameters and before trying to build the backdoor?Dimitris KalopisisSpectatorHi There,
Do you happen to run the backdoor on a VM? Dystopia by default has a Sandbox evasion enabled which will scan the environment where the backdoor is running and determine if it is a VM or a sandbox. If that is the case the backdoor is terminated.
Also after running the backdoor, make sure you click a bunch of times as this is also checked by the sandbox evasion to ensure that this is a real person running the backdoor.Dimitris KalopisisSpectatorThis is literally the first time I am seeing this so it’s new territory. Let’s see, how much RAM have you set to your Kali Vm? This wine error could be the result of an installation error from Python. Are you sure you have a stable internet connection while installing Disctopia? You said you already tried removing your current Kali machine and trying it on a fresh one and gave you the same error right? I will run a test on my end to see if I get this error but in the meantime, the only thing I can recommend is to try again with a fresh installation.
Dimitris KalopisisSpectatorHey there this is Dimitris the developer of this tool.
I can see that you are using Kali and the correct version of Disctopia. The error you are getting is a new one. I just pushed a couple of updates today. Could you remove the whole disctopia-c2 folder and try the installation again on a new clone of the repository? Make sure you are doing everything as root so either always use sudo or run sudo su to become the root user.
Dimitris KalopisisSpectatorHey there, an update has been just pushed to Distopia that fixes this issue. Please run the builder using python builder.py and run the update command.
You should then have the latest version of Disctopia. Once you are done with that please run chmod +x setup.sh and ./setup.sh
It should work now - AuthorPosts