forked from swisskyrepo/PayloadsAllTheThings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Misc & Tricks Page + AMSI + Defender
- Loading branch information
1 parent
8165594
commit c173104
Showing
3 changed files
with
81 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Miscellaneous & Tricks | ||
|
||
All the tricks that couldn't be classified somewhere else. | ||
|
||
## Send a message to another user | ||
|
||
```powershell | ||
# Windows | ||
PS C:\> msg Swissky /SERVER:CRASHLAB "Stop rebooting the XXXX service !" | ||
PS C:\> msg * /V /W /SERVER:CRASHLAB "Hello all !" | ||
# Linux | ||
$ wall "Stop messing with the XXX service !" | ||
$ wall -n "System will go down for 2 hours maintenance at 13:00 PM" # "-n" only for root | ||
$ who | ||
$ write root pts/2 # press Ctrl+D after typing the message. | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters