amass-etc-passwd
v0.0.0
Published
A module for amass to read passwd and group info
Downloads
8
Readme
amass-etc-passwd
A module for amass to read passwd and group info
See node-etc-passwd
Example
Add this plugin to amass to get passwd and group info
{
"users": [
{
"username": "nobody",
"password": "*",
"uid": -2,
"gid": -2,
"comments": "Unprivileged User",
"home": "/var/empty",
"shell": "/usr/bin/false"
},
{
"username": "root",
"password": "*",
"uid": 0,
"gid": 0,
"comments": "System Administrator",
"home": "/var/root",
"shell": "/bin/sh"
},
{ ... }
],
"groups": [
{
"groupname": "nobody",
"password": "*",
"gid": -2,
"users": []
},
{
"groupname": "nogroup",
"password": "*",
"gid": -1,
"users": []
},
{ ... }
]
}
License
-------
MIT