Greenwolf
Greenwolf

Reputation: 23

NMAP save results to separate files

I was wondering if there was any way to specify a range of IP addresses and save the scan results for each to a sepperate file in the same folder.

So scan 1.1.1.1, 1.1.1.2, 1.1.1.3 and they all save to a file with the file name as their IP address in a folder.

I'm working on a small screen and it would really help make the results more understandable.

Upvotes: 0

Views: 2897

Answers (1)

David Hoelzer
David Hoelzer

Reputation: 16351

No, there isn't. However, you might want to take a look the various -o options.

For example, -oM <filename> will store it in "Machine Readable" format. Another option is a greppable format. Both of these might serve your purpose because, essentially, they will save the results in a file with one line per host rather than the rather verbose standard output.

Upvotes: 1

Related Questions