blob: ce0fa1d4ff5060eea476a39ab899ca40e6b2b44a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
.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/
|