add forensics

This commit is contained in:
2021-12-02 22:01:31 +01:00
parent f1db6a288e
commit b3014e4977
6 changed files with 346 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
#!/bin/bash
list=(
10.0.2.15
127.0.0.1
65.55.44.109
147.182.172.189
172.67.177.22
204.79.197.203
212.205.126.106
93.184.220.29
95.100.210.141
)
for ip in ${list[@]}; do
echo Generating Flag from $ip:
echo "HTB{echo -n "https://windowsliveupdater.com/update.ps1_2700_$ip"|md5sum}"
echo "HTB{$(echo -n "https://windowsliveupdater.com/update.ps1_2700_$ip"|md5sum)}"
done