Metadata-Version: 2.1
Name: poclib3
Version: 0.1.0
Summary: A library to generate processed webshell instances
Author: haruka
Author-email: admin@haruka.com
Description-Content-Type: text/markdown
Requires-Dist: requests

# poclib3

## Installation

```bash
pip3 install poclib3
```

## Usage

```python
from poclib3.webshell import get_godzilla_jsp_shell, get_shell_result

webshell = get_godzilla_jsp_shell()
print(webshell.tool)
# godzilla
print(webshell.type)
# jsp
print(webshell.mode)
# java_aes_base64
print(webshell.pas)
# pass
print(webshell.key)
# key
print(webshell.raw_content)
# [raw godzilla jsp webshell]
print(webshell.content)
# [unicode-encoding godzilla jsp webshell]

result = get_shell_result(webshell)
print(result)
# {'pas': 'pass', 'key': 'key', 'tool': 'godzilla', 'mode': 'java_aes_base64', 'type': 'jsp'}
```

```python
from poclib3.brute import WEAK_PASSWORD
```
