Help
RSS
API
Feed
Maltego
Contact
Domain > aiusdc.top
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2026-02-19
104.21.2.90
(
ClassC
)
Port 80
HTTP/1.1 301 Moved PermanentlyDate: Thu, 19 Feb 2026 23:18:33 GMTContent-Type: text/htmlTransfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Location: https://aiusdc.top:443/cf-cache-status: DYNAMICReport-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?suj7TcARXfmIs38UiSVoe3e9JaUn1jIw%2FPTtoK2XS3kyA9zPd%2Fo5waTmswJceZslA%2F%2FFa8mZdaEGowaGyNOnRljIGxnp5n4Wh}}CF-RAY: 9d097be5dc47fff0-PDXalt-svc: h3:443; ma86400 html>head>title>301 Moved Permanently/title>/head>body>center>h1>301 Moved Permanently/h1>/center>hr>center>nginx/1.28.0/center>/body>/html>
Port 443
HTTP/1.1 200 OKDate: Thu, 19 Feb 2026 23:18:33 GMTContent-Type: text/html;charsetUTF-8Transfer-Encoding: chunkedConnection: keep-aliveServer: cloudflareSet-Cookie: CY.ADMINe6975471-eec7-4b24-b622-ce1beb54dd9f; Path/; HttpOnlycontent-language: enaccess-control-allow-origin: *access-control-allow-headers: X-Requested-Withaccess-control-allow-methods: GET,POST,OPTIONScf-cache-status: DYNAMICNel: {report_to:cf-nel,success_fraction:0.0,max_age:604800}Report-To: {group:cf-nel,max_age:604800,endpoints:{url:https://a.nel.cloudflare.com/report/v4?s0DLsYzV3HwBMWlvXdeHFGBBHB4JlVjDgKjeWR6iew%2FEwecn9FoyGFEbRogWNp0xeJytXgoEs5M5XIsRET8yD87MitKhH6ljXRBQ%3D}}CF-RAY: 9d097be899d91319-PDXalt-svc: h3:443; ma86400 !DOCTYPE html>html langen>head> meta charsetUTF-8 /> meta nameviewport contentwidthdevice-width, initial-scale1.0 /> meta http-equivX-UA-Compatible contentieedge /> title>登录/title> !-- libs --> script src/static/assets/libs/vue.min.js>/script> script src/static/assets/libs/element-ui.min.js>/script> script src/static/assets/libs/axios.min.js>/script> script src/static/assets/libs/moment.min.js>/script> !-- 自定义 --> link relstylesheet href/static/assets/style/theme/index.css /> link relstylesheet href/static/assets/style/main.css /> link relstylesheet href/static/assets/style/iconfont/iconfont.css /> script src/static/assets/js/common.js>/script>/head>body>!-- /S #app -->div idapp v-cloak> div classui-login-wrap> ul classui-login-container> div classui-login-form> h1>商户后台登录系统/h1> el-form :modelruleForm :rulesrules refruleForm> el-form-item propusername> el-input v-modelruleForm.username prefix-iconel-icon-user placeholder请输入账号 sizelarge clearable >/el-input> /el-form-item> el-form-item proppassword> el-input v-modelruleForm.password prefix-iconel-icon-lock placeholder请输入密码 sizelarge clearable show-password >/el-input> /el-form-item> !-- 是否启用谷歌验证码 --> el-form-item propdynamic_password> el-input v-modelruleForm.dynamic_password prefix-iconel-icon-lock placeholder请输入动态口令 sizelarge clearable >/el-input> /el-form-item> el-form-item propkaptcha> img classui-login-vcode :srcvcodeUrl height40 v-on:clickrefreshVcode /> el-input v-modelruleForm.kaptcha placeholder请输入右方验证码 sizelarge clearable classui-input-width v-on:keyup.enter.nativehandleSubmit(ruleForm) > /el-input> /el-form-item> el-form-item> el-button v-if!fetchLoading typeprimary v-on:clickhandleSubmit(ruleForm) sizelarge> 登录 /el-button> el-button v-else typeprimary :loadingtrue sizelarge>登录/el-button> /el-form-item>!-- el-form-item>-->!-- a stylecolor: #222222 href/tools/index target_blank stylecolor: #ffecec> 钱包收益图生成工具/a>-->!-- /el-form-item>--> /el-form> /div> div classui-login-footer> p>Copyright© ReservedV.4.2.1.4/p> p > 为了您良好的体验和使用,建议您使用谷歌浏览器. | For your good experience and use, we recommend using Google Chrome. a hrefhttps://www.google.com/intl/zh-TW/chrome/ title下载谷歌浏览器 target_blank >下载谷歌浏览器/a > /p> /div> /ul> /div>/div>!-- /E #app -->script> if (window.top ! window.self) { window.top.location window.location; } new Vue({ el: #app, // 数据 data: function() { return { ruleForm: { username: , password: , dynamic_password: , kaptcha: , }, rules: { username: { required: true, message: 请输入账号, trigger: blur }, { min: 5, max: 16, message: 长度在 5 到 16 个字符, trigger: blur }, , password: { required: true, message: 请输入密码, trigger: blur }, { min: 6, max: 16, message: 长度在 6 到 16 个字符, trigger: blur }, , dynamic_password: { required: true, message: 请输入动态口令, trigger: blur }, , kaptcha: { required: true, message: 请输入右方验证码, trigger: blur }, { min: 5, max: 5, message: 长度为 5 个字符, trigger: blur }, , }, vcodeUrl: , // 验证码地址 fetchLoading: false, }; }, created: function() { this.refreshVcode(); }, // 事件 methods: { // 验证码 refreshVcode: function() { this.vcodeUrl /resource/kaptcha?random + new Date().getTime(); }, // 提交 handleSubmit: function(name) { this.$refsname.validate(valid > { if (!valid) return; this.handleLogin(); }); }, // 登录 handleLogin: async function() { try { if (this.fetchLoading) return; this.fetchLoading true; var res await App.ajax({ method: POST, url: /login, data: this.ruleForm, }); this.fetchLoading false; if (res.code ! 0) { this.refreshVcode(); return; } // 跳转路径(配置) window.location.href /; } catch (error) { this.refreshVcode(); this.fetchLoading false; } }, }, });/script>/body>/html>
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]