I Cant Do it .. i used alot of codes i Get Bored !!
Website Work By Cookie to track You ..
i wanna Set Expire Data ( Nw ) Or Value or something Make Cookie Cant Trace Me .. Every Connection
Here is My Code
PHP Code:
Dim postData As String = "POSTDATA=sauce=&avatarname=" & TargetAvatar & "&" & "password=" & thPw & "&password_strength=strong&sendto="
Dim tempCookies As New CookieContainer
Dim encoding As New UTF8Encoding
Dim byteData As Byte() = encoding.GetBytes(postData)
Dim postReq As HttpWebRequest = DirectCast(WebRequest.Create(MainLoginPage), HttpWebRequest)
postReq.Method = "POST"
postReq.KeepAlive = True
postReq.CookieContainer = tempCookies
postReq.ContentType = "application/x-www-form-urlencoded"
postReq.Referer = ReferPage
postReq.UserAgent = TextBox1.Text
'postReq.KeepAlive = True
' postReq.AllowAutoRedirect = True
postReq.ContentLength = byteData.Length
Dim postreqstream As Stream = postReq.GetRequestStream()
postreqstream.Write(byteData, 0, byteData.Length)
postreqstream.Close()
Dim postresponse As HttpWebResponse
postresponse = DirectCast(postReq.GetResponse(), HttpWebResponse)
tempCookies.Add(postresponse.Cookies)
logincookie = tempCookies
' postresponse.Close()
Dim postreqreader As New StreamReader(postresponse.GetResponseStream())
Dim thepage As String = postreqreader.ReadToEnd
' postreqreader.Close()






