1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-28 18:39:03 +00:00

Did some NSEDoc cleanup on many of the 45 NSE scripts which are new since the 5.35DC1 Nmap release. Emphasis was on the first paragraph of the description, since that is shown on the front page of http://nmap.org/nsedoc and I'm planning to use that description verbatim (except for removing tags like <code>) for the CHANGELOG

This commit is contained in:
fyodor
2011-01-14 10:20:51 +00:00
parent ed12841d70
commit a84c2e4498
39 changed files with 69 additions and 78 deletions

View File

@@ -1,14 +1,16 @@
description = [[
This script connects to a remote RMI registry and attempts to dump all
its objects.
Connects to a remote RMI registry and attempts to dump all its objects.
First it tries to
determine the names of all objects bound in the registry, and then it tries to determine information about the objects,
such as the the class names of the superclasses and interfaces. This may, depending on what the registry is used for, give
valuable information about the service. E.g, if the app uses JMX (Java Management eXtensions), you should see an object
called "jmxconnector" on it.
First it tries to determine the names of all objects bound in the
registry, and then it tries to determine information about the
objects, such as the the class names of the superclasses and
interfaces. This may, depending on what the registry is used for, give
valuable information about the service. E.g, if the app uses JMX (Java
Management eXtensions), you should see an object called "jmxconnector"
on it.
It also gives information about where the objects are located, (marked with @<ip>:port in the output).
It also gives information about where the objects are located, (marked
with @<ip>:port in the output).
Some apps give away the classpath, which this scripts catches in so-called "Custom data".
]]