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:
parent
e72d81a9b3
commit
31b7c28b5a
@ -408,6 +408,31 @@ New-Object System.IO.Compression.DeflateStream([iO.mEmoRySTream] [sysTEM.ConVert
|
||||
- HKLM\Software\Microsoft\Windows\CurrentVersion\RunOnceEx
|
||||
- HKLM\Software\Microsoft\Windows\CurrentVersion\Explorer\SharedTaskScheduler
|
||||
```
|
||||
# Gathering Information
|
||||
## Public IP address
|
||||
- HTTP経由
|
||||
- webサービスを利用してコンピュータのPublic IP addressを確認する
|
||||
- サービス一覧とcurlコマンド例
|
||||
```
|
||||
curl http://httpbin.org/ip
|
||||
curl http://ifconfig.me
|
||||
curl http://whatismyip.akamai.com
|
||||
curl http://icanhazip.com
|
||||
curl http://ident.me
|
||||
curl http://v6.ident.me # IPv6
|
||||
curl http://checkip.amazonaws.com/
|
||||
curl http://wgetip.com/
|
||||
curl http://wtfismyip.com/text
|
||||
```
|
||||
- DNS経由
|
||||
- dnsサービスでコンピュータのPublic IP addressを確認する
|
||||
- [opendnsがUrsnifで用いられていた](https://unit42.paloaltonetworks.jp/wireshark-tutorial-examining-ursnif-infections/)
|
||||
- サービス一覧とdigコマンドでの例
|
||||
```
|
||||
dig myip.opendns.com @resolver1.opendns.com
|
||||
dig -t txt o-o.myaddr.l.google.com @8.8.8.8 # TXT record
|
||||
dig whoami.akamai.net @ns1-1.akamaitech.net
|
||||
```
|
||||
|
||||
# Shell Backdoor
|
||||
- Web Shell等
|
||||
|
Loading…
Reference in New Issue
Block a user