Python Deserialize ViewState

Viewed 612

I am writing a program to decode edit and re-encode ViewState in python. I have successfully been able to find view state and decode the base64 encoded string, but became stuck trying to deserialize it. Is there a way to deserialize view state using python without using a windows-only python library? I wand my program to be able to run it on any computer with python installed.

1 Answers
Related