I need to perform a security scan of an asp.net website hosted on IIS.
For that purpose the security scanner needs to be able to perform an automated login during its scan.
For some reason this third party application is unable to take the viewstate from login page get request and use that in the following post request.
This means it can only do a post request with a hardcoded value, however that won't work as the viewstate can then not be validated.
If I try to just do the post request without any viewstate my code is never activated and my guess is the IIS is completely blocking post requests with empty or no viewstate.
Is there any way around this so I can get my single login page to accept post requests with no viewstate or other way around this problem?