mirror of
https://codeberg.org/mclemens/qrz.is.git
synced 2024-11-02 18:37:32 -04:00
23 lines
973 B
Markdown
23 lines
973 B
Markdown
---
|
|
title: 'NSE-Script: SQLite output for Nmap'
|
|
author: micha
|
|
date: 2014-05-05T13:36:29+00:00
|
|
url: /nse-script-sqlite-output-for-nmap/
|
|
categories:
|
|
- Uncategorized
|
|
|
|
---
|
|
I wrote this little NSE script that allows you to store the output of Nmap into a SQLite database: <a href="https://github.com/exitnode/nmap-sqlite-output" title="sqlite-output" target="_blank">https://github.com/exitnode/nmap-sqlite-output<br /> </a>
|
|
|
|
This might come in handy when performing large inventory scans. The SQLite database can be queried and sorted easily or exported as a CSV file. This way you can, for example, easily generate tables for your assessment report.
|
|
|
|
**Example:**
|
|
|
|
`$ nmap -sS -A -F --script sqlite-output scanme.nmap.org<br />
|
|
[...]<br />
|
|
$ sqlite3 scan.sqlite<br />
|
|
[...]<br />
|
|
sqlite> select * from scandata;<br />
|
|
scanme.nmap.org|74.207.244.221|22|tcp|ssh|open|OpenSSH5.3p1 Debian 3ubuntu7.1<br />
|
|
scanme.nmap.org|74.207.244.221|80|tcp|http|open|Apache httpd2.2.14`
|