vote up 0 vote down star

Hi! I am admin on a forum. Earlier we had phpbb 2.0 and i made a bot that could write to the forum. Now, we have upgraded the forum to phpbb 3.0, but i can't get my bot to write to the forum anymore.

I have looked for a solution, but now i am out of ideas. So it would have been great if anyone have a suggestion.

i have btw used CURL and php to make this bot.

Usage of bot: Users log in on an external website to report results of footballmatches they have played online. The bot will then automatically write a post to the forum.

So basically i need to know what $_POST[] i need to send.

flag

50% accept rate

5 Answers

vote up 0 vote down

Thanks ZombieSheep, i'll try that :)

link|flag
vote up 1 vote down

If you're using Firefox, you can use Firebug to see what's being generated with the form, and also live http headers to see what actually gets sent back.

The HTTP headers would probably be the best way to go as it'll include cookie headers too, and you might find that phpbb 3 is checking for a user session before allowing a user to post.

If you know your way around PHP as well, you could just look through the source and see what validation it's performing (or use a step through debugger).

link|flag
vote up 0 vote down

I have done that.

I used these:

message => testeteste mode => reply t => 5443 f => 9 post => ok 'topic_cur_post_id' => '106199' 'subject' => 'test' 'lastclick' => '1224970850' 'form_token' => '5dfedc3f2b94171458945ad5d4b6c7fed31dbd25', 'creation_time' => '1224972886' 'icon' => '0' 'topic_cur_post_id' => '111027'

And the url is: http://websiteurl/forum/posting.php?sid=65c3331978867876876da

I just don't understand what i'm doing wrong :(

The errormessage from our forum: " The submitted form was invalid. Try submitting again."

link|flag
To me, form_token looks like it was designed to stop bots from posting. – Greg Oct 29 '08 at 16:44
form_token is probably generate on every form and store in the db. That means you'll probably have to modify the source code to allow your bot to post. But be careful to make sure you don't allow every bot. – ehogue Oct 29 '08 at 17:01
vote up 1 vote down

Or get hold of a good http packet analyser (e.g. Fiddler on Windows) and look at what your browser sends when you manually post.

I agree with Toytown Mafia, though, Looking at the sending or receiving page's source should be simple enough.

link|flag
vote up 4 vote down

I would advise looking at the source code of the 'add post' form on the site. Check the HTML; you will need to emulate each input or select element, as these are the POST values that are submitted via the form.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.