Ask a Question related to ASP.NET Security, Design and Development.
-
buran #1
HttpWebRequest and posting login data
Dear ASP.NET Programmers,
How can I post data to an ASP.NET login page and pass authentication? The
login page uses forms
authentication, users must supply usernames and password and have to click
on a submit button. I
want to automate this process by supplying values with HttpWebRequest and
then download a file on
the site. I think that I cannot invoke the submit button. Pleeeasee help,
thanks in advance
Dim myWebReq As HttpWebRequest
Dim myWebResp As HttpWebResponse
Dim encoding As New System.Text.ASCIIEncoding()
Dim postData As String
Dim data() As Byte
Dim sr As StreamReader
Dim sw As StreamWriter
postData += "txtUsername=b"
postData += "&"
postData += "txtPassword=k"
data = encoding.GetBytes(postData)
myWebReq =
WebRequest.Create("http://burak/database/medicalDocs/F325_fittoflyreport.asp
x")
myWebReq.Method = "POST"
myWebReq.ContentType = "application/x-www-form-urlencoded"
myWebReq.ContentLength = data.Length
Dim myStream As Stream = myWebReq.GetRequestStream()
myStream.Write(data, 0, data.Length)
myStream.Close()
myWebResp = myWebReq.GetResponse
sr = New StreamReader(myWebResp.GetResponseStream)
Dim strHTML As String = sr.ReadToEnd
sw = File.CreateText("d:\Downloads\1.htm")
sw.WriteLine(strHTML)
sw.Close()
Response.WriteFile("d:\Downloads\1.htm")
buran Guest
-
HELP: No POST data found from a ASPX Script HTTPWebRequest into a PHP Page
We are working with a vendor who is trying to post some some XML data to us. They are using an ASPX script to post to a PHP page of ours. The... -
Posting data from MySQL?
If you had gone to alt.php.sql first you could have found the answer without posting. There's a standard way of doing things over there which goes... -
Help: Posting data from MySQL?
rob@exau.com wrote: I'm not sure what you want, but let's see. As you have a <tr> statement that opens up each time you enter the loop, you... -
posting data from a web form to other one.
Hi, I have a frameset and two aspx page. How can post data from one web form to other one. Thanks -
HttpWebRequest is not posting
Hi All, I have an HttpWebRequest object that is supposed to post data to a web page. The server is receiving the data, and I am getting an OK... -
John Saunders #2
Re: HttpWebRequest and posting login data
"buran" <buran@buran.com> wrote in message
news:OJag06GfDHA.1872@TK2MSFTNGP09.phx.gbl...I could swear I answered this question before...> Dear ASP.NET Programmers,
>
> How can I post data to an ASP.NET login page and pass authentication? The
> login page uses forms
> authentication, users must supply usernames and password and have to click
> on a submit button. I
> want to automate this process by supplying values with HttpWebRequest and
> then download a file on
> the site. I think that I cannot invoke the submit button. Pleeeasee help,
> thanks in advance
You are attempting to substitute code for a browser. Your code will have to
do what the browser would have done:
1) Browser attempts to reach a protected page, for instance, protected.aspx
2) Forms Authentication sees that the request does not include a Forms
Authentication Ticket in the proper cookie, so the server replies with a
"302 Page Moved" status, and a Location header pointing to the login page.
3) The browser requests the login page specified.
4) The server responds with the login page
5) The user fills in the login page and submits the form, so the browser
POSTs the form back to the login page
6) If the credentials are valid, the server responds with another "302 Page
Moved" status, a Location header pointing to protected.aspx, and a
Set-Cookie header providing the encrypted Forms Authentication Ticket.
7) The browser then requests protected.aspx, but this time supplies the
Forms Authentication Ticket in a Cookie header
8) Forms Authentication sees that the request includes a valid Forms
Authentication Ticket, so it permits the access. The server responds with
the protected page.
This is what your code will need to duplicate.
--
John Saunders
Internet Engineer
[email]john.saunders@surfcontrol.com[/email]
John Saunders Guest
-
buran #3
Re: HttpWebRequest and posting login data
I am using following code but for no good. Maybe you can help me on this...
On the logindeneme.aspx page
Private Sub btnValidate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnValidate.Click
If FormsAuthentication.Authenticate(txtUsername.Text,
txtPassword.Text) Then
Dim tkt As FormsAuthenticationTicket
Dim cookiestr As String
Dim ck As HttpCookie
tkt = New FormsAuthenticationTicket(txtUsername.Text, False,
120)
cookiestr = FormsAuthentication.Encrypt(tkt)
Session.Add("c", cookiestr)
ck = New HttpCookie(FormsAuthentication.FormsCookieName(),
cookiestr)
Response.Cookies.Add(ck)
Dim strRedirect As String
strRedirect = Request("ReturnURL")
If strRedirect <> "" Then
Response.Redirect(strRedirect, True)
Else
strRedirect = "logindeneme.aspx"
Response.Redirect(strRedirect, True)
End If
Else
lblMessage.Text = "Invalid username/password"
End If
End Sub
and then in the page where I am requesting the page to be downloaded..
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim myWebReq As HttpWebRequest
Dim myWebResp As HttpWebResponse
Dim strHTML As String
Dim c As New Cookie()
Dim sr As StreamReader
Dim sw As StreamWriter
Dim cc As New CookieContainer()
myWebReq = WebRequest.Create("http://burak/LoginDeneme/secret.aspx")
c.Name = FormsAuthentication.FormsCookieName()
c.Value = Session("c")
c.Domain = "http://burak/LoginDeneme"
cc.Add(c)
myWebReq.CookieContainer = cc
myWebResp = myWebReq.GetResponse
sr = New StreamReader(myWebResp.GetResponseStream)
strHTML = sr.ReadToEnd
sw = File.CreateText("d:\Downloads\1.htm")
sw.WriteLine(strHTML)
sw.Close()
Response.WriteFile("d:\Downloads\1.htm")
End Sub
What am I missing? Thank you very much for your help..
buran
"John Saunders" <john.saunders@surfcontrol.com> wrote in message
news:esQrrFHfDHA.392@TK2MSFTNGP12.phx.gbl...The> "buran" <buran@buran.com> wrote in message
> news:OJag06GfDHA.1872@TK2MSFTNGP09.phx.gbl...> > Dear ASP.NET Programmers,
> >
> > How can I post data to an ASP.NET login page and pass authentication?click> > login page uses forms
> > authentication, users must supply usernames and password and have toand> > on a submit button. I
> > want to automate this process by supplying values with HttpWebRequesthelp,> > then download a file on
> > the site. I think that I cannot invoke the submit button. Pleeeaseeto>> > thanks in advance
> I could swear I answered this question before...
>
> You are attempting to substitute code for a browser. Your code will haveprotected.aspx> do what the browser would have done:
>
> 1) Browser attempts to reach a protected page, for instance,Page> 2) Forms Authentication sees that the request does not include a Forms
> Authentication Ticket in the proper cookie, so the server replies with a
> "302 Page Moved" status, and a Location header pointing to the login page.
> 3) The browser requests the login page specified.
> 4) The server responds with the login page
> 5) The user fills in the login page and submits the form, so the browser
> POSTs the form back to the login page
> 6) If the credentials are valid, the server responds with another "302> Moved" status, a Location header pointing to protected.aspx, and a
> Set-Cookie header providing the encrypted Forms Authentication Ticket.
> 7) The browser then requests protected.aspx, but this time supplies the
> Forms Authentication Ticket in a Cookie header
> 8) Forms Authentication sees that the request includes a valid Forms
> Authentication Ticket, so it permits the access. The server responds with
> the protected page.
>
> This is what your code will need to duplicate.
> --
> John Saunders
> Internet Engineer
> [email]john.saunders@surfcontrol.com[/email]
>
>
buran Guest
-
buran #4
Re: HttpWebRequest and posting login data
I am using following code but for no good. Maybe you can help me on this...
On the logindeneme.aspx page
Private Sub btnValidate_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles btnValidate.Click
If FormsAuthentication.Authenticate(txtUsername.Text,
txtPassword.Text) Then
Dim tkt As FormsAuthenticationTicket
Dim cookiestr As String
Dim ck As HttpCookie
tkt = New FormsAuthenticationTicket(txtUsername.Text, False,
120)
cookiestr = FormsAuthentication.Encrypt(tkt)
Session.Add("c", cookiestr)
ck = New HttpCookie(FormsAuthentication.FormsCookieName(),
cookiestr)
Response.Cookies.Add(ck)
Dim strRedirect As String
strRedirect = Request("ReturnURL")
If strRedirect <> "" Then
Response.Redirect(strRedirect, True)
Else
strRedirect = "logindeneme.aspx"
Response.Redirect(strRedirect, True)
End If
Else
lblMessage.Text = "Invalid username/password"
End If
End Sub
and then in the page where I am requesting the page to be downloaded..
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Button1.Click
Dim myWebReq As HttpWebRequest
Dim myWebResp As HttpWebResponse
Dim strHTML As String
Dim c As New Cookie()
Dim sr As StreamReader
Dim sw As StreamWriter
Dim cc As New CookieContainer()
myWebReq = WebRequest.Create("http://burak/LoginDeneme/secret.aspx")
c.Name = FormsAuthentication.FormsCookieName()
c.Value = Session("c")
c.Domain = "http://burak/LoginDeneme"
cc.Add(c)
myWebReq.CookieContainer = cc
myWebResp = myWebReq.GetResponse
sr = New StreamReader(myWebResp.GetResponseStream)
strHTML = sr.ReadToEnd
sw = File.CreateText("d:\Downloads\1.htm")
sw.WriteLine(strHTML)
sw.Close()
Response.WriteFile("d:\Downloads\1.htm")
End Sub
What am I missing? Thank you very much for your help..
buran
"John Saunders" <john.saunders@surfcontrol.com> wrote in message
news:esQrrFHfDHA.392@TK2MSFTNGP12.phx.gbl...The> "buran" <buran@buran.com> wrote in message
> news:OJag06GfDHA.1872@TK2MSFTNGP09.phx.gbl...> > Dear ASP.NET Programmers,
> >
> > How can I post data to an ASP.NET login page and pass authentication?click> > login page uses forms
> > authentication, users must supply usernames and password and have toand> > on a submit button. I
> > want to automate this process by supplying values with HttpWebRequesthelp,> > then download a file on
> > the site. I think that I cannot invoke the submit button. Pleeeaseeto>> > thanks in advance
> I could swear I answered this question before...
>
> You are attempting to substitute code for a browser. Your code will haveprotected.aspx> do what the browser would have done:
>
> 1) Browser attempts to reach a protected page, for instance,Page> 2) Forms Authentication sees that the request does not include a Forms
> Authentication Ticket in the proper cookie, so the server replies with a
> "302 Page Moved" status, and a Location header pointing to the login page.
> 3) The browser requests the login page specified.
> 4) The server responds with the login page
> 5) The user fills in the login page and submits the form, so the browser
> POSTs the form back to the login page
> 6) If the credentials are valid, the server responds with another "302> Moved" status, a Location header pointing to protected.aspx, and a
> Set-Cookie header providing the encrypted Forms Authentication Ticket.
> 7) The browser then requests protected.aspx, but this time supplies the
> Forms Authentication Ticket in a Cookie header
> 8) Forms Authentication sees that the request includes a valid Forms
> Authentication Ticket, so it permits the access. The server responds with
> the protected page.
>
> This is what your code will need to duplicate.
> --
> John Saunders
> Internet Engineer
> [email]john.saunders@surfcontrol.com[/email]
>
>
buran Guest
-
John Saunders #5
Re: HttpWebRequest and posting login data
"buran" <buran@buran.com> wrote in message
news:e7m0CYTfDHA.2576@TK2MSFTNGP11.phx.gbl...this...> I am using following code but for no good. Maybe you can help me on
Please tell us what you mean when you say "but for no good". What is the
specific problem? Perhaps an exception is thrown? Perhaps there is a
timeout? Please be more specific.
....WebRequest.Create("http://burak/LoginDeneme/secret.aspx")> and then in the page where I am requesting the page to be downloaded..
>
> Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> System.EventArgs) Handles Button1.Click
> myWebReq =[url]http://burak/LoginDeneme[/url] is not a domain. "burak" is a domain. Please try> c.Name = FormsAuthentication.FormsCookieName()
> c.Value = Session("c")
> c.Domain = "http://burak/LoginDeneme"
> cc.Add(c)
that, and if it doesn't work, let us know in detail what the result is.
--
John Saunders
Internet Engineer
[email]john.saunders@surfcontrol.com[/email]
John Saunders Guest
-
buran #6
Re: HttpWebRequest and posting login data
"John Saunders" <john.saunders@surfcontrol.com> wrote in message
news:O16mNdTfDHA.3228@tk2msftngp13.phx.gbl...Ok you're right. I am getting the login page> "buran" <buran@buran.com> wrote in message
> news:e7m0CYTfDHA.2576@TK2MSFTNGP11.phx.gbl...> this...> > I am using following code but for no good. Maybe you can help me on
>
> Please tell us what you mean when you say "but for no good". What is the
> specific problem? Perhaps an exception is thrown? Perhaps there is a
> timeout? Please be more specific.
>
([url]http://burak/LoginDeneme/LoginDeneme.aspx[/url]) on the browser instead of the
the [url]http://burak/LoginDeneme/al.aspx[/url].
So the code writes the contents of the login page to the disk
(d:\Downloads\1.htm). It cannot pass the authentication.
Yeesss, changing to c.Domain = "burak" worked. Thank you very very much..
:))
> ...> WebRequest.Create("http://burak/LoginDeneme/secret.aspx")> > and then in the page where I am requesting the page to be downloaded..
> >
> > Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
> > System.EventArgs) Handles Button1.Click
> > myWebReq =>> > c.Name = FormsAuthentication.FormsCookieName()
> > c.Value = Session("c")
> > c.Domain = "http://burak/LoginDeneme"
> > cc.Add(c)
> [url]http://burak/LoginDeneme[/url] is not a domain. "burak" is a domain. Please try
> that, and if it doesn't work, let us know in detail what the result is.> --
> John Saunders
> Internet Engineer
> [email]john.saunders@surfcontrol.com[/email]
>
>
buran Guest
-
Jim J #7
Re: HttpWebRequest and posting login data
"John Saunders" <john.saunders@surfcontrol.com> wrote in message news:<esQrrFHfDHA.392@TK2MSFTNGP12.phx.gbl>...
Okay, I understand the steps.... but I have been unable to perform> "buran" <buran@buran.com> wrote in message
> news:OJag06GfDHA.1872@TK2MSFTNGP09.phx.gbl...> I could swear I answered this question before...>>
>
> You are attempting to substitute code for a browser. Your code will have to
> do what the browser would have done:
>
> 1) Browser attempts to reach a protected page, for instance, protected.aspx
> 2) Forms Authentication sees that the request does not include a Forms
> Authentication Ticket in the proper cookie, so the server replies with a
> "302 Page Moved" status, and a Location header pointing to the login page.
> 3) The browser requests the login page specified.
> 4) The server responds with the login page
> 5) The user fills in the login page and submits the form, so the browser
> POSTs the form back to the login page
> 6) If the credentials are valid, the server responds with another "302 Page
> Moved" status, a Location header pointing to protected.aspx, and a
> Set-Cookie header providing the encrypted Forms Authentication Ticket.
> 7) The browser then requests protected.aspx, but this time supplies the
> Forms Authentication Ticket in a Cookie header
> 8) Forms Authentication sees that the request includes a valid Forms
> Authentication Ticket, so it permits the access. The server responds with
> the protected page.
>
> This is what your code will need to duplicate.
them.
When I try to post my userid and password to my login.aspx page, I
keep getting the html for the login page back. I assume that this is
because I do nto successfully login. There are only 3 fields on the
login page __viewstate, userid, and password. The login screen is
using "forms" authentication.
I have scoured the web looking for a simple example of this type of
login, but have not been successful.
Once logged in, I realize that I need to grab the auth cookie and use
it on future requests of pages.
I am really surprised that I can not find an example of this. Is it so
simple that everyone else is able to do it without problems.... or am
I missing something.
Please help.
Thanks.
Jim J Guest
-
John Saunders #8
Re: HttpWebRequest and posting login data
"Jim J" <download9096@hotmail.com> wrote in message
news:a0ea5ad3.0310102349.2d496a90@posting.google.c om...news:<esQrrFHfDHA.392@TK2MSFTNGP12.phx.gbl>...> "John Saunders" <john.saunders@surfcontrol.com> wrote in messageto> > "buran" <buran@buran.com> wrote in message
> > news:OJag06GfDHA.1872@TK2MSFTNGP09.phx.gbl...> > I could swear I answered this question before...> >>
> >
> > You are attempting to substitute code for a browser. Your code will haveprotected.aspx> > do what the browser would have done:
> >
> > 1) Browser attempts to reach a protected page, for instance,page.> > 2) Forms Authentication sees that the request does not include a Forms
> > Authentication Ticket in the proper cookie, so the server replies with a
> > "302 Page Moved" status, and a Location header pointing to the loginPage> > 3) The browser requests the login page specified.
> > 4) The server responds with the login page
> > 5) The user fills in the login page and submits the form, so the browser
> > POSTs the form back to the login page
> > 6) If the credentials are valid, the server responds with another "302with> > Moved" status, a Location header pointing to protected.aspx, and a
> > Set-Cookie header providing the encrypted Forms Authentication Ticket.
> > 7) The browser then requests protected.aspx, but this time supplies the
> > Forms Authentication Ticket in a Cookie header
> > 8) Forms Authentication sees that the request includes a valid Forms
> > Authentication Ticket, so it permits the access. The server respondsJim, you know what they say about assumptions...>> > the protected page.
> >
> > This is what your code will need to duplicate.
> Okay, I understand the steps.... but I have been unable to perform
> them.
>
> When I try to post my userid and password to my login.aspx page, I
> keep getting the html for the login page back. I assume that this is
> because I do nto successfully login.
What happens if you assume that your assumption is incorrect, since that
seems to be the case?
--
John Saunders
Internet Engineer
[email]john.saunders@surfcontrol.com[/email]
John Saunders Guest



Reply With Quote

