- ID de l'analyse :
- 6002f487-c98e-4830-843b-9f785ddc64d4Terminée
- URL soumise :
- https://wilddommelinks.com/
- Fin du rapport :
Liens : 31 trouvé(s)
Liens sortants identifiés à partir de la page
Lien | texte |
---|---|
https://forms.gle/vr8eB9dRjExCE2Vn7 | Blackmail Contract |
https://forms.gle/UocADxteR4SGc75U9 | Debt Contract |
https://forms.gle/5ZUniVD2sWvQRMj39 | Email Spam |
https://forms.gle/STLb3hRz2EHBmBCj9 | Online Goon Meet |
https://twitter.com/wilddomme | |
https://www.youtube.com/@wilddomme | YouTube |
https://www.twitch.tv/wilddomme | Twitch |
https://www.loyalfans.com/wilddomme | LoyalFans |
https://discord.gg/KWtGgwkKjy | Discord |
https://throne.com/pay4yuki | Throne |
Variables JavaScript : 15 trouvée(s)
Les variables JavaScript globales chargées dans l'objet fenêtre d'une page sont des variables déclarées en dehors des fonctions et accessibles depuis n'importe quel endroit du code au sein du champ d'application actuel
Nom | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
_A50H35mL12qk99eWjM12SQ049X1R4ejpfo | function |
_QTW7v07E7O88q9h34lb8s995Gkyp1qUk0c1B3e75Bz | function |
_$ | object |
_V77u0W95chN2s6C2VUJ84CW9S | object |
_D0S246T0881I4cS3K907pW5iY75jOeEZnYTC8xOgKjw334F | number |
_WB0KDTM76i2UD0zV3VK | object |
_Lm10XZapTpHikci0EGx1Hbug8RKH0Ok48yXJRYdb | object |
Messages de journal de console : 0 trouvé(s)
Messages consignés dans la console web
HTML
Le corps HTML de la page en données brutes
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wilddomme Links</title>
<link rel="icon" href="/assets/favicon.ico" type="image/x-icon">
<style>
body, html {
margin: 0;
padding: 0;
overflow: hidden;
background-color: black;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
font-family: Arial, sans-serif;
}
.center-container {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
z-index: 20;
animation: fadeIn 1.5s ease-in-out;
background-color: rgba(0, 0, 0, 0.5);
padding: 20px;
border-radius: 15px;
}
.button-group {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
}
.button {
color: #FF6EC7;
font-size: 1.5em;
font-weight: bold;
background-color: black;
border: 3px solid #FF6EC7;
padding: 15px 30px;
border-radius: 50px;
text-align: center;
cursor: pointer;
transition: transform 0.3s ease, background-color 0.3s ease;
box-shadow: 0px 0px 15px rgba(255, 110, 199, 0.5);
width: 240px;
}
.button:hover {
background-color: #FF6EC7;
color: black;
transform: scale(1.05);
box-shadow: 0px 0px 25px rgba(255, 110, 199, 0.8);
}
.dropdown-content {
display: none;
flex-wrap: wrap;
justify-content: center;
background-color: black;
padding: 20px;
border-radius: 15px;
margin-top: 10px;
gap: 10px;
animation: fadeIn 0.5s ease;
box-shadow: 0px 0px 15px rgba(255, 110, 199, 0.6);
width: 600px;
max-height: 300px;
overflow-y: auto;
}
.button-group:hover .dropdown-content {
display: flex;
}
.dropdown-content a {
color: #FF6EC7;
font-size: 1em;
text-decoration: none;
padding: 10px 15px;
background-color: #1a1a1a;
border-radius: 20px;
transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
text-align: center;
margin: 5px;
width: 45%;
}
.dropdown-content a:hover {
background-color: #FF6EC7;
color: black;
transform: scale(1.05);
}
.dropdown-content::-webkit-scrollbar {
width: 10px;
}
.dropdown-content::-webkit-scrollbar-track {
background: #1a1a1a;
border-radius: 10px;
}
.dropdown-content::-webkit-scrollbar-thumb {
background-color: #FF6EC7;
border-radius: 10px;
}
.welcome {
position: absolute;
top: 20px;
font-size: 3em;
color: white;
font-weight: bold;
text-align: center;
animation: welcomeGlow 1.5s ease-in-out infinite alternate;
text-shadow: 0 0 10px #FF6EC7, 0 0 20px #FF6EC7, 0 0 30px #FF6EC7;
z-index: 20;
}
@keyframes welcomeGlow {
from {
opacity: 0.7;
text-shadow: 0 0 10px #FF6EC7, 0 0 20px #FF6EC7, 0 0 40px #FF6EC7;
}
to {
opacity: 1;
text-shadow: 0 0 15px #FF6EC7, 0 0 30px #FF6EC7, 0 0 50px #FF6EC7;
}
}
#spiralCanvas {
width: 100vw;
height: 100vh;
position: absolute;
opacity: 0.5;
z-index: 10;
}
.floating-image {
position: absolute;
border-radius: 15px;
opacity: 0;
transition: opacity 2s ease, transform 2s ease;
z-index: 5;
}
@keyframes fadeInOutMove {
0% {
opacity: 0;
transform: scale(0.8);
}
50% {
opacity: 1;
transform: scale(1.1);
}
100% {
opacity: 0;
transform: scale(0.8);
}
}
</style>
</head>
<body>
<div class="welcome">WildDomme Links</div>
<canvas id="spiralCanvas" width="800" height="600"></canvas>
<div class="center-container">
<div class="button-group">
<div class="button">Contracts & Forms</div>
<div class="dropdown-content">
<a href="https://forms.gle/vr8eB9dRjExCE2Vn7" target="_blank">Blackmail Contract</a>
<a href="https://forms.gle/UocADxteR4SGc75U9" target="_blank">Debt Contract</a>
<a href="https://forms.gle/5ZUniVD2sWvQRMj39" target="_blank">Email Spam</a>
<a href="https://forms.gle/STLb3hRz2EHBmBCj9" target="_blank">Online Goon Meet</a>
</div>
</div>
<div class="button-group">
<div class="button">Socials</div>
<div class="dropdown-content">
<a href="https://twitter.com/wilddomme" target="_blank">Twitter</a>
<a href="https://www.youtube.com/@wilddomme" target="_blank">YouTube</a>
<a href="https://www.twitch.tv/wilddomme" target="_blank">Twitch</a>
<a href="https://www.loyalfans.com/wilddomme" target="_blank">LoyalFans</a>
<a href="https://discord.gg/KWtGgwkKjy" target="_blank">Discord</a>
</div>
</div>
<div class="button-group">
<div class="button">Payment Method</div>
<div class="dropdown-content">
<a href="https://throne.com/pay4yuki" target="_blank">Throne</a>
<a href="https://paypal.me/eyisvictoria" target="_blank">PayPal</a>
</div>
</div>
<div class="button-group">
<div class="button" onclick="location.href='shop.html'">Shop</div>
</div>
<div class="button-group">
<div class="button">Web Games</div>
<div class="dropdown-content">
<a href="/Hypnosis/index.html" target="_blank">HypnoSub Level</a>
<a href="/game/trickortease.html" target="_blank">Trick or Tease</a>
<a href="/game/visualnovel.html" target="_blank">Visual Novel</a>
<a href="/game/cumtdown.html" target="_blank">Cumtdown</a>
<a href="/game/puzzledrain.html" target="_blank">Slide Puzzle Drain</a>
<a href="/game/finsubcalculator.html" target="_blank">Finsub Calculator</a>
</div>
</div>
<div class="button-group">
<div class="button">Software & Programs</div>
<div class="dropdown-content">
<a href="http://bit.ly/AnnoYuki" target="_blank">Annoyuki.exe</a>
<a href="https://rb.gy/dxaxio" target="_blank">Weblock.exe</a>
<a href="https://gofile.io/d/bNANK2" target="_blank">Silent Signal</a>
<a href="https://gofile.io/d/fFssVD" target="_blank">Discordware</a>
<a href="https://rb.gy/o0t28q" target="_blank">Keymod.exe</a>
<a href="https://drive.google.com/file/d/1AczFx48xP3Wxwtzksf_zetvYc-8Y9vq2/view" target="_blank">Lockdown</a>
<a href="https://rb.gy/lwhwu0" target="_blank">Cuckold.exe</a>
<a href="https://rb.gy/zmtemv" target="_blank">Typetogoon.exe</a>
<a href="https://rb.gy/cpdrsu" target="_blank">Ransomware</a>
<a href="https://rb.gy/28ou9s" target="_blank">Shutdown Interceptor.exe</a>
<a href="https://rb.gy/seov3t" target="_blank">Silentspam.exe</a>
<a href="https://rb.gy/tqayge" target="_blank">Riddlegame.exe</a>
<a href="https://t.me/TesterhentaiBot" target="_blank">Hentai Spam</a>
<a href="https://drive.google.com/file/d/1lgvRQtHr5k6LUF96USVsAuB2cllxnhwJ/view" target="_blank">Lockscreen.exe</a>
<a href="https://rb.gy/i3d2eq" target="_blank">xyz.exe</a>
<a href="https://rb.gy/na3hsa" target="_blank">Twitter Overlay Extension</a>
<a href="https://rb.gy/k6hn2d" target="_blank">Spam.exe</a>
<a href="https://rb.gy/ea3ltz" target="_blank">Curseor.exe</a>
<a href="https://gofile.io/d/dSfDiH" target="_blank">Clickme.exe</a>
<a href="https://rb.gy/bj0qrj" target="_blank">GoonerLocker.exe</a>
</div>
</div>
<audio id="backgroundAudio" src="/static/audio1.mp3" loop="" autoplay=""></audio>
</div><img src="/static/image2.png" class="floating-image" style="width: 321.117px; height: auto; position: absolute; top: 27.1977%; left: 17.6513%; animation: 4.39796s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image3.png" class="floating-image" style="width: 333.953px; height: auto; position: absolute; top: 26.3656%; left: 29.4869%; animation: 3.81939s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image4.png" class="floating-image" style="width: 212.236px; height: auto; position: absolute; top: 48.3536%; left: 55.8047%; animation: 4.93848s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image5.png" class="floating-image" style="width: 240.404px; height: auto; position: absolute; top: 87.4466%; left: 60.2712%; animation: 3.73744s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image6.png" class="floating-image" style="width: 218.639px; height: auto; position: absolute; top: 32.9637%; left: 46.8292%; animation: 7.37214s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image7.png" class="floating-image" style="width: 277.386px; height: auto; position: absolute; top: 81.7627%; left: 42.7778%; animation: 3.53268s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image8.png" class="floating-image" style="width: 268.837px; height: auto; position: absolute; top: 44.6282%; left: 75.6155%; animation: 4.68187s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image9.png" class="floating-image" style="width: 263.262px; height: auto; position: absolute; top: 46.6663%; left: 85.5719%; animation: 3.37068s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image10.png" class="floating-image" style="width: 247.418px; height: auto; position: absolute; top: 48.3066%; left: 16.8121%; animation: 5.5799s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image11.png" class="floating-image" style="width: 233.674px; height: auto; position: absolute; top: 24.1113%; left: 85.1415%; animation: 7.68156s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image12.png" class="floating-image" style="width: 230.555px; height: auto; position: absolute; top: 38.8275%; left: 17.1858%; animation: 4.52654s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image13.png" class="floating-image" style="width: 368.644px; height: auto; position: absolute; top: 66.8958%; left: 77.4469%; animation: 4.13501s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image14.png" class="floating-image" style="width: 389.75px; height: auto; position: absolute; top: 82.0233%; left: 47.424%; animation: 5.36964s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image15.png" class="floating-image" style="width: 215.519px; height: auto; position: absolute; top: 70.101%; left: 59.4353%; animation: 7.63837s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image1.png" class="floating-image" style="width: 350.944px; height: auto; position: absolute; top: 55.431%; left: 88.1742%; animation: 3.54206s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image2.png" class="floating-image" style="width: 395.019px; height: auto; position: absolute; top: 86.9366%; left: 53.8637%; animation: 3.50723s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image3.png" class="floating-image" style="width: 274.928px; height: auto; position: absolute; top: 49.7837%; left: 88.2428%; animation: 4.27108s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image4.png" class="floating-image" style="width: 258.21px; height: auto; position: absolute; top: 39.2585%; left: 24.884%; animation: 5.61615s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image5.png" class="floating-image" style="width: 314.825px; height: auto; position: absolute; top: 59.3618%; left: 88.0121%; animation: 4.17418s ease-in-out 0s infinite normal none running fadeInOutMove;"><img src="/static/image6.png" class="floating-image" style="width: 214.83px; height: auto; position: absolute; top: 52.6979%; left: 30.2229%; animation: 6.79635s ease-in-out 0s infinite normal none running fadeInOutMove;"></body></html>