I'm attempting to use the regex extractor to parse the VIEWSTATE and EVENTVALIDATION variables. This works quite well for simple GET requests, however, there are some forms that use ajax postbacks and as a result return partial renders
The issue is the formatting of the VIEWSTATE and EVENTVALIDATION in these renders:
|hiddenField|__VIEWSTATE|/wEPDwUKMT..... long string continues here
|hiddenField|__EVENTVALIDATION|/wEdAEj... long string
How can I modify my regex extractor to fit this format?