Nostale Auth through proxy or VPN

06/10/2022 09:31 Destiny99#1
Im trying to use a proxy in order to send the requests made to /api/v1/auth/sessions, /api/v1/user/accounts and in beyond, but im getting Status Code 409 every time I try it. It does not matter if it is a proxy or an VPN, it only works when I use my real public IP.

Im using [Only registered and activated users can see links. Click Here To Register...] but I also implemented it on C# with the same results:

Code:
{StatusCode: 409, ReasonPhrase: 'Conflict', Version: 1.1, Content: System.Net.Http.HttpConnectionResponseContent, Headers:
{
  Date: Fri, 10 Jun 2022 07:28:36 GMT
  Connection: keep-alive
  Vary: Authorization
  Vary: Origin
  X-Request-ID: xxx
  Access-Control-Allow-Origin: spark://www.gameforge.com
  Access-Control-Allow-Credentials: true
  Access-Control-Expose-Headers: Content-Type,Authorization,GF-Challenge-Id
  X-Powered-By: Express
  gf-challenge-id: xxx[url]https://challenge.gameforge.com[/url]
  Strict-Transport-Security: max-age=15724800
  CF-Cache-Status: DYNAMIC
  Expect-CT: max-age=604800, report-uri="https://report-uri.cloudflare.com/cdn-cgi/beacon/expect-ct"
  Server: cloudflare
  CF-RAY: xxx
  Content-Length: 0
}}
06/10/2022 09:46 SH3L8Y#2
409 is a captcha if I remember correct.
You should get challange id, send two requests to captcha API trying to solve it (random shoot. If hit -> fine. If miss -> try again).
I don't have access to PC so I can't show requests but you will figure this out
06/10/2022 10:08 Destiny99#3
Quote:
Originally Posted by SH3L8Y View Post
409 is a captcha if I remember correct.
You should get challange id, send two requests to captcha API trying to solve it (random shoot. If hit -> fine. If miss -> try again).
I don't have access to PC so I can't show requests but you will figure this out
Right, that's implemented in [Only registered and activated users can see links. Click Here To Register...]. Thanks a lot!