HTTP/1.1 200 OK
Cache-Control: private
Content-Type: text/html; charset=utf-8
Server: Microsoft-IIS/7.5
Set-Cookie: ASP.NET_SessionId=zb4kruupvqsugocwfhkadfko; path=/; HttpOnly
X-AspNet-Version: 4.0.30319
X-Powered-By: ASP.NET
Date: Wed, 06 Nov 2024 18:35:00 GMT
Connection: close
Content-Length: 8145
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta name="viewport" content="width=device-width, initial-scale=1.0" /><meta name="keywords" /><link href="Content/css/framework-font.css" rel="stylesheet" /><link href="Content/css/framework-login.css" rel="stylesheet" />
<script src="Content/jquery-2.1.1.min.js"></script>
<title>
寄递业注册系统
</title></head>
<body>
<div class="wrapper">
<div class="container">
<div class="logo">
<i class="fa fa-modx"></i>
<h1> 寄递业注册系统</h1>
</div>
<form method="post" action="" id="ctl01" class="form">
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJMjMzNTAwNzkwZGRGEJCyxlgYap68c0MPhEir9+NqU/24vDRlRhZVdhdusQ==" />
</div>
<div class="aspNetHidden">
<input type="hidden" name="__VIEWSTATEGENERATOR" id="__VIEWSTATEGENERATOR" value="C2EE9ABB" />
</div>
<div class="row">
<input id="txt_account" type="text" placeholder="用户名" />
<i class="fa fa-user"></i>
</div>
<div class="row">
<input id="txt_password" type="password" placeholder="登录密码" />
<i class="fa fa-key"></i>
</div>
<div class="row">
<input id="txt_code" maxlength="4" type="text" placeholder="验证码" style="width: 190px; float: left;"/>
<div style="width: 110px; float: right; padding-top: 14px; padding-left: 14px;">
看不清?<a id="switchCode" href="" style="text-decoration: none;"> 换一张</a>
<img id="imgcode" class="authcode" src="/api/Login/GetAuthCode" width="80" height="25" />
</div>
</div>
<div class="row">
<button id="login_button" type="button"><span>登录</span></button>
</div>
<div class="row">
</div>
</form>
<div class="login_tips"></div>
</div>
<ul class="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<div class="copyright">
<a href="http://www.capitalmill.cn" style="text-decoration: none; color: #fff;">绍兴肯美信息技术有限公司开发团队出品</a>
<br>
适用浏览器:IE8以上、360、FireFox、Chrome、Safari
</div>
<script type="text/javascript">
//---获取URl的参数
function getUrlParam(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) {
return decodeURI(r[2]);
}
return "";//如果此处只写return;则返回的是undefined
};
(function ($) {
$.login = {
formMessage: function (msg) {
$('.login_tips').find('.tips_msg').remove();
$('.login_tips').append('<div class="tips_msg"><i class="fa fa-question-circle"></i>' + msg + '</div>');
},
loginClick: function () {
var $username = $("#txt_account");
var $password = $("#txt_password");
var $code = $("#txt_code");
if ($username.val() == "") {
$username.focus();
$.login.formMessage('请输入用户名。');
return false;
} else if ($password.val() == "") {
$password.focus();
$.login.formMessage('请输入登录密码。');
return false;
}
else if ($code.val() == "") {
$code.focus();
$.login.formMessage('请输入验证码。');
return false;
}
else {
$("#login_button").attr('disabled', 'disabled').find('span').html("loading...");
$.ajax({
url: "/api/Login/CheckLogin",
data: JSON.stringify({ username: $.trim($username.val()), password: $.trim($password.val()) , code: $.trim($code.val()) }),
type: "post",
contentType: 'application/json',
//dataType: "json",
success: function (data) {
if (data.state == "success") {
$("#login_button").find('span').html("登录成功,正在跳转...");
window.setTimeout(function () {
window.location.href = "Index.aspx";
},1);
} else {
$("#login_button").removeAttr('disabled').find('span').html("登录");
$("#switchCode").trigger("click");
$code.val('');
$.login.formMessage(data.message);
}
}
});
}
},
init: function () {
$('.wrapper').height($(window).height());
$(".container").css("margin-top", ($(window).height() - $(".container").height()) / 2 - 50);
$(window).resize(function (e) {
$('.wrapper').height($(window).height());
$(".container").css("margin-top", ($(window).height() - $(".container").height()) / 2 - 50);
});
//----输入验证码
$("#switchCode").click(function () {
$("#imgcode").attr("src", "/api/Login/GetAuthCode?time=" + Math.random());
});
$("#login_button").click(function () {
$.login.loginClick();
});
document.onkeydown = function (e) {
if (!e) e = window.event;
if ((e.keyCode || e.which) == 13) {
document.getElementById("login_button").focus();
document.getElementById("login_button").click();
}
}
}
};
$(function () {
var UserID = getUrlParam("UserID");
var Pass = getUrlParam("PassWord");
if (UserID != "" && Pass != "") {
$.ajax({
url: "/api/Login/CheckLoginNoCode",
data: JSON.stringify({ username: UserID, password: Pass }),
type: "post",
contentType: 'application/json',
success: function (data) {
if (data.state == "success") {
window.location.href = "Index.aspx";
}
}
});
}
else {
//---显示登录界面
$.login.init();
}
});
})(jQuery);
</script>
</body>
</html>
{
"@category" : "datascan",
"@timestamp" : "2024-11-06T18:35:07.000Z",
"app" : {
"extract" : {
"domain" : [
"w3.org",
"capitalmill.cn"
],
"hostname" : [
"www.capitalmill.cn",
"www.w3.org"
],
"url" : [
"http://www.capitalmill.cn",
"http://www.w3.org/1999/xhtml"
]
},
"http" : {
"bodymd5" : "643686515b800cbb1a41f4fc8ec28692",
"bodymmh3" : -1018977194,
"component" : [
{
"productversion" : "2.1.1",
"productvendor" : "jQuery",
"product" : "jQuery"
},
{
"product" : "ASP.NET",
"productversion" : "4.0.30319",
"productvendor" : "Microsoft"
}
],
"headermd5" : "febd367a015176e786b10927dadf0d21",
"headermmh3" : -28374077,
"title" : "\u5bc4\u9012\u4e1a\u6ce8\u518c\u7cfb\u7edf"
},
"length" : 8459
},
"asn" : "AS56041",
"country" : "CN",
"cpe" : "<enterprise field>: cpe",
"cpecount" : "<enterprise field>: cpecount",
"data" : "HTTP/1.1 200 OK\r\nCache-Control: private\r\nContent-Type: text/html; charset=utf-8\r\nServer: Microsoft-IIS/7.5\r\nSet-Cookie: ASP.NET_SessionId=zb4kruupvqsugocwfhkadfko; path=/; HttpOnly\r\nX-AspNet-Version: 4.0.30319\r\nX-Powered-By: ASP.NET\r\nDate: Wed, 06 Nov 2024 18:35:00 GMT\r\nConnection: close\r\nContent-Length: 8145\r\n\r\n\r\n\r\n<!DOCTYPE html>\r\n\r\n\r\n<html xmlns=\"http://www.w3.org/1999/xhtml\">\r\n<head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /><meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" /><meta name=\"keywords\" /><link href=\"Content/css/framework-font.css\" rel=\"stylesheet\" /><link href=\"Content/css/framework-login.css\" rel=\"stylesheet\" />\r\n <script src=\"Content/jquery-2.1.1.min.js\"></script>\r\n \r\n <title>\r\n\t\u5bc4\u9012\u4e1a\u6ce8\u518c\u7cfb\u7edf\r\n</title></head>\r\n<body>\r\n <div class=\"wrapper\">\r\n <div class=\"container\">\r\n <div class=\"logo\">\r\n <i class=\"fa fa-modx\"></i>\r\n <h1> \u5bc4\u9012\u4e1a\u6ce8\u518c\u7cfb\u7edf</h1>\r\n </div>\r\n <form method=\"post\" action=\"\" id=\"ctl01\" class=\"form\">\r\n<div class=\"aspNetHidden\">\r\n<input type=\"hidden\" name=\"__VIEWSTATE\" id=\"__VIEWSTATE\" value=\"/wEPDwUJMjMzNTAwNzkwZGRGEJCyxlgYap68c0MPhEir9+NqU/24vDRlRhZVdhdusQ==\" />\r\n</div>\r\n\r\n<div class=\"aspNetHidden\">\r\n\r\n\t<input type=\"hidden\" name=\"__VIEWSTATEGENERATOR\" id=\"__VIEWSTATEGENERATOR\" value=\"C2EE9ABB\" />\r\n</div>\r\n <div class=\"row\">\r\n <input id=\"txt_account\" type=\"text\" placeholder=\"\u7528\u6237\u540d\" />\r\n <i class=\"fa fa-user\"></i>\r\n </div>\r\n <div class=\"row\">\r\n <input id=\"txt_password\" type=\"password\" placeholder=\"\u767b\u5f55\u5bc6\u7801\" />\r\n <i class=\"fa fa-key\"></i>\r\n </div>\r\n\r\n <div class=\"row\">\r\n <input id=\"txt_code\" maxlength=\"4\" type=\"text\" placeholder=\"\u9a8c\u8bc1\u7801\" style=\"width: 190px; float: left;\"/>\r\n <div style=\"width: 110px; float: right; padding-top: 14px; padding-left: 14px;\">\r\n \u770b\u4e0d\u6e05\uff1f<a id=\"switchCode\" href=\"\" style=\"text-decoration: none;\"> \u6362\u4e00\u5f20</a>\r\n <img id=\"imgcode\" class=\"authcode\" src=\"/api/Login/GetAuthCode\" width=\"80\" height=\"25\" />\r\n </div>\r\n </div>\r\n\r\n <div class=\"row\">\r\n <button id=\"login_button\" type=\"button\"><span>\u767b\u5f55</span></button>\r\n </div>\r\n <div class=\"row\">\r\n </div>\r\n </form>\r\n <div class=\"login_tips\"></div>\r\n </div>\r\n <ul class=\"bg-bubbles\">\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n <li></li>\r\n </ul>\r\n </div>\r\n\r\n <div class=\"copyright\">\r\n <a href=\"http://www.capitalmill.cn\" style=\"text-decoration: none; color: #fff;\">\u7ecd\u5174\u80af\u7f8e\u4fe1\u606f\u6280\u672f\u6709\u9650\u516c\u53f8\u5f00\u53d1\u56e2\u961f\u51fa\u54c1</a>\r\n <br>\r\n \u9002\u7528\u6d4f\u89c8\u5668\uff1aIE8\u4ee5\u4e0a\u3001360\u3001FireFox\u3001Chrome\u3001Safari \r\n </div>\r\n \r\n\r\n <script type=\"text/javascript\">\r\n //---\u83b7\u53d6URl\u7684\u53c2\u6570\r\n function getUrlParam(name) {\r\n var reg = new RegExp(\"(^|&)\" + name + \"=([^&]*)(&|$)\", \"i\");\r\n var r = window.location.search.substr(1).match(reg);\r\n if (r != null) {\r\n return decodeURI(r[2]);\r\n }\r\n return \"\";//\u5982\u679c\u6b64\u5904\u53ea\u5199return;\u5219\u8fd4\u56de\u7684\u662fundefined\r\n };\r\n\r\n\r\n\r\n (function ($) {\r\n $.login = {\r\n formMessage: function (msg) {\r\n $('.login_tips').find('.tips_msg').remove();\r\n $('.login_tips').append('<div class=\"tips_msg\"><i class=\"fa fa-question-circle\"></i>' + msg + '</div>');\r\n },\r\n loginClick: function () {\r\n var $username = $(\"#txt_account\");\r\n var $password = $(\"#txt_password\");\r\n var $code = $(\"#txt_code\");\r\n if ($username.val() == \"\") {\r\n $username.focus();\r\n $.login.formMessage('\u8bf7\u8f93\u5165\u7528\u6237\u540d\u3002');\r\n return false;\r\n } else if ($password.val() == \"\") {\r\n $password.focus();\r\n $.login.formMessage('\u8bf7\u8f93\u5165\u767b\u5f55\u5bc6\u7801\u3002');\r\n return false;\r\n }\r\n else if ($code.val() == \"\") {\r\n $code.focus();\r\n $.login.formMessage('\u8bf7\u8f93\u5165\u9a8c\u8bc1\u7801\u3002');\r\n return false;\r\n } \r\n else {\r\n $(\"#login_button\").attr('disabled', 'disabled').find('span').html(\"loading...\");\r\n $.ajax({\r\n url: \"/api/Login/CheckLogin\",\r\n data: JSON.stringify({ username: $.trim($username.val()), password: $.trim($password.val()) , code: $.trim($code.val()) }),\r\n type: \"post\",\r\n contentType: 'application/json',\r\n //dataType: \"json\",\r\n success: function (data) {\r\n if (data.state == \"success\") {\r\n $(\"#login_button\").find('span').html(\"\u767b\u5f55\u6210\u529f\uff0c\u6b63\u5728\u8df3\u8f6c...\");\r\n window.setTimeout(function () {\r\n window.location.href = \"Index.aspx\";\r\n },1);\r\n } else {\r\n $(\"#login_button\").removeAttr('disabled').find('span').html(\"\u767b\u5f55\");\r\n $(\"#switchCode\").trigger(\"click\");\r\n $code.val('');\r\n $.login.formMessage(data.message);\r\n }\r\n }\r\n });\r\n }\r\n },\r\n init: function () {\r\n $('.wrapper').height($(window).height());\r\n $(\".container\").css(\"margin-top\", ($(window).height() - $(\".container\").height()) / 2 - 50);\r\n $(window).resize(function (e) {\r\n $('.wrapper').height($(window).height());\r\n $(\".container\").css(\"margin-top\", ($(window).height() - $(\".container\").height()) / 2 - 50);\r\n });\r\n //----\u8f93\u5165\u9a8c\u8bc1\u7801\r\n $(\"#switchCode\").click(function () {\r\n $(\"#imgcode\").attr(\"src\", \"/api/Login/GetAuthCode?time=\" + Math.random());\r\n });\r\n\r\n $(\"#login_button\").click(function () {\r\n $.login.loginClick();\r\n });\r\n document.onkeydown = function (e) {\r\n if (!e) e = window.event;\r\n if ((e.keyCode || e.which) == 13) {\r\n document.getElementById(\"login_button\").focus();\r\n document.getElementById(\"login_button\").click();\r\n }\r\n }\r\n }\r\n };\r\n $(function () {\r\n\r\n\r\n\r\n var UserID = getUrlParam(\"UserID\");\r\n var Pass = getUrlParam(\"PassWord\");\r\n if (UserID != \"\" && Pass != \"\") {\r\n $.ajax({\r\n url: \"/api/Login/CheckLoginNoCode\",\r\n data: JSON.stringify({ username: UserID, password: Pass }),\r\n type: \"post\",\r\n contentType: 'application/json',\r\n success: function (data) {\r\n if (data.state == \"success\") {\r\n window.location.href = \"Index.aspx\";\r\n }\r\n }\r\n });\r\n }\r\n else {\r\n //---\u663e\u793a\u767b\u5f55\u754c\u9762\r\n $.login.init();\r\n }\r\n });\r\n })(jQuery);\r\n \r\n </script>\r\n</body>\r\n</html>",
"datamd5" : "29d9d5ef8cf7447433e8ab1e7e507b73",
"datammh3" : 711877722,
"device" : {
"class" : "<enterprise field>: device.class"
},
"geolocus" : {
"asn" : "AS56041",
"continent" : "AS",
"continentname" : "Asia",
"country" : "CN",
"countryname" : "China",
"domain" : [
"chinamobile.com"
],
"isineu" : "false",
"latitude" : "35.86166",
"location" : "35.86166,104.195397",
"longitude" : "104.195397",
"netname" : "CMNET",
"organization" : "China Mobile Communications Corporation",
"subnet" : "112.15.0.0/17"
},
"ip" : "112.15.80.137",
"ipv6" : "false",
"latitude" : "34.7732",
"location" : "34.7732,113.7220",
"longitude" : "113.7220",
"node" : {
"country" : "<enterprise field>: node.country",
"groupid" : "<enterprise field>: node.groupid",
"id" : "<enterprise field>: node.id",
"physicalcountry" : "<enterprise field>: node.physicalcountry"
},
"organization" : "China Mobile communications corporation",
"os" : "Windows",
"osvendor" : "Microsoft",
"osversion" : [
"Server 2008",
7
],
"port" : 86,
"product" : "IIS",
"productvendor" : "Microsoft",
"productversion" : "7.5",
"protocol" : "http",
"protocolversion" : "1.1",
"reason" : "OK",
"seen_date" : "2024-11-06",
"source" : "datascan",
"status" : 200,
"subnet" : "112.12.0.0/14",
"tag" : "<enterprise field>: tag",
"tls" : "false",
"transport" : "tcp",
"url" : "/"
}