Skip to content

Commit 8a1681f

Browse files
committed
chore: -
1 parent 8f375d6 commit 8a1681f

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
1-
# nmap-utils
1+
# nmap-xml-utilities
22

3-
Scripts to process nmap results.
3+
Utilities to process nmap XML output.
44

55
## Scripts
66

7-
* [Merge nmap xml files](#merge-nmap-xml-filesmerge-nmap-xml)
8-
* [Parse nmap xml file](#parse-nmap-xml-fileparse-nmap-xml)
7+
* [Merge nmap xml files](#merge-nmap-xml-filesnmap-merge-xml)
8+
* [Parse nmap xml file](#parse-nmap-xml-filenmap-parse-xml)
99

10-
### [Merge nmap xml files](./merge-nmap-xml)
10+
### [Merge nmap xml files](./nmap-merge-xml)
1111

1212
Merge Multiple nmap xml output files into a single xml file.
1313

1414
```bash
15-
merge-nmap-xml -h
15+
nmap-merge-xml -h
1616
```
1717

1818
```text
19-
usage: merge-nmap-xml [-h] [-f FILE] [-d DIR] [-q]
19+
usage: nmap-merge-xml [-h] [-f FILE] [-d DIR] [-q]
2020
2121
optional arguments:
2222
-h, --help show this help message and exit
@@ -25,16 +25,16 @@ optional arguments:
2525
-q, --quiet don't print status messages to stdout
2626
```
2727

28-
### [Parse nmap xml file](./parse-nmap-xml)
28+
### [Parse nmap xml file](./nmap-parse-xml)
2929

3030
Parse nmap xml output file to extract bits of information.
3131

3232
```bash
33-
parse-nmap-xml -h
33+
nmap-parse-xml -h
3434
```
3535

3636
```text
37-
usage: parse-nmap-xml [-h] [-ips] [-ports] [-service SERVICE] [-service-prefix PREFIX] [-separator SEPARATOR] FILE
37+
usage: nmap-parse-xml [-h] [-ips] [-ports] [-service SERVICE] [-service-prefix PREFIX] [-separator SEPARATOR] FILE
3838
3939
positional arguments:
4040
FILE Nmap XML output file

merge-nmap-xml renamed to nmap-merge-xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ def addHeader(f):
2424
nMap_Header = '<?xml version="1.0" encoding="UTF-8"?>'
2525
nMap_Header += '<!DOCTYPE nmaprun>'
2626
nMap_Header += '<?xml-stylesheet href="file:///usr/share/nmap/nmap.xsl" type="text/xsl"?>'
27-
nMap_Header += '<!-- Nmap Merged with https://github.com/enenumxela/nmap-utils/blob/main/merge-nmap-xml -->'
28-
nMap_Header += '<nmaprun scanner="nmap" args="nmap -iL hostList.txt" start="1" startstr="https://github.com/enenumxela/nmap-utils/blob/main/merge-nmap-xml" version="7.70" xmloutputversion="1.04">'
27+
nMap_Header += '<!-- Nmap Merged with https://github.com/hueristiq/nmap-utils/blob/main/nmap-merge-xml -->'
28+
nMap_Header += '<nmaprun scanner="nmap" args="nmap -iL hostList.txt" start="1" startstr="https://github.com/hueristiq/nmap-utils/blob/main/nmap-merge-xml" version="7.70" xmloutputversion="1.04">'
2929
nMap_Header += '<scaninfo type="syn" protocol="tcp" numservices="1" services="1"/>'
3030
nMap_Header += '<verbose level="0"/>'
3131
nMap_Header += '<debugging level="0"/>'
File renamed without changes.

0 commit comments

Comments
 (0)