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.52
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.8.0_311 /
bin /
Delete
Unzip
Name
Size
Permission
Date
Action
extcheck
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
idlj
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jar
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jarsigner
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
java
8.51
KB
-rw-rw-rw-
2021-09-27 14:26
java-rmi.cgi
1.77
KB
-rw-rw-rw-
2021-09-27 14:26
javac
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jcmd
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jdeps
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jjs
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jps
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
jrunscript
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
keytool
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
native2ascii
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
orbd
8.7
KB
-rw-rw-rw-
2021-09-27 14:26
pack200
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
rmic
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
rmid
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
rmiregistry
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
schemagen
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
servertool
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
tnameserv
8.7
KB
-rw-rw-rw-
2021-09-27 14:26
unpack200
182.58
KB
-rw-rw-rw-
2021-09-27 14:26
wsgen
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
wsimport
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
xjc
8.63
KB
-rw-rw-rw-
2021-09-27 14:26
Save
Rename
#!/bin/sh # # Copyright (c) 1996, Oracle and/or its affiliates. All rights reserved. # ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. # # # # # # # # # # # # # # # # # # # # # # # # # This script executes the Java interpreter, defines properties # that correspond to the CGI 1.0 environment variables, and executes # the class "sun.rmi.transport.proxy.CGIHandler". It should be # installed in the directory to which the HTTP server maps the # URL path "/cgi-bin". # # (Configuration is necessary as noted below.) # # This class will support a QUERY_STRING of the form "forward=<port>" # with a REQUEST_METHOD "POST". The body of the request will be # forwarded (as another POST request) to the server listening on the # specified port (must be >= 1024). The response from this forwarded # request will be the response to the original request. # # CONFIGURATION: # # Fill in correct absolute path to Java interpreter below. For example, # the "PATH=" line might be changed to the follow if the JDK is installed # at the path "/home/peter/java": # # PATH=/home/peter/java/bin:$PATH # PATH=/usr/local/java/bin:$PATH exec java \ -DAUTH_TYPE="$AUTH_TYPE" \ -DCONTENT_LENGTH="$CONTENT_LENGTH" \ -DCONTENT_TYPE="$CONTENT_TYPE" \ -DGATEWAY_INTERFACE="$GATEWAY_INTERFACE" \ -DHTTP_ACCEPT="$HTTP_ACCEPT" \ -DPATH_INFO="$PATH_INFO" \ -DPATH_TRANSLATED="$PATH_TRANSLATED" \ -DQUERY_STRING="$QUERY_STRING" \ -DREMOTE_ADDR="$REMOTE_ADDR" \ -DREMOTE_HOST="$REMOTE_HOST" \ -DREMOTE_IDENT="$REMOTE_IDENT" \ -DREMOTE_USER="$REMOTE_USER" \ -DREQUEST_METHOD="$REQUEST_METHOD" \ -DSCRIPT_NAME="$SCRIPT_NAME" \ -DSERVER_NAME="$SERVER_NAME" \ -DSERVER_PORT="$SERVER_PORT" \ -DSERVER_PROTOCOL="$SERVER_PROTOCOL" \ -DSERVER_SOFTWARE="$SERVER_SOFTWARE" \ sun.rmi.transport.proxy.CGIHandler