mirror of
https://github.com/kellyjonbrazil/jc.git
synced 2025-06-17 00:07:37 +02:00
130 lines
2.6 KiB
Markdown
130 lines
2.6 KiB
Markdown
[Home](https://kellyjonbrazil.github.io/jc/)
|
|
<a id="jc.parsers.shadow"></a>
|
|
|
|
# jc.parsers.shadow
|
|
|
|
jc - JSON Convert `/etc/shadow` file parser
|
|
|
|
Usage (cli):
|
|
|
|
$ sudo cat /etc/shadow | jc --shadow
|
|
|
|
Usage (module):
|
|
|
|
import jc
|
|
result = jc.parse('shadow', shadow_file_output)
|
|
|
|
Schema:
|
|
|
|
[
|
|
{
|
|
"username": string,
|
|
"password": string,
|
|
"last_changed": integer,
|
|
"minimum": integer,
|
|
"maximum": integer,
|
|
"warn": integer,
|
|
"inactive": integer,
|
|
"expire": integer
|
|
}
|
|
]
|
|
|
|
Examples:
|
|
|
|
$ sudo cat /etc/shadow | jc --shadow -p
|
|
[
|
|
{
|
|
"username": "root",
|
|
"password": "*",
|
|
"last_changed": 18113,
|
|
"minimum": 0,
|
|
"maximum": 99999,
|
|
"warn": 7,
|
|
"inactive": null,
|
|
"expire": null
|
|
},
|
|
{
|
|
"username": "daemon",
|
|
"password": "*",
|
|
"last_changed": 18113,
|
|
"minimum": 0,
|
|
"maximum": 99999,
|
|
"warn": 7,
|
|
"inactive": null,
|
|
"expire": null
|
|
},
|
|
{
|
|
"username": "bin",
|
|
"password": "*",
|
|
"last_changed": 18113,
|
|
"minimum": 0,
|
|
"maximum": 99999,
|
|
"warn": 7,
|
|
"inactive": null,
|
|
"expire": null
|
|
},
|
|
...
|
|
]
|
|
|
|
$ sudo cat /etc/shadow | jc --shadow -p -r
|
|
[
|
|
{
|
|
"username": "root",
|
|
"password": "*",
|
|
"last_changed": "18113",
|
|
"minimum": "0",
|
|
"maximum": "99999",
|
|
"warn": "7",
|
|
"inactive": "",
|
|
"expire": ""
|
|
},
|
|
{
|
|
"username": "daemon",
|
|
"password": "*",
|
|
"last_changed": "18113",
|
|
"minimum": "0",
|
|
"maximum": "99999",
|
|
"warn": "7",
|
|
"inactive": "",
|
|
"expire": ""
|
|
},
|
|
{
|
|
"username": "bin",
|
|
"password": "*",
|
|
"last_changed": "18113",
|
|
"minimum": "0",
|
|
"maximum": "99999",
|
|
"warn": "7",
|
|
"inactive": "",
|
|
"expire": ""
|
|
},
|
|
...
|
|
]
|
|
|
|
<a id="jc.parsers.shadow.parse"></a>
|
|
|
|
### parse
|
|
|
|
```python
|
|
def parse(data, raw=False, quiet=False)
|
|
```
|
|
|
|
Main text parsing function
|
|
|
|
Parameters:
|
|
|
|
data: (string) text data to parse
|
|
raw: (boolean) unprocessed output if True
|
|
quiet: (boolean) suppress warning messages if True
|
|
|
|
Returns:
|
|
|
|
List of Dictionaries. Raw or processed structured data.
|
|
|
|
### Parser Information
|
|
Compatibility: linux, darwin, aix, freebsd
|
|
|
|
Source: [`jc/parsers/shadow.py`](https://github.com/kellyjonbrazil/jc/blob/master/jc/parsers/shadow.py)
|
|
|
|
Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com)
|