New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
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

  • 0.0.0
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-75%
Maintainers
1
Weekly downloads
 
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

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

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc