Socket
Socket
Sign inDemoInstall

amass-etc-passwd

Package Overview
Dependencies
2
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    amass-etc-passwd

A module for amass to read passwd and group info


Version published
Weekly downloads
3
Maintainers
1
Install size
42.6 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 23 Jan 2013

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc