JSPM

amass-etc-passwd

0.0.0
    • ESM via JSPM
    • ES Module Entrypoint
    • Export Map
    • Keywords
    • License
    • Repository URL
    • TypeScript Types
    • README
    • Created
    • Published
    • Downloads 4
    • Score
      100M100P100Q35132F
    • License MIT

    A module for amass to read passwd and group info

    Package Exports

    • amass-etc-passwd

    This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (amass-etc-passwd) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

    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