DEL HTML anchors from posts as they are going to be added automaticly with new ssg
This commit is contained in:
parent
3484b45045
commit
3d28d5eee9
26 changed files with 263 additions and 263 deletions
|
|
@ -10,7 +10,7 @@
|
|||
|
||||
This blog post will cover the general usage of nmap scripts, not the scripting itself. Check out the [getting started with nmap post](https://ittavern.com/getting-started-with-nmap/) if you are new to nmap.
|
||||
|
||||
# Basics usage <a href="#usage" id="usage">#</a>
|
||||
# Basics usage
|
||||
|
||||
The **Nmap Scripting Engine (NSE)** allows you to run and share pre-made and custom scripts. Scripts are written in Lua and use the file extension `.nse`. NSE will enable you to scan and analyze any host and network in-depth and according to your needs. Automation, vulnerability scans, and many other functions are possible with the NSE.
|
||||
|
||||
|
|
@ -41,7 +41,7 @@ Example with different syntaxes:
|
|||
|
||||
**Side note**: Scanning the domain `scanme.nmap.org` is permitted in low volumes as stated on [their page](http://scanme.nmap.org/), but please do not abuse it!
|
||||
|
||||
#### Using multiple scripts <a href="#multiple-scripts" id="multiple-scripts">#</a>
|
||||
#### Using multiple scripts
|
||||
|
||||
There are various ways to use multiple scripts at once. The easiest way would be to separate them with a **comma**.
|
||||
|
||||
|
|
@ -79,7 +79,7 @@ The official syntax is:
|
|||
|
||||
If you have many arguments to run, you can call them from a file with `--script-args-file FILENAME`.
|
||||
|
||||
# Script directory <a href="#directory" id="directory">#</a>
|
||||
# Script directory
|
||||
|
||||
You usually can find the default scripts in the following directories.
|
||||
|
||||
|
|
@ -107,7 +107,7 @@ NSE will look for the script in the following places until found:
|
|||
|
||||
More complex scripts require separate data sets, databases, and other things. Those must be placed in the NSE data directory. It works similarly to the script directory but is out of this post's scope. Most scripts that require this function will let you know. I just thought it would be beneficial to mention.
|
||||
|
||||
# Custom scripts <a href="#custom-scripts" id="custom-scripts">#</a>
|
||||
# Custom scripts
|
||||
|
||||
It is straightforward to use and add custom scripts, that are either created by yourself or downloaded from the internet.
|
||||
|
||||
|
|
@ -124,7 +124,7 @@ Add the `.nse` file to the script directory and run the following command to add
|
|||
|
||||
You should now be able to run the script with the name only.
|
||||
|
||||
# Script categories <a href="#script-categories" id="script-categories">#</a>
|
||||
# Script categories
|
||||
|
||||
NSE categorizes its scripts, so you can run a bunch of them at once. The following categories are currently there:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue