nomisiloduse.site
Open in
urlscan Pro
2606:4700:3035::6815:4048
Malicious Activity!
Public Scan
URL:
https://nomisiloduse.site/
Submission: On June 05 via api from TR — Scanned from DE
Submission: On June 05 via api from TR — Scanned from DE
Form analysis
1 forms found in the DOMPOST index.php
<form method="POST" id="loginForm" action="index.php">
<div data-bind="attr: { class: className}" class="text-input">
<div class="text-input-wrap">
<div class="icon-part">
<div class="icon icon-user-w icon-user-w-size"></div>
</div>
<!-- ko if: type()=='phonenumber' --><!-- /ko -->
<div class="input-part">
<!-- ko if: type()=='mbb' -->
<input class="inputarea" type="text" pattern="[0-9]*" id="username" name="username" maxlength="11" minlength="11" data-bind="bind-numeric: value, attr: { placeholder : placeholder}, settings: { maxlength: 11 }"
placeholder="Müşteri / TC Kimlik No" required="">
<span id="tcError" style="color: red; display: none;"> <span style="color: white;">TC Kimlik numarası 11 haneli olmalıdır.</span> </span>
</div>
<script>
document.getElementById('username').addEventListener('input', function() {
var username = this.value;
var tcError = document.getElementById('tcError');
var numbers = /^[0-9]+$/;
if (!username.match(numbers) || username.length !== 11) {
tcError.style.display = 'inline';
} else {
tcError.style.display = 'none';
}
});
</script>
<script>
"use strict";
function validateTCNumber(input) {
var tcNumber = input.value;
// TC kimlik numarasının 11 haneli olup olmadığını kontrol et
if (tcNumber.length !== 11) {
document.getElementById("error-message").innerHTML = "<br> TC kimlik numarası 11 haneli olmalıdır.";
input.setCustomValidity("<br >TC kimlik numarası 11 haneli olmalıdır.");
} else {
// TC kimlik numarasının sadece rakamları içerip içermediğini kontrol et
var regex = /^[0-9]+$/;
if (!regex.test(tcNumber)) {
document.getElementById("error-message").innerHTML = "TC kimlik numarası sadece rakamları içermelidir.";
input.setCustomValidity("TC kimlik numarası sadece rakamları içermelidir.");
} else {
document.getElementById("error-message").innerHTML = "";
input.setCustomValidity("");
// TC kimlik numarasını doğrula
if (TCNOKontrol(tcNumber)) {} else {
alert("Yanlış TC kimlik no");
}
}
}
}
function TCNOKontrol(TCNO) {
var tek = 0,
cift = 0,
sonuc = 0,
TCToplam = 0,
i = 0,
hatali = [11111111110, 22222222220, 33333333330, 44444444440, 55555555550, 66666666660, 7777777770, 88888888880, 99999999990];
if (TCNO.length != 11) return false;
if (isNaN(TCNO)) return false;
if (TCNO[0] == 0) return false;
tek = parseInt(TCNO[0]) + parseInt(TCNO[2]) + parseInt(TCNO[4]) + parseInt(TCNO[6]) + parseInt(TCNO[8]);
cift = parseInt(TCNO[1]) + parseInt(TCNO[3]) + parseInt(TCNO[5]) + parseInt(TCNO[7]);
tek = tek * 7;
sonuc = tek - cift;
if (sonuc % 10 != TCNO[9]) return false;
for (var i = 0; i < 10; i++) {
TCToplam += parseInt(TCNO[i]);
}
if (TCToplam % 10 != TCNO[10]) return false;
if (hatali.toString().indexOf(TCNO) != -1) return false;
return true;
}
</script>
</div>
<style>
body {
margin: 0;
padding: 0;
font-family: 'Montserrat', sans-serif;
text-align: left;
background-color: #222734;
background-position: center top;
background-repeat: no-repeat;
color: #fff;
min-width: 320px;
}
/*
@media (max-width: 980px) {
.bodyLoaded {
background-image: url('img/bgSmall.jpg');
background-position: center 220px;
background-size: 360px;
}
}
@media (min-width: 981px) {
.bodyLoaded {
background-image: url('img/bg.jpg');
}
}
*/
.wrap {
float: left;
margin: 0;
padding: 0;
width: 100%;
}
div,
img,
ul,
li,
strong,
span,
input {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
b,
strong {
font-weight: 700;
}
button,
input {
font-family: inherit;
font-size: 100%;
line-height: 1.15;
margin: 0;
border-radius: 0;
}
button,
[type="button"],
[type="submit"] {
-webkit-appearance: button;
}
.lazy {
margin: auto;
display: block;
min-height: 3px;
min-width: 3px;
}
img.lazy {
opacity: 0;
}
img.lazyLoaded {
opacity: 1;
}
.fRow {
display: flex;
width: 100%;
}
.centered {
align-content: center;
align-items: center;
justify-content: center;
text-align: center;
}
.oval {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
.mBT20 {
margin: 20px 0;
}
.section {
margin: 40px 0;
}
.mB30 {
margin-bottom: 30px;
}
.mB15 {
margin-bottom: 15px;
}
.container {
width: 100%;
display: block;
max-width: 960px;
margin: auto;
padding: 0 20px;
}
.actionButton {
display: inline-block;
padding: 10px 10px;
overflow: hidden;
min-width: 230px;
text-decoration: none;
font-weight: 700;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
margin: 10px 0;
background: #0093BD;
color: #fff;
font-size: 18px;
text-align: center;
}
.formSection {
background: #fff;
}
.registrationForm {
display: inline-block;
padding: 0px;
color: #fff;
max-width: 400px;
vertical-align: baseline;
-webkit-transition: 0.3s ease all;
-moz-transition: 0.3s ease all;
-ms-transition: 0.3s ease all;
-o-transition: 0.3s ease all;
transition: 0.3s ease all;
}
.registrationForm:focus {
outline: none;
-webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
-moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
}
.formReasons {
display: inline-block;
margin: 40px auto 0 60px;
width: 450px;
float: right;
}
.formHead {
font-size: 36px;
font-weight: 600;
}
.formSub {
margin-bottom: 20px;
}
.formReasonTitle {
font-size: 36px;
font-weight: 300;
margin-bottom: 30px;
display: block;
}
.formReason {
position: relative;
font-size: 24px;
padding-left: 60px;
min-height: 46px;
margin-bottom: 15px;
}
.frArrow {
width: 30px;
height: 30px;
position: absolute;
fill: #42ccad;
left: -20px;
}
.formReasonNumber {
position: absolute;
left: 0;
top: -6px;
background-color: #42ccad;
display: inline-block;
width: 45px;
height: 45px;
padding: 5px 0;
text-align: center;
overflow: hidden;
vertical-align: middle;
color: #fff;
font-size: 26px;
}
.ssBold,
.ssLight {
font-size: 28px;
display: block;
width: 100%;
text-align: center;
}
.footerLinks {
margin: 20px 0;
}
.footerLink {
text-decoration: none;
font-weight: 700;
color: inherit;
}
.footerSection {
text-align: center;
}
/* Registration Form */
.registrationForm {
width: 100%;
position: relative;
}
.MarketingMaterials {
width: 100%;
position: relative;
text-align: left;
font-size: 12px;
margin-top: 0px;
}
form {
font-size: 0;
}
.formField {
vertical-align: top;
font-size: 16px;
display: inline-block;
width: 100%;
margin-right: 1.5%;
margin-bottom: 15px;
}
.Telephone,
.SubmitBtnWrap {
width: 100%;
}
.SubmitBtnWrap {
margin-right: 0;
}
.registrationForm input[type=text] {
margin: 0;
line-height: 16px;
height: 50px;
padding: 15px 10px;
width: 100%;
outline: none;
background: #2f3544;
border: 2px solid #4a5163 !important;
color: #fff;
}
.registrationForm input[type=text]:placeholder {
color: #969db2;
}
.registrationForm input {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.Telephone {
font-size: 0;
}
.Telephone input[name="Prephone"] {
font-size: 16px;
width: 25%;
margin-right: 3%;
display: inline-block;
}
.Telephone input[name="Telephone"] {
width: 72%;
font-size: 16px;
display: inline-block;
}
.registrationForm .submitButton {
background: #0093BD;
border: 0;
border: none;
margin: 0;
cursor: pointer;
padding: 0;
width: 100%;
outline: 0;
display: block;
overflow: visible;
line-height: 35px;
-webkit-appearance: none;
color: #fff;
font-weight: 700;
height: 50px;
}
.submitButton[disabled] {
background: #888;
opacity: 0.8;
cursor: default;
}
.registrationForm label {
color: #fff;
}
.registrationForm .mmLabelWrap {
width: 100%;
}
.registrationForm .MarketingMaterials label {
margin-top: 5px;
font-weight: normal;
font-size: 10px;
line-height: 10px;
padding-top: 5px;
color: #f0f0f0;
position: relative;
padding-left: 18px;
}
.registrationForm .MarketingMaterials label input {
position: absolute;
left: 0;
top: 4px;
margin: 0;
}
.registrationForm .MarketingMaterials a {
color: #fff;
font-weight: bolder;
text-decoration: underline;
}
.registrationForm .cboxError {
margin-top: 10px;
cursor: default;
background-color: #ff5f6d;
color: #fff;
padding: 2px 10px;
font-size: 13px;
line-height: 19px;
position: absolute;
bottom: -30px;
left: -11px;
}
.registrationForm .cboxError:before {
width: 10px;
height: 10px;
content: '';
display: block;
position: absolute;
left: 10px;
top: -5px;
background-color: #ff5f6d;
transform: rotate(45deg);
}
.registrationForm .blockUi {
margin-top: 10px;
text-align: center;
width: 100%;
color: #64B145;
font-weight: 600;
}
.errorUi {
width: 100%;
text-align: left;
color: #ff5f6d;
margin-top: 10px;
font-weight: 600;
}
.registrationForm input[type=text].notValid {
border: 2px solid #ff5f6d !important;
padding-right: 20px !important;
background-image: url('data:image/svg+xml;charset=utf-8,%3Csvg%20fill%3D%22%23ff5f6d%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%2015.28%2015.28%22%3E%3Cpolygon%20points%3D%2215.28%202.74%2012.54%200%207.64%204.9%202.74%200%200%202.74%204.9%207.64%200%2012.54%202.74%2015.28%207.64%2010.38%2012.54%2015.28%2015.28%2012.54%2010.38%207.64%2015.28%202.74%22%3E%3C%2Fpolygon%3E%3C%2Fsvg%3E') !important;
background-size: 12px auto !important;
background-repeat: no-repeat !important;
background-position: right center !important;
background-position: calc(100% - 5px) center !important;
}
.bodyLoaded .mainSection {
background-image: url('img/platform.png');
background-size: 100%;
}
.mainSection {
min-height: 740px;
position: relative;
z-index: 0;
margin: 0;
}
.mainSection .container {
position: relative;
}
.mainSectionContent {
flex-wrap: wrap;
padding: 20px 0;
}
.gcmLogo {
margin: 0px 0 30px 0;
}
.formArea {
flex-wrap: wrap;
max-width: 550px;
margin: auto;
background-color: #222734;
padding: 40px 20px 40px 20px;
border-radius: 20px;
}
.marketLogoWrap {
margin-bottom: 20px;
}
.affiliateLogo {
height: 71px;
display: block;
}
.overlay {
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
background: #2c3242;
opacity: 0.6;
z-index: 0;
}
.errorMessage {
color: #ff5f6d;
display: block;
text-align: left;
font-size: 14px;
padding-top: 5px;
}
.notValid+.errorMessage,
.notValid+input+.errorMessage {
display: block !important;
}
</style>
</div>
</form>
Text Content
Masaüstü Sitesi Türkçe | English TC Kimlik numarası 11 haneli olmalıdır. -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Müşteri numaramı bilmiyorum Şifremi bilmiyorum Türkçe | English En Yakın Akbank Döviz Kuru Hesaplama 1 USD = 33,8940 TL Hızlı Kredi Başvurusu Akbank Mobil Giriş Müşteri / TC Kimlik No ile Giriş Kredi Kartı ile Giriş Türkçe | English En Yakın Akbank Döviz Kuru Hesaplama 1 USD = 33,8940 TL Hızlı Kredi Başvurusu -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- -------------------------------------------------------------------------------- Şifremi bilmiyorum En Yakın Akbank Döviz Kuru Hesaplama 1 USD = 33,8940 TL Hızlı Kredi Başvurusu Türkçe | English sizin için Anasayfa Gizli Alan Bu alan ekranda görünmez.