BugTraq
Back to list
|
Post reply
Re: Invision Community Blog Mod 1.2.4 .PHP SQL Injection Vulnerability
Dec 01 2006 06:10AM
emin hasanov com
Thanks for sharing!
Quick fix is to edit file forum/modules/blog/lib/entry_reply_entry.php
and change the following code (line 52 for me)
'where' => "entry_id = {$this->ipsclass->input['eid']}"
to
'where' => "entry_id = '".intval($this->ipsclass->input['eid'])."'"
[ reply ]
Privacy Statement
Copyright 2010, SecurityFocus
Quick fix is to edit file forum/modules/blog/lib/entry_reply_entry.php
and change the following code (line 52 for me)
'where' => "entry_id = {$this->ipsclass->input['eid']}"
to
'where' => "entry_id = '".intval($this->ipsclass->input['eid'])."'"
[ reply ]