-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add README content and some comments in code
- Loading branch information
Vsevolod
committed
Jun 29, 2019
1 parent
a70427d
commit 42b0d9c
Showing
2 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# nmap2md | ||
A little utility to convert nmap xml results to markdown tables | ||
|
||
A little utility to convert nmap XML results to markdown tables | ||
|
||
## Usage | ||
|
||
Example which parses nmap XML and outputs Markdown tables | ||
|
||
``` | ||
python nmap2md.py /path/to/file/test.xml -c protocol,port,service,product,version --hs 4 | ||
``` | ||
|
||
## Output example | ||
|
||
#### 74.207.244.221 | ||
|
||
| Protocol | Port | Service | Product | Version | | ||
|----------|------|---------|---------|---------| | ||
| tcp | 22 | ssh | OpenSSH | 5.3p1 Debian 3ubuntu7 | | ||
| tcp | 80 | http | Apache httpd | 2.2.14 | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters