Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   518

Source code to Ransomware

by BlackVortex1 - 08 December, 2025 - 05:02 PM
This post is by a banned member (BlackVortex1) - Unhide
85
Posts
13
Threads
#1
the ransomware doesn't lock files or anything you have to add it yourself but what it does is

 the code is below:


btw only 2/63 find this as ransomware and malicous it's good.
 
 
Code:
import tkinter as tk from tkinter import messagebox class Ransomware: def __init__(self): self.root = tk.Tk() self.root.title("Ransomware") self.label = tk.Label(self.root, text="Your phone has been locked!", font=("Arial", 24)) self.label.pack() self.note = tk.Label(self.root, text="Send an email to your email for more info on the secret code", font=("Arial", 18)) self.note.pack() self.code_label = tk.Label(self.root, text="Enter secret code:", font=("Arial", 18)) self.code_label.pack() self.code_entry = tk.Entry(self.root, font=("Arial", 18), width=10) self.code_entry.pack() self.button = tk.Button(self.root, text="Submit", command=self.check_code) self.button.pack() def check_code(self): code = self.code_entry.get() if code == "111401": messagebox.showinfo("Correct Code", "Your phone is unlocked!") self.root.destroy() else: messagebox.showerror("Incorrect Code", "Try again!") def run(self): self.root.mainloop() if __name__ == "__main__": ransomware = Ransomware() ransomware.run()


the full code is in this link: https://mega.nz/file/XJ9QGSYD#T8DnC38T-S5cRKh6rrIly7KnIpl9l0JDa02Hv73Xn-U
what it does:A windows pop upThe window is titled "Ransomware", but this is just text — it does not affect the system.

You can Type a codeThere is a text entry field.
If you type [b]111401[/b]A popup appears saying
your phone is unlocked

if you type anything else a popup appears saying
try again

WHAT IT DOES NOT DO
 
lock the phone
lock the PC
block access to anything
run in the background
survive reboot
modify files
encrypt files
delete files
cause any kind of harm
control the OS
affect Android
persist in memory


the only thing you need to download is tkinter

if you know coding you can easily modify it to do the following to act as a real ransomware this is just the basic infrastructure no c2 needed
 
 
I am part of a hacking group known as ShadowByt3$ we leak info and sell info on darkforums.io.
This post is by a banned member (FuckJew) - Unhide
FuckJew  
Registered
8
Posts
0
Threads
#2
no working
This post is by a banned member (BlackVortex1) - Unhide
85
Posts
13
Threads
#3
(01 February, 2026 - 06:35 AM)FuckJew Wrote: Show More
no working

It did work when I used it but no longer use it anymore it was more of scareware then ransomware. now moved onto ransomware coding using golang for windows linux and esxi systems

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)