ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /usr/share/nmap/nselib/data/jdwp-class/ |
This directory contains sources and compiled classes used by jdwp-* scripts. All classes must have run() method defined which is expected to return a string. Method run() can have arguments, but then the scripts would need to be modified to add those arguments when class is injected. As JDWPExecCmd has a run() method which accepts a string as its argument, see jdwp-exec script for details of passing the arguments to a method via JDWP. Arguments need to be tagged with their respective type. For other tags see http://docs.oracle.com/javase/6/docs/technotes/guides/jni/spec/types.html#wp9502 . Example from jdwp-exec: local cmdID status,cmdID = jdwp.createString(socket,0,cmd) local runArgs = bin.pack(">CL",0x4c,cmdID) -- 0x4c is object type tag -- invoke run method local result status, result = jdwp.invokeObjectMethod(socket,0,injectedClass.instance,injectedClass.thread,injectedClass.id,runMethodID,1,runArgs) To compile these sources: # javac *.java