add typing

This commit is contained in:
aaron
2021-12-04 04:45:58 +01:00
parent 076a5fe8d4
commit 5d93a845ce
3 changed files with 78 additions and 9 deletions

View File

@@ -9,17 +9,23 @@ list=(
)
pids=(
1556 # explorer
2460 # SearchFilterHo
2856 # explorer
3324 # iexplorer
3344 # iexplorer
# 2700 # powershell
# 1556 # explorer
# 2460 # SearchFilterHo
# 2856 # explorer
# 3324 # iexplorer
# 3344 # iexplorer
3720 # ppid of powershell
)
echo "HTB{echo -n "http://url.com/path.foo_PID_127.0.0.1" | md5sum}"
for ip in ${list[@]}; do
for pid in ${pids[@]}; do
echo Generating Flag for $ip and $pid:
echo
echo "HTB{echo -n "https://windowsliveupdater.com/update.ps1_"$pid"_"$ip""|md5sum}"
echo "HTB{$(echo -n "https://windowsliveupdater.com/update.ps1_"$pid"_"$ip""|md5sum)}"
echo "HTB{$(echo -n "http://windowsliveupdater.com/update.ps1_"$pid"_"$ip""|md5sum)}"
echo
done
done