Test : http://ahkscript.org/boards/viewtopic.php?f=17&t=6065
Commit : https://github.com/ahkscript/phpBB_v3.0 ... e4701eb3a9
Exploit fix : Backslashes were not being escaped.
http://stackoverflow.com/a/3615890/883015
Exploit fix : Backslashes were not being escaped.
http://stackoverflow.com/a/3615890/883015
Same here, that's why I asked whether it can be disabled by the user. One update when logging in is sufficient for me. I don't need any automatical updates afterwards.jNizM wrote:Everywhere Loading
Code: Select all
var NotifsServerSide_JSON = '[{\"ti\":\"6089\",\"tlpt\":\"Jan 24 2015 07:52 PM\",\"tt\":\"[solved] "if var is upper" doesn't seem to work\",\"tlpn\":\"Benny-D\",\"tlpi\":\"35848\",\"tlpc\":\"\"},{\"ti\":\"6042\",\"tlpt\":\"Jan 24 2015 07:44 PM\",\"tt\":\"ImageList from HBITMAP\",\"tlpn\":\"cyruz\",\"tlpi\":\"35844\",\"tlpc\":\"\"}]';
Code: Select all
+ $escapers = array("'","'");
+ $replacements = array("\'",'\"');
I thought so too, but apprently json_encode() isnt working correctly ...lexikos wrote:Isn't it completely unnecessary to escape "? I suppose either way is fine.