What did you not understand ? Be clearer ? The article or definition of ‘Ransomware’?
Take a look at this: A Ransomware in ‘Python’ that anyone here can write:
import os
import time
import sys
import random
def ransom_malware():
victim_name = input("What is the name of the victim? ")
print("Hello " + victim_name + "!")
time.sleep(2)
print("Your files have been encrypted.")
time.sleep(2)
print("To decrypt your files, you must pay a ransom of $500.")
time.sleep(2)
print("If you do not pay the ransom, your files will be lost forever.")
time.sleep(2)
print("To pay the ransom, please send the money to the following Bitcoin address: 1BvBMSEYstWetqTFn5Au4m4GFg7xJaNVN2")
time.sleep(2)
print("Once you have paid the ransom, your files will be decrypted and you will be able to access them again.")
time.sleep(2)
print("Thank you for your cooperation!")