eSpeak NG is an open source speech synthesizer that supports more than hundred languages and accents.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

external-entity.ssml 373B

123456789101112
  1. <?xml version="1.0"?>
  2. <!-- SSML version of the “XML External Entity” attack
  3. https://en.wikipedia.org/wiki/XML_external_entity_attack
  4. -->
  5. <!DOCTYPE test [
  6. <!ENTITY xxeattack SYSTEM "file:///etc/passwd">
  7. ]>
  8. <speak version="1.1" xmlns="http://www.w3.org/2001/10/synthesis"
  9. xml:lang="en-US">
  10. <p>Here are the passwords:</p>
  11. <p>&xxeattack;</p>
  12. </speak>