Continued importing some old wiki content

This commit is contained in:
Julien Dessaux 2021-03-19 23:39:19 +01:00
parent b1283325a5
commit 80c6fffa71
3 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,17 @@
---
title: "Some nmap common usages"
date: 2021-03-19
description: nmap command examples
tags:
- toolbox
---
## Introduction
Too often I have to go through the man page to remember the flags I need, so here is a little summary.
## The commands
- Initiate a detailed host scan : ''nmap -v -sV -O serveraddr''
- Initiate a ping scan without port scan : ''nmap -sn 10.1.0.0/24''
- The same ping scan with greppable output : ''nmap -sn -oG - 10.0.33.0/24''