🚀 Big News:Socket Has Acquired Secure Annex.Learn More →
Socket
Book a DemoSign in
Socket

amass-etc-passwd

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amass-etc-passwd

A module for amass to read passwd and group info

latest
npmnpm
Version
0.0.0
Version published
Maintainers
1
Created
Source

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

Keywords

amass

FAQs

Package last updated on 23 Jan 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts