Recent content by Free6

  1. F

    Getting error "Invalid CSRF" when trying HttpWebRequest Post data

    I managed to upload the fiddler session archive into Google Drive, this is the link ( drive(DOT)google(DOT)com/file/d/1URCMkid6OjOJO_bS6REkXgGyttlLHnt2/view?usp=sharing ) please change (DOT) to . The fiddler session archive contents the whole process from login, filling the form, submitting...
  2. F

    Getting error "Invalid CSRF" when trying HttpWebRequest Post data

    I checked and double checked, there's only one CSRF Token; I checked it the whole days. Can you please help me out?
  3. F

    Getting error "Invalid CSRF" when trying HttpWebRequest Post data

    Hi guys, have been struggling for more than 2 weeks now to solve this issue. Can you please help me out? I'm trying to post data and i'm getting {"status":403,"message":"Invalid CSRF"}. I successfully logged in and set cookies on login and submitting page but when I try to submit the form...
  4. F

    Who can help me to get sourcecode of this software

    I can help you. Where's the link for the software.
  5. F

    Can't login if I manually set cookies (HttpWebRequest)

    Thanks for your reply. I receive ( the remote server returned an error (403) forbidden ) and I tried to add below statements as quoted in stackoverflow but still not working. request.UseDefaultCredentials = True request.Proxy.Credentials = System.Net.CredentialCache.DefaultCredentials
  6. F

    Can't login if I manually set cookies (HttpWebRequest)

    Hi everybody, I'm referring to this code here, when I try to manually set cookies like on the below code snippet, I receive exception (A first chance exception of type 'System.Net.WebException' occurred in System.dll) and can't login. It happens when I comment out ( request.Headers.Set ) and I...
  7. F

    Unable to login with or without cookies (HttpWebRequest)

    Thanks gimme4free. So if I want to catch those two values, should I go with VB.Net or DOM element or Javascript as VS also can't be mix with javascript. What is the best option to go for?
  8. F

    Unable to login with or without cookies (HttpWebRequest)

    Just one more question please. Do these two values (csrft and ctk) change daily or hourly? Cause I want to catch them every first time the app start and store them somewhere in order to reuse them anytime but i'm not sure if one refreshs them at which frequency (daily, hourly, after 2-3 hour...)
  9. F

    Unable to login with or without cookies (HttpWebRequest)

    Thank you so so much !!! I've found the two values on the online page and used the fresh one in the app... and worked. Thank you again guys !!!
  10. F

    Unable to login with or without cookies (HttpWebRequest)

    Hi, I captured the below login code from Fiddler and the day I captured that, I tried it into VS 2013 and worked well with its original cookies. When I try to manually set cookies it doesn't work, the output debug shows : (A first chance exception of type 'System.Net.WebException' occurred in...
  11. F

    How to pretend browsing from a different country (IP address)

    Nord what?? NordVPN or NordProxy?? By the way guys, Can you advice me free stuff instead of paid one, as it's just for testing.
  12. F

    How to pretend browsing from a different country (IP address)

    Hi, I have a project to build an ad poster for another country, and I want to pretend browsing from that country from my IP address. I'm already using Tor Browser which also does it well, but the problem here is I can't use Tor as it's just a browser, as I have to open it in order to pretend...
  13. F

    Unable to post data using HttpWebRequest when using variable

    I was using the old login code with the new posting code whereas I was supposed to scrap and get the new login code in order to test the whole process with that.
  14. F

    Unable to post data using HttpWebRequest when using variable

    It's really a full full code. Please find it below Indeed the app was working perfectly well, it's been now 2 years since it's working without problem, since before yesterday, I'm trying to send a POST and couldn't... so I checked everything and realized that I'm unable to send post to the...
Back
Top