The hack looks like this, I guess it's datamanagers?
Code:
$formforumid = "13";
$foruminfo = verify_id('forum', $formforumid, 0, 1);
$forumperms = fetch_permissions($foruminfo[forumid]);
$newpost['username'] =& $vbulletin->userinfo['username'];
$newpost['message'] =& $formsend;
$newpost['title'] =& $posttitle;
$newpost['parseurl'] = '1';
$newpost['poststarttime'] = $poststarttime;
$newpost['posthash'] = $posthash;
if ($vbulletin->userinfo['autosubscribe'] != -1)
{
$newpost['emailupdate'] = $vbulletin->userinfo['autosubscribe'];
}
else
{
$newpost['emailupdate'] = 9999;
}
if ($vbulletin->userinfo['signature'] != '')
{
$newpost['signature'] = '1';
}
else
{
$newpost['signature'] = '0';
}
build_new_post('thread', $foruminfo, array(), array(), $newpost, $errors);
I'll add your code into it and see what happens, thnx =)
--------------- Added [DATE]1194806172[/DATE] at [TIME]1194806172[/TIME] ---------------
hmm, just got a error:
Code:
Fatal error: Call to a member function set_info() on a non-object in /home/exiled/www/www/forum/newthread.php(71) : eval()'d code on line 377
guess I'll have to add something else as well?
--------------- Added [DATE]1194807418[/DATE] at [TIME]1194807418[/TIME] ---------------
Anyone else able to give me a suggestion? =)