CAN ANY BRO TELL ME AS HOW TO MAKE VIRUS IN C++ OF VB
AND ITS WORKING
HEY ALL HACKERS BRO (THE MAKING OF VIRUS)
- anicoolrocks
- Posts: 29
- Joined: Tue Jul 01, 2008 5:03 am
-
- Posts: 115
- Joined: Wed Jun 11, 2008 9:47 pm
- anicoolrocks
- Posts: 29
- Joined: Tue Jul 01, 2008 5:03 am
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
HkRkoz al KuwaiT 2019 HaCkEr 101
-
- Posts: 23
- Joined: Tue May 27, 2008 10:05 am
- Location: Rockville
ha ha
gw bsa buat cuma Gen FFE fajar!
wkwkwkkwkw
gk merusak koq, yg pngin sample nya minta ke gw ja
wkwkwkkwkw
gk merusak koq, yg pngin sample nya minta ke gw ja
martin love A_ _ _ L
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
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
-
- Posts: 276
- Joined: Fri Aug 15, 2008 8:21 am
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();
}
}
}
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();
}
}
}