本帖最后由 开玩笑被扣魅力 于 2015-7-29 12:07 编辑
- Domain Name: RYWAF.COM
- Registrar: PDR LTD. D/B/A PUBLICDOMAINREGISTRY.COM
- Sponsoring Registrar IANA ID: 303
- Whois Server: whois.PublicDomainRegistry.com
- Referral URL: http://www.PublicDomainRegistry.com
- Name Server: NS1.51DNS.COM
- Name Server: NS2.51DNS.COM
- Status: clientTransferProhibited http://www.icann.org/epp#clientTransferProhibited
- Updated Date: 24-jul-2015
- Creation Date: 24-jul-2015
- Expiration Date: 24-jul-2016
- ------------> Detailed Info <-----------
- Domain Name: RYWAF.COM
- Registry Domain ID: 1948817882_DOMAIN_COM-VRSN
- Registrar WHOIS Server: whois.publicdomainregistry.com
- Registrar URL: www.publicdomainregistry.com
- Updated Date: 2015-07-24T07:41:18Z
- Creation Date: 2015-07-24T07:41:17Z
- Registrar Registration Expiration Date: 2016-07-24T07:41:17Z
- Registrar: PDR Ltd. d/b/a PublicDomainRegistry.com
- Registrar IANA ID: 303
- Domain Status: clientTransferProhibited
- https://icann.org/epp#clientTransferProhibited
- Registry Registrant ID:
- Registrant Name: XiaoRen
- Registrant Organization: XiaoRen
- Registrant Street: hubei wuhanshi
- Registrant City: Wu Han
- Registrant State/Province: Hu Bei
- Registrant Postal Code: 510000
- Registrant Country: CN
- Registrant Phone: +86.05922669759
- Registrant Phone Ext:
- Registrant Fax:
- Registrant Fax Ext:
- Registrant Email: 124335758#qq.com
- Registry Admin ID:
- Admin Name: XiaoRen
- Admin Organization: XiaoRen
- Admin Street: hubei wuhanshi
- Admin City: Wu Han
- Admin State/Province: Hu Bei
- Admin Postal Code: 510000
- Admin Country: CN
- Admin Phone: +86.05922669759
- Admin Phone Ext:
- Admin Fax:
- Admin Fax Ext:
- Admin Email: 124335758#qq.com
- Registry Tech ID:
- Tech Name: XiaoRen
- Tech Organization: XiaoRen
- Tech Street: hubei wuhanshi
- Tech City: Wu Han
- Tech State/Province: Hu Bei
- Tech Postal Code: 510000
- Tech Country: CN
- Tech Phone: +86.05922669759
- Tech Phone Ext:
- Tech Fax:
- Tech Fax Ext:
- Tech Email: 124335758#qq.com
- Name Server: ns1.51dns.com
- Name Server: ns2.51dns.com
- DNSSEC:Unsigned
- Registrar Abuse Contact Email: abuse-contact#publicdomainregistry.com
- Registrar Abuse Contact Phone: +1-2013775952
- URL of the ICANN WHOIS Data Problem Reporting System:
- http://wdprs.internic.net/
- >>>Last update of WHOIS database: 2015-07-29T03:53:02+0000Z<<<
- For more information on Whois status codes, please visit https://icann.org/epp
- Registration Service Provided By: ZHENGZHOUCENTURYCONNECT ELECTRONIC & TECHNOLOGY DEVELOPMENT CO., LTD
- The data in this whois database is provided to you for information purposes
- only, that is, to assist you in obtaining information about or related to a
- domain name registration record. We make this information available "as is",
- and do not guarantee its accuracy. By submitting a whois query, you agree
- that you will use this data only for lawful purposes and that, under no
- circumstances will you use this data to:
- (1) enable high volume, automated, electronic processes that stress or load
- this whois database system providing you this information; or
- (2) allow, enable, or otherwise support the transmission of mass unsolicited,
- commercial advertising or solicitations via direct mail, electronic mail, or
- by telephone.
- The compilation, repackaging, dissemination or other use of this data is
- expressly prohibited without prior written consent from us. The Registrar of
- record is PDR Ltd. d/b/a PublicDomainRegistry.com.
- We reserve the right to modify these terms at any time.
- By submitting this query, you agree to abide by these terms.
复制代码
7月24注册的域名。
注册者:124335758@qq.com
这域名就有猫腻。
Js判断客户端是否为PC还是手持设备,判定为手机客户端后才跳转并进行文件下载。
- <html xmlns="http://www.w3.org/1999/xhtml"><head>
- <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
- <meta name="viewport" content="initial-scale=1, maximum-scale=1">
- <title></title>
- <script>
- function IsPC() {
- var userAgentInfo = navigator.userAgent;
- var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows Phone", "iPod");
- var flag = true;
- for (var v = 0; v < Agents.length; v++) {
- if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; }
- }
- return flag;
- }
- if (!IsPC()) {
- location.href = '/index.apk';
- }
- </script>
- </head><body>
- </body></html>
复制代码
function IsPC() {
var userAgentInfo = navigator.userAgent;
var Agents = new Array("Android", "iPhone", "SymbianOS", "Windows Phone", "iPod");
var flag = true;
for (var v = 0; v < Agents.length; v++) {
if (userAgentInfo.indexOf(Agents[v]) > 0) { flag = false; break; }
}
return flag;
}
if (!IsPC()) {
location.href = '/index.apk';
}
然后下载APK http://www.rywaf.com/index.apk
文件附件:
index.rar
(271.06 KB, 下载次数: 77)
|