Page 1 of 1
HEY ALL HACKERS BRO (THE MAKING OF VIRUS)
Posted: Thu Jul 03, 2008 6:04 am
by anicoolrocks
CAN ANY BRO TELL ME AS HOW TO MAKE VIRUS IN C++ OF VB
AND ITS WORKING
Posted: Thu Jul 03, 2008 6:22 am
by The_Dark_Avenger
And DO YOU KNOW THESE LANGUAGES????
If you knew them, you would know. Just fucking google it
Posted: Thu Jul 03, 2008 6:39 am
by anicoolrocks
Posted: Fri Jul 04, 2008 12:49 am
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...
ha ha
Posted: Tue Jul 08, 2008 6:37 am
by martin_great_boy
gw bsa buat cuma Gen FFE fajar!
wkwkwkkwkw
gk merusak koq, yg pngin sample nya minta ke gw ja
Posted: Thu Jul 31, 2008 10:55 am
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
Posted: Fri Aug 15, 2008 8:50 am
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();
}
}
}