Commit 964b4d37 authored by bobloblaw's avatar bobloblaw
Browse files

Delete nmap_scripts.md

parent fd73204a
Loading
Loading
Loading
Loading

nmap_scripts.md

deleted100644 → 0
+0 −40
Original line number Diff line number Diff line
# Nmap scripts

This chapter could also be placed in Vulnerability-analysis and Exploitation. Because nmap scripting is a really versatile tool that can do many things. Here we will focus on it's ability to retrieve information that can be useful in the process to **find vulnerabilities** 


First locate the nmap scripts. Nmap scripts end in **nse**. For Nmap script engine.

```
locate *.nse
```

The syntax for running a script is:

```
nmap --script scriptname 192.168.1.101
```


To find the "man"-pages, the info about a script we write:

```
nmap -script-help http-vuln-cve2013-0156.nse
```

**Run multiple scripts**

Can be run by separating the script with a comma

```
nmap --script scriptone.nse,sciprt2.nse,script3.nse 192.168.1.101
```


## Basics

Run the default scripts

```
nmap -sC example.com
```
 No newline at end of file