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 | : 3.144.83.68
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 /
[ 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
.mad-root
0
B
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
apache_start.bat
436
B
-rwxrwxrwx
apache_stop.bat
190
B
-rwxrwxrwx
catalina_service.bat
10.08
KB
-rwxrwxrwx
catalina_start.bat
3.68
KB
-rwxrwxrwx
catalina_stop.bat
3.45
KB
-rwxrwxrwx
ctlscript.bat
2.67
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
270
B
-rwxrwxrwx
passwords.txt
824
B
-rw-rw-rw-
properties.ini
792
B
-rw-rw-rw-
pwnkit
10.99
KB
-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
1.63
KB
-rwxrwxrwx
uninstall.dat
257.84
KB
-rw-rw-rw-
uninstall.exe
6.28
MB
-rwxrwxrwx
xampp-control.exe
3.21
MB
-rwxrwxrwx
xampp-control.ini
173
B
-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_service.bat
@echo off rem Licensed to the Apache Software Foundation (ASF) under one or more rem contributor license agreements. See the NOTICE file distributed with rem this work for additional information regarding copyright ownership. rem The ASF licenses this file to You under the Apache License, Version 2.0 rem (the "License"); you may not use this file except in compliance with rem the License. You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing, software rem distributed under the License is distributed on an "AS IS" BASIS, rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. if "%OS%" == "Windows_NT" setlocal rem --------------------------------------------------------------------------- rem NT Service Install/Uninstall script rem rem Options rem install Install the service using Tomcat as service name. rem Service is installed using default settings. rem remove Remove the service from the System. rem rem name (optional) If the second argument is present it is considered rem to be new service name rem rem $Id: service.bat 1000718 2010-09-24 06:00:00Z mturk $ rem --------------------------------------------------------------------------- rem ---------XAMPP------------------------------------------------------------- :::::::::::::::::::::::::::::::::::: :: Set JAVA_HOME or JRE_HOME :: :::::::::::::::::::::::::::::::::::: 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 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 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 FINDADOPTOPENJDK64 ) set KeyName=%JDKKeyName64Short% 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 or 64 bit AdoptOpenJDK JRE on 64 bit machine goto FINDADOPTOPENJDK64JRE ) 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 ENDERROR ) set KeyName=%AdoptOpenJDKKeyName64JRE% goto JDKRUN :JDKRUN echo. echo [XAMPP]: Using JDK set "CURRENT_DIR=%cd%" set "CATALINA_HOME=%CURRENT_DIR%\tomcat" 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. goto NEXT :JRERUN echo. echo [XAMPP]: Using JRE set "CURRENT_DIR=%cd%" set "CATALINA_HOME=%CURRENT_DIR%\tomcat" 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. goto NEXT :ENDERROR exit 1 :NEXT echo [XAMPP]: Finding Java Version set Cmd=reg query "%KeyName%" /v CurrentVersion for /f "tokens=2*" %%i in ('%Cmd% ^| find "CurrentVersion"') do set CVERSION=%%j echo [XAMPP]: Java Version: %CVERSION% echo [XAMPP]: Starting Tomcat Service Install... echo . rem ----------END XAMPP----------------------------------------------------------------- set "SELF=%~dp0%service.bat" rem Guess CATALINA_HOME if not defined set "CURRENT_DIR=%cd%" if not "%CATALINA_HOME%" == "" goto gotHome set "CATALINA_HOME=%cd%" if exist "%CATALINA_HOME%\bin\tomcat8.exe" goto okHome rem CD to the upper dir cd .. set "CATALINA_HOME=%cd%" :gotHome if exist "%CATALINA_HOME%\bin\tomcat8.exe" goto okHome echo The tomcat.exe was not found... echo The CATALINA_HOME environment variable is not defined correctly. echo This environment variable is needed to run this program goto end :okHome rem Make sure prerequisite environment variables are set if not "%JAVA_HOME%" == "" goto gotJdkHome if not "%JRE_HOME%" == "" goto gotJreHome echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined echo Service will try to guess them from the registry. goto okJavaHome :gotJreHome if not exist "%JRE_HOME%\bin\java.exe" goto noJavaHome if not exist "%JRE_HOME%\bin\javaw.exe" goto noJavaHome goto okJavaHome :gotJdkHome if not exist "%JAVA_HOME%\jre\bin\java.exe" goto noJavaHome if not exist "%JAVA_HOME%\jre\bin\javaw.exe" goto noJavaHome if not exist "%JAVA_HOME%\bin\javac.exe" goto noJavaHome if not "%JRE_HOME%" == "" goto okJavaHome set "JRE_HOME=%JAVA_HOME%\jre" goto okJavaHome :noJavaHome echo The JAVA_HOME environment variable is not defined correctly echo This environment variable is needed to run this program echo NB: JAVA_HOME should point to a JDK not a JRE goto end :okJavaHome if not "%CATALINA_BASE%" == "" goto gotBase set "CATALINA_BASE=%CATALINA_HOME%" :gotBase set "EXECUTABLE=%CATALINA_HOME%\bin\tomcat8.exe" rem Set default Service name set SERVICE_NAME=Tomcat set PR_DISPLAYNAME=Apache Tomcat if "x%1x" == "xx" goto displayUsage set SERVICE_CMD=%1 shift if "x%1x" == "xx" goto checkServiceCmd :checkUser if "x%1x" == "x/userx" goto runAsUser if "x%1x" == "x--userx" goto runAsUser set SERVICE_NAME=%1 set PR_DISPLAYNAME=Apache Tomcat %1 shift if "x%1x" == "xx" goto checkServiceCmd goto checkUser :runAsUser shift if "x%1x" == "xx" goto displayUsage set SERVICE_USER=%1 shift runas /env /savecred /user:%SERVICE_USER% "%COMSPEC% /K \"%SELF%\" %SERVICE_CMD% %SERVICE_NAME%" goto end :checkServiceCmd if /i %SERVICE_CMD% == install goto doInstall if /i %SERVICE_CMD% == remove goto doRemove if /i %SERVICE_CMD% == uninstall goto doRemove echo Unknown parameter "%1" :displayUsage echo. echo Usage: service.bat install/remove [service_name] [/user username] goto end :doRemove rem Remove the service "%EXECUTABLE%" //DS//%SERVICE_NAME% if not errorlevel 1 goto removed echo Failed removing '%SERVICE_NAME%' service goto end :removed echo The service '%SERVICE_NAME%' has been removed goto end :doInstall rem Install the service echo Installing the service '%SERVICE_NAME%' ... echo Using CATALINA_HOME: "%CATALINA_HOME%" echo Using CATALINA_BASE: "%CATALINA_BASE%" echo Using JAVA_HOME: "%JAVA_HOME%" echo Using JRE_HOME: "%JRE_HOME%" rem Use the environment variables as an example rem Each command line option is prefixed with PR_ set PR_DESCRIPTION=Apache Tomcat Server - http://tomcat.apache.org/ set "PR_INSTALL=%EXECUTABLE%" set "PR_LOGPATH=%CATALINA_BASE%\logs" set "PR_CLASSPATH=%CATALINA_HOME%\bin\bootstrap.jar;%CATALINA_BASE%\bin\tomcat-juli.jar;%CATALINA_HOME%\bin\tomcat-juli.jar" rem Set the server jvm from JAVA_HOME set "PR_JVM=%JRE_HOME%\bin\server\jvm.dll" if exist "%PR_JVM%" goto foundJvm rem Set the client jvm from JAVA_HOME set "PR_JVM=%JRE_HOME%\bin\client\jvm.dll" if exist "%PR_JVM%" goto foundJvm set PR_JVM=auto :foundJvm echo Using JVM: "%PR_JVM%" "%EXECUTABLE%" //IS//%SERVICE_NAME% --StartClass org.apache.catalina.startup.Bootstrap --StopClass org.apache.catalina.startup.Bootstrap --StartParams start --StopParams stop --Startup auto if not errorlevel 1 goto installed echo Failed installing '%SERVICE_NAME%' service goto ENDERROR :installed rem Clear the environment variables. They are not needed any more. set PR_DISPLAYNAME= set PR_DESCRIPTION= set PR_INSTALL= set PR_LOGPATH= set PR_CLASSPATH= set PR_JVM= rem Set extra parameters "%EXECUTABLE%" //US//%SERVICE_NAME% --JvmOptions "-Dcatalina.base=%CATALINA_BASE%;-Dcatalina.home=%CATALINA_HOME%;-Djava.endorsed.dirs=%CATALINA_HOME%\endorsed" --StartMode jvm --StopMode jvm rem More extra parameters set "PR_LOGPATH=%CATALINA_BASE%\logs" set PR_STDOUTPUT=auto set PR_STDERROR=auto rem XAMPP: We need special parameters for Java 7 if "%CVERSION%" == "1.7" goto JAVA7 :JAVA "%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions "-Djava.io.tmpdir=%CATALINA_BASE%\temp;-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager;-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties" --JvmMs 128 --JvmMx 256 goto FINISH :JAVA7 "%EXECUTABLE%" //US//%SERVICE_NAME% ++JvmOptions "-Djava.io.tmpdir=%CATALINA_BASE%\temp;-Djava.util.logging.manager=org.apache.juli.ClassLoaderLogManager;-Djava.util.logging.config.file=%CATALINA_BASE%\conf\logging.properties;-Djava.net.preferIPv4Stack=true" --JvmMs 128 --JvmMx 256 :FINISH echo The service '%SERVICE_NAME%' has been installed. :end cd "%CURRENT_DIR%"
Close