Linux server.flyproject.com.br 3.10.0-1160.el7.x86_64 #1 SMP Mon Oct 19 16:18:59 UTC 2020 x86_64
Apache
: 207.244.227.86 | : 216.73.217.1
10 Domain
7.1.33
hubnog
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
/
usr /
java /
jdk1.7.0_80 /
man /
man1 /
[ HOME SHELL ]
Name
Size
Permission
Action
appletviewer.1
1.83
KB
-rw-r--r--
apt.1
4.34
KB
-rw-r--r--
extcheck.1
2.01
KB
-rw-r--r--
idlj.1
18.09
KB
-rw-r--r--
jar.1
18.3
KB
-rw-r--r--
jarsigner.1
52.51
KB
-rw-r--r--
java.1
29.63
KB
-rw-r--r--
javac.1
40.17
KB
-rw-r--r--
javadoc.1
169.45
KB
-rw-r--r--
javafxpackager.1
7.45
KB
-rw-r--r--
javah.1
4.86
KB
-rw-r--r--
javap.1
6.34
KB
-rw-r--r--
javaws.1
3.81
KB
-rw-r--r--
jcmd.1
3.36
KB
-rw-r--r--
jconsole.1
2.84
KB
-rw-r--r--
jdb.1
10.48
KB
-rw-r--r--
jhat.1
3.36
KB
-rw-r--r--
jinfo.1
2.6
KB
-rw-r--r--
jmap.1
3.59
KB
-rw-r--r--
jmc.1
2.03
KB
-rw-r--r--
jps.1
7.44
KB
-rw-r--r--
jrunscript.1
3.78
KB
-rw-r--r--
jsadebugd.1
2.37
KB
-rw-r--r--
jstack.1
2.96
KB
-rw-r--r--
jstat.1
85.19
KB
-rw-r--r--
jstatd.1
7.26
KB
-rw-r--r--
jvisualvm.1
2.64
KB
-rw-r--r--
keytool.1
80.33
KB
-rw-r--r--
native2ascii.1
1.96
KB
-rw-r--r--
orbd.1
11.25
KB
-rw-r--r--
pack200.1
10.07
KB
-rw-r--r--
policytool.1
1.47
KB
-rw-r--r--
rmic.1
9.46
KB
-rw-r--r--
rmid.1
13.5
KB
-rw-r--r--
rmiregistry.1
2.1
KB
-rw-r--r--
schemagen.1
2.53
KB
-rw-r--r--
serialver.1
1.8
KB
-rw-r--r--
servertool.1
5.69
KB
-rw-r--r--
tnameserv.1
12.29
KB
-rw-r--r--
unpack200.1
2.84
KB
-rw-r--r--
wsgen.1
10.57
KB
-rw-r--r--
wsimport.1
15.48
KB
-rw-r--r--
xjc.1
10.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jcmd.1
." Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. ." .TH jcmd 1 "18 Jul 2013" .LP .SH "Name" jcmd \- Sends diagnostic command requests to a running Java Virtual Machine .LP .SH "SYNOPSIS" .LP .nf \f3 .fl \fP\f3jcmd\fP [ \f2options\fP ] .fl \f3jcmd\fP [ \f2pid\fP | \f2main\-class\fP ] \f3PerfCounter.print\fP .fl \f3jcmd\fP [ \f2pid\fP | \f2main\-class\fP ] \f2command [arguments]\fP .fl \f3jcmd\fP [ \f2pid\fP | \f2main\-class\fP ] \f3\-f\fP \f2file\fP .fl .fi .LP .RS 3 .TP 3 options The command\-line options. See Options. .TP 3 pid Identifies the process that receives the diagnostic command requests. The process must be a Java process. To get a list of Java processes running on a machine, use jps(1) or jcmd(1). .TP 3 main\-class The main class of the process that receives the diagnostic command requests. When matching processes, any process whose main class name contains the specified string as a substring is matched. If several running Java processes share the same main class, then the diagnostic command request is sent to all these processes. To get a list of Java processes running on a machine, use jps(1) or jcmd(1). .TP 3 command [arguments] The main class of the process that receives the diagnostic command requests. When matching processes, any process whose main class name contains the specified string as a substring is matched. If several running Java processes share the same main class, then the diagnostic command request is sent to all these processes. To get a list of Java processes running on a machine, use jps(1) or jcmd(1). .TP 3 Perfcounter.print Print the performance counters available on the targeted Java processes. The list of performance counters might vary with the Java process. .TP 3 \-f file Read commands from \f2file\fP and call them on the targeted Java processes. In \f2file\fP, each command must be written on a single line. Lines starting with # are ignored. Processing of \f2file\fP ends when all lines have been called or when a line containing the \f3stop\fP keyword is read. .RE .LP .SH "DESCRIPTION" .LP .LP \f3jcmd\fP is a utility to send diagnostic command requests to a Java Virtual Machine supporting this feature. .LP .LP Used without arguments or with the \f3\-l\fP option, \f3jcmd\fP prints the list of running Java processes with their process ID, their main class and their command\-line arguments. .LP .LP When a process ID is specified on the command line, \f3jcmd\fP sends the diagnostic command request to the process with this ID. .LP .LP When a main class is specified on the command line, \f3jcmd\fP sends the diagnostic command request to all Java processes for which the command\-line argument is a substring of the Java process' main class. .LP .LP With the \f3PerfCounter.print\fP argument, \f3jcmd\fP prints the performance counters available on the targeted Java processes. .LP .LP With the \f3\-f\fP option, \f3jcmd\fP sends to the targeted Java processes the diagnostic commands stored in the specified \f3file\fP. .LP .SH "OPTIONS" .LP .LP Options are mutually exclusive. Options, when used, must immediately follow the command name. .LP .RS 3 .TP 3 \-l Prints the list of running Java processes with their process IDs, their main classes, and their command\-line arguments. .TP 3 \-h Prints a help message. .TP 3 \-help Prints a help message. .RE .LP .SH "SEE ALSO" .LP .RS 3 .TP 2 o jps .RE .LP
Close