1
0
mirror of https://github.com/nganhkhoa/malware.git synced 2024-06-10 21:32:07 +07:00

Update malware-tech_ref_and_memo.md

This commit is contained in:
mether049 2020-01-11 16:43:32 +09:00 committed by GitHub
parent 26e7d9ce7c
commit 09239477a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -96,13 +96,13 @@ to do...
- 難読化ツール<br>
[Invoke-Obfuscation](https://github.com/danielbohannon/Invoke-Obfuscation)
- Powershell Script内で用いられる難読化技術について
### case-insesitive
### Case-insensitive
- コマンドレッ名や変数名に大文字,小文字を混ぜる
- PowerShellでは区別されない
```
INvOke-eXpReSsiOn
```
### alias
### Alias
- コマンドのエイリアスを用いる
- エイリアスの確認方法
```
@ -119,7 +119,7 @@ sal -> Set-Alias
set-alias <Name> <Value>
sal ping iex
```
### dot expression and amp expression(Invoke-Expression)
### Dot expression and amp expression(Invoke-Expression)
- 文字列で表現されたコマンドレットを実行
```
.("get-alias")