blob: d1f8de4c7e6016df6ed863c5e43af57a42e80d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# .NET Viewstate Decoder
A small Python library for decoding .NET viewstate. Can be used in various scraping scenarios.
## Usage
```python
from viewstate import ViewState
vs = ViewState(base64EncodedViewState)
```
## References
- https://github.com/mutantzombie/JavaScript-ViewState-Parser
|