Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bahamas10/amass-etc-passwd
A module for amass to read passwd and group info
https://github.com/bahamas10/amass-etc-passwd
Last synced: about 2 months ago
JSON representation
A module for amass to read passwd and group info
- Host: GitHub
- URL: https://github.com/bahamas10/amass-etc-passwd
- Owner: bahamas10
- Created: 2013-01-23T01:45:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-23T01:47:30.000Z (almost 12 years ago)
- Last Synced: 2024-05-08T20:04:12.735Z (8 months ago)
- Language: JavaScript
- Size: 109 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
amass-etc-passwd
================A module for amass to read passwd and group info
See [node-etc-passwd](https://github.com/bahamas10/node-etc-passwd)
Installation
------------1. Install [amass](https://github.com/bahamas10/node-amass)
2. `[sudo] amass --add amass-etc-passwd`
3. run `amass`Example
-------Add this plugin to amass to get passwd and group info
``` json
{
"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