Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
jagratadeb authored Oct 13, 2024
0 parents commit 533cf67
Show file tree
Hide file tree
Showing 5 changed files with 78 additions and 0 deletions.
5 changes: 5 additions & 0 deletions assets/JavaScript/confirm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
if (confirm("Are you sure that you want to be hacked? 👿") == true) {
alert("That button 'OK' gave me the access to your device. Now I will do what ever I wish to do👿.")
} else {
alert("You have no way to cancel it. 👿 No one can save you now.")
}
42 changes: 42 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
*{
cursor: url('../images/skull.png'), auto !important;
}
body{
background-image: url('../images/background.jpg');
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
h1{
background: linear-gradient(45deg,black,green,black);
padding: 5px;
border: 4px solid rgb(0, 255, 0);
color: white;
text-transform: uppercase;
font-size: 35px;
}
.head_2{
font-size: 15px;
color: white;
letter-spacing: 2px;
text-shadow: 0px 0px 30px white;
}
.ok{
background: linear-gradient(45deg,black,green);
box-shadow: 5px 5px 50px 10px rgb(0, 255, 0);
border-radius: 10px;
width: 80%;
margin-right:auto;
margin-left:auto;
text-align: left;
padding: 25px 25px 25px 25px;
height: max-content;
}
.okok{
text-align: right;
margin-left: 100%;
}
.starting_hack{
font-size: 30px;
}
Binary file added assets/images/background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/skull.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
31 changes: 31 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<link rel="shortcut icon" href="assets/images/skull.png" type="image/x-icon">
<title>Dangerous Website</title>
<meta name="theme-color" content="#7CFC00">
</head>
<body>
<h1 style="text-align:center;">HACKING SYSTEM</h1>
<div class="ok">
<span class="head_2"></span>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]"></script>
<script src="https://kit.fontawesome.com/77c10cf66c.js" crossorigin="anonymous"></script>
<!--Type JS-->
<script>
var typed = new Typed(".head_2", {
strings: ["<center><span class='starting_hack'>INITIATING HACK</span></center><hr>1) Disabling Aniti-Virus <span class='okok'>✅</span><br>2) Sending Browsing history to your parents <span class='okok'>✅</span><br>3) Stealing your social media accounts <span class='okok'>✅</span><br>4) Sending your location to hacker <span class='okok'>✅</span><br>5) All e-mails copied and sent to hacker <span class='okok'>✅</span><br>6) Getting your IP Address <span class='okok'>✅</span><br>7) Cracking all your passwords <span class='okok'>✅</span><br>8) Restoring all deleted files and sending to hacker <span class='okok'>✅</span><br>9) Stealing your weird pics from Gallery <span class='okok'>✅</span><br><br><hr><center>If you were scared then just chill, it was a fake hack. <br>It was made only for fun - Jagrata Deb</center>"],
typeSpeed: 20,
backSpeed: 1,
loop: false,
showCursor: false,
})
</script>
<script src="assets/JavaScript/confirm.js"></script>
</body>
</html>

0 comments on commit 533cf67

Please sign in to comment.