Misc & Tricks Page + AMSI + Defender

This commit is contained in:
Swissky
2020-05-16 13:22:55 +02:00
parent 81655945f9
commit c1731041b5
3 changed files with 81 additions and 3 deletions

View File

@@ -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.
```