Advertisement
2005zeus

Prank virus batch file

Apr 12th, 2021
638
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 1.75 KB | None | 0 0
  1. ::                  THIS FILE HAS RANDOM FLASHING SCREEN THINGS AND MAY TRIGGER SEIZURES FOR PEOPLE WITH EPILEPSY
  2. ::                                                  VIEWER DISCRETION ADVISED
  3.  
  4. :: -----------------------------------------------------------------------------------------------------------------------------------
  5.  
  6. ::          This is just a prank virus thing I made 2 years ago
  7. ::          When the batch file is executed, some random numbers appear and finally the file deletes itself
  8.  
  9.  
  10. :: =================================================================================================================================
  11.  
  12. @echo off
  13.  
  14. ::----------------------------------------------------------------------------------
  15. :: Random number display
  16.  
  17. set /A var = 3
  18. :start
  19.  
  20. set /a varr = var%%15
  21. if not %var% == 60 (
  22. if %varr% == 0 (
  23.  color 42
  24.   echo %random% %random% %random% %random% %random%%random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
  25. ) else (
  26.  color 04
  27.  echo %random% %random% %random% %random% %random%%random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
  28.  color 02
  29.  echo %random% %random% %random% %random% %random%%random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
  30. )
  31. set /a var = %var% + 1
  32. )else goto end
  33. goto start
  34.  
  35. ::----------------------------------------------------------------------------------
  36. :: This place displays the text "THIS COMPUTER IS SUCCESSFULLY HACKED"
  37.  
  38. :end
  39. for /l %%x in (1, 1, 100) do (
  40.  color 04
  41.  echo THIS COMPUTER IS SUCCESSFULLY HACKED
  42. )
  43.  
  44. ::----------------------------------------------------------------------------------
  45. :: Self destruct part
  46.  
  47. SETLOCAL
  48. ECHO "This script will now self-destruct. Please ignore the next error message"
  49. DEL "%~f0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement