Author Topic: How to kill any antivirus with C# and admin previlegies  (Read 1390 times)

0 Members and 1 Guest are viewing this topic.

Offline Revolution99

  • /dev/null
  • *
  • Posts: 5
  • Cookies: -3
    • View Profile
How to kill any antivirus with C# and admin previlegies
« on: September 27, 2015, 01:48:28 pm »
Hi ! I am making a virus with C#. My question is, if anyone knows, any idea, on how i can close the antivirus. Any antivirus. How i can crash them or kill their process without to find out the exactly name of the process (because in that case i have to download all the antivirus thet exists on the world to find out). I know that propably there isn't any way, but i want to ask .... :(

Offline truecam

  • Peasant
  • *
  • Posts: 92
  • Cookies: -46
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #1 on: September 27, 2015, 05:02:54 pm »
Test the virus on a virtualbox. Or test it out on a real person.

Offline Trevor

  • Serf
  • *
  • Posts: 39
  • Cookies: 18
  • Coder, Reverser
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #2 on: September 27, 2015, 05:13:39 pm »
Why would you need to kill anti-virus. Anti-virus technology is still mainly based on signatures.
It does not take much effort to make your thing FUD.

Answering the original question, several anti viruses have hidden undocumented switches like a registry key which disables them.

For more information read the  The Antivirus Hacker’s Handbook which has been posted in the eBooks section.


Offline Melatonin

  • /dev/null
  • *
  • Posts: 18
  • Cookies: 2
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #3 on: September 27, 2015, 06:52:10 pm »
Making it FUD would be the best route. Metasploit however has a script that disables any antivirus running that is in there list.

Take a look at it here: https://github.com/rapid7/metasploit-framework/blob/master/scripts/meterpreter/killav.rb
« Last Edit: September 27, 2015, 06:52:40 pm by Melatonin »

Offline Revolution99

  • /dev/null
  • *
  • Posts: 5
  • Cookies: -3
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #4 on: September 27, 2015, 08:57:57 pm »
so if i make a "unique" virus the antiviruses they will not caught them from the beginning ?

Offline Melatonin

  • /dev/null
  • *
  • Posts: 18
  • Cookies: 2
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #5 on: September 27, 2015, 09:06:11 pm »
so if i make a "unique" virus the antiviruses they will not caught them from the beginning ?

If the signature is not in the AV database it will not be detected. There are more things to consider though. Google around there are many papers online about AV Evasion, learn about Crypters. Hope your intentions ethical...   


Offline Trevor

  • Serf
  • *
  • Posts: 39
  • Cookies: 18
  • Coder, Reverser
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #6 on: September 27, 2015, 09:33:03 pm »
The most difficult to detect of them are metamorphic viruses which changes at each generation.
There can be no universal signature to detect such malware.

However they are very very difficult to develop.

Nowadays, no one bothers to develop such malware, when you get better ROI with ransomware.
« Last Edit: September 27, 2015, 09:35:11 pm by Trevor »

Offline Revolution99

  • /dev/null
  • *
  • Posts: 5
  • Cookies: -3
    • View Profile
Re: How to kill any antivirus with C# and admin previlegies
« Reply #7 on: September 27, 2015, 10:27:28 pm »
Aha. Ok. thanks all of you guys for your answers !! :)