Bot to Post to phpbb forums (need help)

Status
Not open for further replies.

DejaVu

Active Member
1,337
2011
631
11,400
Hi, did anyone had problem coding a bot to post on phpbb forums and failed ? (version used in porn-w.org)

i call the topic url (reply url) like this

Code:
http://www.example.com/posting .php?mode=reply&f=13&t=6995990

i parse info

Code:
 Request1.AddFormField('subject',subject);
    Request1.AddFormField('addbbcode20','100');
    Request1.AddFormField('message',form1.sMemo1.Text);
    Request1.AddFormField('topic_cur_post_id',topic_cur_post_id);
    Request1.AddFormField('lastclick',lastclick);
    Request1.AddFormField('post','Submit');
    Request1.AddFormField('attach_sig','on');
    Request1.AddFormField('creation_time',creation_time);
    Request1.AddFormField('form_token',form_token);

posting data to
Code:
http://www.example.com[COLOR=#1A1AA6][FONT=monospace]/posting .php?mode=reply&f=13&sid=2test4545459e63ee971541396981x99&t=6699990[/FONT][/COLOR]


and i post reply without a problem shown in page source but the reply is not posted

i use delphi language but any help with any language it gonna help a lot

i hope you guys can help me

thank you !
 
Last edited:
2 comments
Hi, did anyone had problem coding a bot to post on phpbb forums and failed ? (version used in porn-w.org)

i call the topic url (reply url) like this

Code:
http://www.example.com/posting .php?mode=reply&f=13&t=6995990

i parse info

Code:
 Request1.AddFormField('subject',subject);
    Request1.AddFormField('addbbcode20','100');
    Request1.AddFormField('message',form1.sMemo1.Text);
    Request1.AddFormField('topic_cur_post_id',topic_cur_post_id);
    Request1.AddFormField('lastclick',lastclick);
    Request1.AddFormField('post','Submit');
    Request1.AddFormField('attach_sig','on');
    Request1.AddFormField('creation_time',creation_time);
    Request1.AddFormField('form_token',form_token);

posting data to
Code:
http://www.example.com[COLOR=#1A1AA6][FONT=monospace]/posting .php?mode=reply&f=13&sid=2test4545459e63ee971541396981x99&t=6699990[/FONT][/COLOR]


and i post reply without a problem shown in page source but the reply is not posted

i use delphi language but any help with any language it gonna help a lot

i hope you guys can help me

thank you !

It'll prob be easier to do this in PHP/VB.NET, doing this in Delphi would be more of a pain because you'd have to rely solely on WinAPI. Even if you wanted to make it multi-threaded, you'd do it in C.

Output what error you're getting and maybe I could help you. Can't give you a fix without telling me what error you're getting. Output it and tell me what you're seeing!

If i recall, phpBB requires' some session fixing...
 
i dont get any error (reply posted successfully and redirected to the topic url but unfortunately the reply is not posted)

i dont need winapi i already have the code for vBulletin forums
so need only to change url and post data values

i can only use delphi (already finished my program and its multi threaded) and if there is some example in php or .net it will be great

thank you for your attention

__________________
Added after 1 Day 8 Hours:

tested other forum section and it worked }:-)
 
Last edited:
Status
Not open for further replies.
Back
Top