mirror of
https://github.com/hackerschoice/thc-tips-tricks-hacks-cheat-sheet.git
synced 2026-05-24 08:24:13 +02:00
Update README.md
This commit is contained in:
@@ -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 &
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user