File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 40
40
- name : Checkout repository
41
41
uses : actions/checkout@v3
42
42
43
+ - uses : actions/setup-java@v1
44
+ with :
45
+ java-version : 17
46
+
43
47
# Initializes the CodeQL tools for scanning.
44
48
- name : Initialize CodeQL
45
49
uses : github/codeql-action/init@v2
Original file line number Diff line number Diff line change 1
1
# java-nmap-xml-parser
2
- A Java parser that converts nmap xml output to a POJO without any additional dependencies
2
+ A Java parser that converts nmap xml output to a POJO without any additional dependencies.
3
+
4
+ -- For whatever reason you might want to work with Java on your nmap results o.0
5
+
6
+
7
+ ### Usage
8
+
9
+ ``` java
10
+ // run 'nmap -oX' to get the result in XML format.
11
+ var nmapRun = XmlParser . parse(yourNmapXmlOutputAsString);
12
+
13
+ ```
14
+
15
+ ### Requirements
16
+ This library requires Java 17 as a minimum version.
17
+
You can’t perform that action at this time.
0 commit comments