Monday, January 17, 2005

Hacker Tip 9 :: Mp3 Deletor

Dont you hate it seen the RIAA invades your house, to get the mp3. I do, i hate it. But now my Biatches i know how to stop them. By just simply pushing a button, all your mp3 files are deleted.
This uses the program of Batch code.

Open up new text document in the Notepad. And use the copying of ctrl + c and paste this copy in.

"@echo offbreak offecho Ramzi's RIAA Mp3 Deletor Biatches!pause
del c:\*.mp3 /f /s /q rem /f Forces deletion of read-only files rem /s Deletes specified files from all subdirectories rem /q Quiet mode
cls
echo Job Complete. Shutting system down in 3..
shutdown -s -t 3 -f -c "RIAA, Ramzi is hacker Bitch! And he Fucked you!" rem Shutdown command only works in XP rem -s Shutdown Computer rem -t Sets delay time before shutdown rem -f Forces all programs to closepause"

Download Here

Then goto File. Save As.
Then Save as type "All Files"
Then Filename "mp3deletor.bat" (doenst matter as long as you put .bat at the end)

(See screenshot below for more help)

Now as you see, the code. It is time to make the sense of it.

@echo off - it will not display the files the files being deleted or the process. I find it the fun to make it on. Shows the files being the deleted.

break off - by pressing ctrl + c. It cancel the commandor. This stop that

Echo RIAA - Writes "RIAA" on the Dos.

Pause - Stop the command and waits for any key to be pressed. (A Safety thing in case you press the file and do not want too)

del c:\*.mp3 - the * is for the wildcard. So any mp3 files. Del will delete all files it find.

/f -Forces deletion of read-only files

/s -Deletes specified files from all subdirectories

/q - Quiet mode (no do tell)

Cls - Clear all programs off the Screen.

Shutdown - Shutdown the Computer

-s - Shutdown Computer rem

-t - Sets delay time before shutdown rem

-f - Forces all programs to close

Thank you my hacker biatchs. You this to keep those RIAA away. I like to thank the bitches ExitFrame! Peace out from Ramzi to you!

--Ramzi--


1 Comments:

Anonymous said...

That isn't an secure delete so if the RIAA come to your house and bag n tag ur computer ur in an larger world of shit...

They'll make an image or partitioned iso of ur entire hd... then run some forensic software like Accessdata etc... so they'll see that youv'e deleted all of the files in an hurry...

My sugestion would be use something like evidance eliminator... as this will securely delete your files....

2:29 AM  

Post a Comment

<< Home