Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Program Files /
Java /
jdk1.7.0_80 /
db /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
NetworkServerControl
5.67
KB
-rw-rw-rw-
2024-08-25 16:37
NetworkServerControl.bat
1.38
KB
-rwxrwxrwx
2024-08-25 16:37
dblook
5.61
KB
-rw-rw-rw-
2024-08-25 16:37
dblook.bat
1.35
KB
-rwxrwxrwx
2024-08-25 16:37
derby_common.bat
2.37
KB
-rwxrwxrwx
2024-08-25 16:37
ij
5.74
KB
-rw-rw-rw-
2024-08-25 16:37
ij.bat
1.35
KB
-rwxrwxrwx
2024-08-25 16:37
setEmbeddedCP
1.05
KB
-rw-rw-rw-
2024-08-25 16:37
setEmbeddedCP.bat
1.25
KB
-rwxrwxrwx
2024-08-25 16:37
setNetworkClientCP
1.05
KB
-rw-rw-rw-
2024-08-25 16:37
setNetworkClientCP.bat
1.25
KB
-rwxrwxrwx
2024-08-25 16:37
setNetworkServerCP
1.05
KB
-rw-rw-rw-
2024-08-25 16:37
setNetworkServerCP.bat
1.24
KB
-rwxrwxrwx
2024-08-25 16:37
startNetworkServer
5.67
KB
-rw-rw-rw-
2024-08-25 16:37
startNetworkServer.bat
1.36
KB
-rwxrwxrwx
2024-08-25 16:37
stopNetworkServer
5.67
KB
-rw-rw-rw-
2024-08-25 16:37
stopNetworkServer.bat
1.37
KB
-rwxrwxrwx
2024-08-25 16:37
sysinfo
5.65
KB
-rw-rw-rw-
2024-08-25 16:37
sysinfo.bat
1.36
KB
-rwxrwxrwx
2024-08-25 16:37
Save
Rename
@echo off @REM Licensed to the Apache Software Foundation (ASF) under one @REM or more contributor license agreements. See the NOTICE file @REM distributed with this work for additional information @REM regarding copyright ownership. The ASF licenses this file @REM to you under the Apache License, Version 2.0 (the @REM "License"); you may not use this file except in compliance @REM with the License. You may obtain a copy of the License at @REM http://www.apache.org/licenses/LICENSE-2.0 @REM Unless required by applicable law or agreed to in writing, @REM software distributed under the License is distributed on an @REM "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @REM KIND, either express or implied. See the License for the @REM specific language governing permissions and limitations @REM under the License. rem %~dp0 is expanded pathname of the current script under NT set DEFAULT_DERBY_HOME=%~dp0.. if "%DERBY_HOME%"=="" set DERBY_HOME=%DEFAULT_DERBY_HOME% set DEFAULT_DERBY_HOME= set _USE_CLASSPATH=yes rem Slurp the command line arguments. This loop allows for an unlimited number rem of arguments (up to the command line limit, anyway). set DERBY_CMD_LINE_ARGS=%1 if ""%1""=="""" goto doneStart shift :setupArgs if ""%1""=="""" goto doneStart if ""%1""==""-noclasspath"" goto clearclasspath set DERBY_CMD_LINE_ARGS=%DERBY_CMD_LINE_ARGS% %1 shift goto setupArgs rem here is there is a -noclasspath in the options :clearclasspath set _USE_CLASSPATH=no shift goto setupArgs rem This label provides a place for the argument list loop to break out rem and for NT handling to skip to. :doneStart rem check the value of DERBY_HOME if exist "%DERBY_HOME%\lib\derby.jar" goto setLocalClassPath :noDerbyHome echo DERBY_HOME is set incorrectly or derby.jar could not be located. echo Please set the DERBY_HOME environment variable to the path where you installed Derby. goto endcommon :setLocalClassPath set LOCALCLASSPATH=%DERBY_HOME%/lib/derby.jar;%DERBY_HOME%/lib/derbynet.jar;%DERBY_HOME%/lib/derbyclient.jar;%DERBY_HOME%/lib/derbytools.jar :checkJava set _JAVACMD=%JAVACMD% if "%JAVA_HOME%" == "" goto noJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe goto endcommon :noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=java.exe :endcommon