Update README.md

This commit is contained in:
SkyperTHC
2022-09-03 08:10:13 +01:00
committed by GitHub
parent 7566aa04a7
commit 57869da7d1
+6 -3
View File
@@ -98,9 +98,12 @@ $ id
<a id="hyc-anchor"></a>
**1.ii. Hide your command**
```sh
(exec -a syslogd nmap -T0 10.0.2.1/24") # Note the '(' brackets ')'
# or starting as a background process:
```shell
(exec -a syslogd nmap -T0 10.0.2.1/24") # Note the brackets '(' and ')'
```
Starting a background hidden process:
```
exec -a syslogd nmap -T0 10.0.2.1/24 &>nmap.log &
```