Bypassing a session ID?

Ask a Question related to ASP.NET Security, Design and Development.

  1. #1

    Default Bypassing a session ID?

    Hi All,

    Example: A webpage exists that allows you to fill out a form and click
    submit. The page next page displays the information found from your search
    criteria. The form includes information like Fname, Lname, Address and Zip.
    I want to programmatically fill out the form and submit the information only
    to recieve the final search result page. The problem I am having is that the
    page uses a session ID. Is there a way to get around this?

    Thanks in advance.


    mostro Guest

  2. Similar Questions and Discussions

    1. Bypassing authentication
      I'm running a web site and implementing both folder(web.config) and class level authorization. A new requirement came in to allow an external web...
    2. bypassing XP logon
      Is there any way to bypass the domain logon screen in XP Pro if you want to use a domain workstation in desktop mode ? Like you could in 2000?
    3. Bypassing the hard disc
      Several threads in this forum deal with storing pictures on CD-roms. What I understand from computers is, that the data then first is stored on the...
    4. bypassing XP password
      John; Reboot to Safe Mode, select Administrator, leave password blank. Then go to User Accounts in Control Panel. Select the user and change the...
    5. bypassing log on box
      I have the same problem that Howie*, who posted the problem of suddenly getting a log on screen instead of smoothly going straight to the desktop. ...
  3. #2

    Default Re: Bypassing a session ID?

    mostro wrote:
    > Hi All,
    >
    > Example: A webpage exists that allows you to fill out a form and click
    > submit. The page next page displays the information found from your
    > search criteria. The form includes information like Fname, Lname,
    > Address and Zip. I want to programmatically fill out the form and
    > submit the information only to recieve the final search result page.
    > The problem I am having is that the page uses a session ID. Is there
    > a way to get around this?
    Hopefully not ;-)

    But why not obtain a session id programmatically as well?

    Cheers,

    --
    Joerg Jooss
    [url]www.joergjooss.de[/url]
    [email]news@joergjooss.de[/email]


    Joerg Jooss Guest

  4. #3

    Default Re: Bypassing a session ID?

    I guess I will have to do the research. I'm not really a programmer just
    trying to design the flow. Got any ideas?

    Thanks


    "Joerg Jooss" <joerg.jooss@gmx.net> wrote in message
    news:uRx5lXF6EHA.260@TK2MSFTNGP10.phx.gbl...
    > mostro wrote:
    >> Hi All,
    >>
    >> Example: A webpage exists that allows you to fill out a form and click
    >> submit. The page next page displays the information found from your
    >> search criteria. The form includes information like Fname, Lname,
    >> Address and Zip. I want to programmatically fill out the form and
    >> submit the information only to recieve the final search result page.
    >> The problem I am having is that the page uses a session ID. Is there
    >> a way to get around this?
    >
    > Hopefully not ;-)
    >
    > But why not obtain a session id programmatically as well?
    >
    > Cheers,
    >
    > --
    > Joerg Jooss
    > [url]www.joergjooss.de[/url]
    > [email]news@joergjooss.de[/email]
    >

    mostro Guest

  5. #4

    Default Re: Bypassing a session ID?

    mostro wrote:
    > I guess I will have to do the research. I'm not really a programmer
    > just trying to design the flow. Got any ideas?
    At the end of the day, what you're tring to design is similar to a remote
    control for the 3rd party web application. Emulate the web application's
    flow for a regular user. If there's a login page, your remote control must
    login as well. If there's no login but some kind of entry page that issues
    session ids, include that page.

    You probably should sit down with a dev and show him the flow of pages you
    want to repeat programmatically.


    Cheers,

    --
    Joerg Jooss
    [url]www.joergjooss.de[/url]
    [email]news@joergjooss.de[/email]


    Joerg Jooss Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139