blob: 6d2b76b716b041570a917f7586f03ecdad37bf1d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# .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)
```
## Test
```python
python test.py
```
## References
- https://github.com/mutantzombie/JavaScript-ViewState-Parser
- http://viewstatedecoder.azurewebsites.net/
|