- Scan ID:
- 2b651a31-697d-4900-a4ac-f2399c73df2dFinished
- Submitted URL:
- https://tsc.tc/162Li
- Report Finished:
Links · 0 found
The outgoing links identified from the page
JavaScript Variables · 3 found
Global JavaScript variables loaded on the window object of a page, are variables declared outside of functions and accessible from anywhere in the code within the current scope
Name | Type |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
Console log messages · 2 found
Messages logged to the web console
Type | Category | Log |
---|---|---|
error | network |
|
error | network |
|
HTML
The raw HTML body of the page
<!DOCTYPE html><html lang="tr"><head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Erişime Kapalı</title>
<style>
/* Genel ayarlar */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Gövde ve arka plan ayarları */
body {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
font-family: Arial, sans-serif;
background-color: #2e2e2e; /* Gri arka plan */
color: #ffffff; /* Beyaz yazı rengi */
text-align: center;
padding: 20px; /* Mobil cihazlarda kenar boşluğu */
}
/* Mesaj kutusu */
.message-container {
max-width: 600px; /* Mesajın genişliğini sınırlama */
}
/* Mesaj metni */
.message {
font-size: 1.1em;
line-height: 1.6;
}
/* Başlık kısmı */
h1 {
font-size: 1.5em;
margin-bottom: 20px;
}
</style>
</head>
<body>
<div class="message-container">
<h1>Erişime Kapalı</h1>
<p class="message">
Bu site, kötü niyetli kişilerce kısaltma bağlantıları kullanılarak sahte icra SMS'leri oluşturulmak için kullanılmaya çalışıldığı tespit edildiğinden erişime kapatılmıştır. Dolandırıcılık faaliyetlerine karşı dikkatli olmanızı önemle rica ederiz.
SMS gönderen numaraları yetkili mercilere bildirmeniz yeterlidir; web sitemizin bu tür faaliyetlerle bir ilgisi bulunmamaktadır. İlgili bilgiler gerekli kurumlara iletilmiştir.
</p>
</div>
</body></html>