7 lines
94 B
Bash
7 lines
94 B
Bash
|
|
#!/bin/bash
|
||
|
|
nmap_full ()
|
||
|
|
{
|
||
|
|
sudo nmap --scanflags URGACKPSHRSTSYNFIN $@
|
||
|
|
}
|
||
|
|
nmap_full "$@"
|