Hackerszone
Welcome Guest,
learn to hack easily with tutorials, python, notepad hacks and more!
Join today, fast and free!

Are you new to hacking? Learn the basics in computer configuration, hacking tools, and hacker terminology all found here on this forum!

Join today!!

Join the forum, it's quick and easy

Hackerszone
Welcome Guest,
learn to hack easily with tutorials, python, notepad hacks and more!
Join today, fast and free!

Are you new to hacking? Learn the basics in computer configuration, hacking tools, and hacker terminology all found here on this forum!

Join today!!
Hackerszone
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 

 


Rechercher Advanced Search

HZ Tracker
Hacking Widget Visitor Details
Latest topics
»  How to study to understand and apply RPA?
A Novelty/Prank Batch File, Fun notepad hack EmptyTue Feb 02, 2021 7:12 am by manas41

» SQL injection and Quote escaping
A Novelty/Prank Batch File, Fun notepad hack EmptySun Jun 28, 2015 11:42 am by ADS1

» [TUT] Chmod: Files & Permissions [TUT]
A Novelty/Prank Batch File, Fun notepad hack EmptyThu Jun 04, 2015 12:45 pm by Guest

» Reaver pixiewps
A Novelty/Prank Batch File, Fun notepad hack EmptyThu Jun 04, 2015 12:23 pm by voidfletcher

» How To Crash Someone's Skype in 10 SECONDS
A Novelty/Prank Batch File, Fun notepad hack EmptyThu Jun 04, 2015 12:20 pm by voidfletcher

» Internet Security & IP Security (IPSec)
A Novelty/Prank Batch File, Fun notepad hack EmptyMon May 18, 2015 9:00 pm by voidfletcher

» [Python] Infinite / Definite File Generator
A Novelty/Prank Batch File, Fun notepad hack EmptyMon May 18, 2015 8:58 pm by ADS1

» [C#] String Case-Inversion
A Novelty/Prank Batch File, Fun notepad hack EmptyMon May 18, 2015 8:57 pm by ADS1

» Rekall Memory Forensic Framework
A Novelty/Prank Batch File, Fun notepad hack EmptySat May 16, 2015 8:55 pm by ADS1

Who is online?
In total there are 3 users online :: 0 Registered, 0 Hidden and 3 Guests

None

[ View the whole list ]


Most users ever online was 38 on Sun Mar 19, 2023 10:07 pm

A Novelty/Prank Batch File, Fun notepad hack

Go down

A Novelty/Prank Batch File, Fun notepad hack Empty A Novelty/Prank Batch File, Fun notepad hack

Post by kyle5647 Sun Mar 22, 2015 12:50 pm

It isn't really a virus but more like a novelty/prank program that people could enjoy. It isn't malicious but it could distract you Tongue

If you don't want to do it step-by-step here is my full code.

Code:

@echo off
title System Error!
color c
echo ------- WARNING -------
echo ------- SYSTEM -------
echo ------- ERROR -------
ping localhost -n 2 >nul
echo Water Detected In Drive C:\
ping localhost -n 1 >nul
echo.
echo.
set /p abort=Abort Drainage? (Y/N)
if %abort%==Y exit
if %abort%==N goto drain
:drain
cls
echo DRIVE C:\ DRAIN IN PROCESS, DO NOT CLICK A KEY!
set file=drain.mp3
( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
echo Sound.URL = "%file%"
echo Sound.Controls.play
echo do while Sound.currentmedia.duration = 0
echo wscript.sleep 100
echo loop
echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >sound.vbs
start /min sound.vbs
ping localhost -n 23 >nul
:finish
cls
color c
echo DRAIN FINISH!
ping localhost -n 3 >nul
exit

Step One:
You need a water drain sound file. Just Google one. They are on YouTube pretty much everywhere.

Step Two: Open Notepad or Notepad++ and write a little fake error. Maybe something like this
Code:
@echo off
title System Error!
color c
echo ------- WARNING -------
echo ------- SYSTEM -------
echo ------- ERROR -------
pause
You could also add user input to abort the drain if they wanted to using "set /p"!

Step Three: Now you have to make the drain sound file undetectable as in make not open a Windows Media Player window. This is the code to do that:
Code:
echo DRIVE C:\ DRAIN IN PROCESS, DO NOT CLICK A KEY!
set file=drain.mp3
( echo Set Sound = CreateObject("WMPlayer.OCX.7"^)
echo Sound.URL = "%file%"
echo Sound.Controls.play
echo do while Sound.currentmedia.duration = 0
echo wscript.sleep 100
echo loop
echo wscript.sleep (int(Sound.currentmedia.duration^)+1^)*1000) >sound.vbs
start /min sound.vbs

This is going to create a seperate .vbs file. So you might want to do this within a folder rather than on your desktop.

That's pretty much it. Just replace (drain.mp3) with whatever the drain sound effect is called & make sure that the drain sound effect is in the same directory as the batch file. In addition you could make this run in fullscreen by making a shortcut and going to options and clicking Fullscreen instead of Windowed.

You could also add a section where a dry cycle would play. using the same lines above. Just replacing the name.
kyle5647
kyle5647
Member
Member

Posts : 40
Join date : 2014-04-08

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum