diff --git a/src/App.tsx b/src/App.tsx index 26e776d..2f079de 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -266,6 +266,22 @@ function App() { setIsAttacking(false); }; + const descriptions = { + 'http flood': 'Sends random HTTP requests to the target', + 'http bypass': 'Sends HTTP requests to the target, mimicking real requests', + 'http slowloris': 'Sends random HTTP requests to the target, while keeping the connection open', + 'tcp flood': 'Sends random TCP requests to the target', + 'minecraft ping': 'Sends Minecraft ping requests to the target' + }; + + const emojis = { + 'http flood': '🌊', + 'http bypass': '🚀', + 'http slowloris': '🦥', + 'tcp flood': '📶', + 'minecraft ping': '⛏' + } + return (