Results 1 to 6 of 6

Thread: Web URL

  1. #1

    Thread Starter
    Hyperactive Member Emo's Avatar
    Join Date
    Jul 2000
    Posts
    428

    Unhappy

    Hey,
    If i want to go here http://email.37.com and I hate to write my username every time I go, can I write something in the URL so it will be already filled for me? I've seen this before and it looked something like http://email.37.com?username=xxxx or something like that.
    Thanks for any suggestions!
    -Emo

    P.S. If you are going to tell me about the program Gator, I already know. It's just that I don't want to use it only for one thing...
    -=VB6 Enterprise Edition=-
    -=VC++6Enterprise Edition=-
    «¤E³m°O²™¤»

  2. #2
    Guest
    You could try, but it would kind of depend on how they handle the form.

    By looking at the source you can see that the login info is called 'username' and 'password' and is submitted by form to http://mail.bigmailbox.com/users/37com/enter.cgi

    You could try dummying up a URL based on this that might look like:

    http://mail.bigmailbox.com/users/37c...URPASSWORDHERE

    ...and see if it works.

    Paul

    PS - I don't think it'll work because their form METHOD="POST" - which means that stuff from the form is passed, not stuff tacked on to the end of the URL.


    [Edited by PWNettle on 11-21-2000 at 06:03 PM]

  3. #3

    Thread Starter
    Hyperactive Member Emo's Avatar
    Join Date
    Jul 2000
    Posts
    428

    Thumbs down

    yeah, you're right! it says that i need to enter my username and password first!

    Thanks for the suggestion!
    -Emo
    -=VB6 Enterprise Edition=-
    -=VC++6Enterprise Edition=-
    «¤E³m°O²™¤»

  4. #4
    Guest

    Thumbs up You still could try

    making your own with method=post and the "text" already filled in and mix it with "clicking a url automatically invokes the submit button".

    But as PWNettle said, "depend on how they handle the form"; because they could have hidden fields (which you should be able to get from their html source)--not too bad, or cookies--can be bad.

    I got stopped from my "automation" method with another site that used cookies. I couldn't decipher the http protocol documentation in order to submit/accept cookies in the manner the site needed.

  5. #5
    Member Benjamin's Avatar
    Join Date
    Nov 2000
    Posts
    48
    Yep.. it's really easy... try this


    Code:
    <HTML>
    <BODY>
    <FORM ACTION="http://mail.bigmailbox.com/users/37com/enter.cgi" METHOD="post">
    
    <input type=text name=un value="yourusername">
    <input type=password name=pw value="yourpassword">
    <input type="submit">
    </form>
    </BODY>
    </HTML>
    -Dennis
    [email protected]
    Ever stop to think, and forget to start again?


    The end justifies the means
    http://www.cfm-resources.com/d/dewrenn
    http://www.phpsquare.com

  6. #6
    Conquistador
    Join Date
    Dec 1999
    Location
    Australia
    Posts
    4,527
    Even easier
    Code:
    <HTML>
    <BODY>
    <FORM ACTION="http://mail.bigmailbox.com/users/37com/enter.cgi" METHOD="post" name="hello">
    <input type=text name=un value="yourusername">
    <input type=password name=pw value="yourpassword">
    <input type="submit">
    </form>
    <script language="javascript">
    document.hello.submit()
    </script>
    </BODY>
    </HTML>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width