how to automate login on phpBB

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • laredotornado@zipmail.com

    #1

    how to automate login on phpBB

    Hi,

    I recently downloaded a copy of the popular message board software,
    phpBB (http://www.phpbb.com/). I'm trying to create a script that
    will auto login a user to their admin section, after creating my admin
    username and password (admin/admin123). However, I'm not able to do
    it.

    I tried creating a page with the following:

    <html>
    <head></head>
    <body onLoad="documen t.forms[0].submit();">
    <form name="f" action="login.p hp" method="post">
    <input type="hidden" name="username" id="username"
    value="admin">
    <input type="hidden" name="password" id="password"
    value="admin123 ">
    <input type="hidden" name="redirect" value="" />
    </form>
    </body>
    </html>

    Does anyone know how this can be done with this particular software?

    - Dave

  • Jerry Stuckle

    #2
    Re: how to automate login on phpBB

    laredotornado@z ipmail.com wrote:
    Hi,
    >
    I recently downloaded a copy of the popular message board software,
    phpBB (http://www.phpbb.com/). I'm trying to create a script that
    will auto login a user to their admin section, after creating my admin
    username and password (admin/admin123). However, I'm not able to do
    it.
    >
    I tried creating a page with the following:
    >
    <html>
    <head></head>
    <body onLoad="documen t.forms[0].submit();">
    <form name="f" action="login.p hp" method="post">
    <input type="hidden" name="username" id="username"
    value="admin">
    <input type="hidden" name="password" id="password"
    value="admin123 ">
    <input type="hidden" name="redirect" value="" />
    </form>
    </body>
    </html>
    >
    Does anyone know how this can be done with this particular software?
    >
    - Dave
    >
    Dave,

    I'd suggest you check the PhPBB forums. There are lots of knowledgeable
    people there.

    --
    =============== ===
    Remove the "x" from my email address
    Jerry Stuckle
    JDS Computer Training Corp.
    jstucklex@attgl obal.net
    =============== ===

    Comment

    Working...