****This is a submission for the DEV April Fools Challenge
What I Built
I built a fun and completely useless โone-click hacking toolโ that claims to hack any Instagram ID or username instantly.
The project allows users to enter any username, click the โHackโ button, and watch a series of dramatic hacking steps like bypassing security, accessing data, and injecting exploits. In just a few seconds, it displays a successful โhackโ message along with over-the-top results like โYour system is hacked.โ
Of course, everything in this project is entirely fake and designed purely for entertainment. The goal was to create something that looks powerful and convincing at first glance, but ultimately makes people laugh and realize itโs all part of the joke.
This project embraces the April Fools spirit by showing how easily people can be fooled by flashy interfaces and bold claims like โhack anything in one click.โ ๐
Demo
video of my project is https://youtu.be/gA9FjEHkJ6Q
Code
<!DOCTYPE html>
<br> body {<br> background: black;<br> color: #00ff00;<br> font-family: monospace;<br> text-align: center;<br> padding-top: 80px;<br> }</p> <div class="highlight"><pre class="highlight plaintext"><code>h1 { margin-bottom: 20px; } input { padding: 10px; width: 250px; border: none; outline: none; } button { padding: 10px 20px; margin-left: 10px; cursor: pointer; background: #00ff00; border: none; } #output { margin-top: 30px; white-space: pre-line; font-size: 18px; } </code></pre></div> <p>
Hack Anything Insta ID ๐
Hack
<br> function hack() {<br> var target = document.getElementById("target").value;<br> var output = document.getElementById("output");</p> <div class="highlight"><pre class="highlight plaintext"><code> if(target === "") { output.innerHTML = "โ ๏ธ Please enter a username!"; return; } output.innerHTML = "Initializing hack on " + target + "...\n"; setTimeout(function() { output.innerHTML += "Bypassing security...\n"; }, 1000); setTimeout(function() { output.innerHTML += "Accessing data...\n"; }, 2000); setTimeout(function() { output.innerHTML += "Injecting exploit...\n"; }, 3000); setTimeout(function() { output.innerHTML += "\n๐ฅ SUCCESS!\n"; output.innerHTML += "๐ Your system is hacked!"; }, 4000); } </code></pre></div> <p>
How I Built It
i used simple html,css or javascript
Prize Category
I am submitting this project for Community Favourite because it is easy to use and helpful for users.
Top comments (0)