kyon.moe Report : Visit Site


  • Server:nginx/1.10.3 (Ubuntu...

    The main IP address: 198.71.89.244,Your server United States,Henderson ISP:Enzu Inc  TLD:moe CountryCode:US

    The description :绯色菌的日常 我的博客 存在感。。。 posted on 2018年9月18日 in 未分类 刷存在感 准备开始自己动手做jpython了 posted on 2015年12月21日 in 未分类 项目代码(施工中): https://github.com/xia-st/jpython [top] 擦擦擦网站被恶意指向了!!! posted on 2015年8月22日 in 日常 为什么这种几乎没...

    This report updates in 16-Oct-2018

Technical data of the kyon.moe


Geo IP provides you such as latitude, longitude and ISP (Internet Service Provider) etc. informations. Our GeoIP service found where is host kyon.moe. Currently, hosted in United States and its service provider is Enzu Inc .

Latitude: 36.039699554443
Longitude: -115.07579803467
Country: United States (US)
City: Henderson
Region: Nevada
ISP: Enzu Inc

the related websites

    vetstogo.com.au ianridpath.com firsttkd.com tkd.co.uk amazon.com sarkariyojna.co.in punjabi-kavita.com dragonball-multiverse.com 

HTTP Header Analysis


HTTP Header information is a part of HTTP protocol that a user's browser sends to called nginx/1.10.3 (Ubuntu) containing the details of what the browser wants and will accept back from the web server.

Content-Encoding:gzip
Transfer-Encoding:chunked
Server:nginx/1.10.3 (Ubuntu)
Connection:keep-alive
Link:; rel="https://api.w.org/"
Date:Mon, 15 Oct 2018 16:51:51 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:f1g1ns1.dnspod.net. freednsadmin.dnspod.com. 1476755550 3600 180 1209600 180
ns:f1g1ns2.dnspod.net.
f1g1ns1.dnspod.net.
ipv4:IP:198.71.89.244
ASN:18978
OWNER:ENZUINC-US - Enzu Inc, US
Country:US

HtmlToText

绯色菌的日常 我的博客 存在感。。。 posted on 2018年9月18日 in 未分类 刷存在感 准备开始自己动手做jpython了 posted on 2015年12月21日 in 未分类 项目代码(施工中): https://github.com/xia-st/jpython [top] 擦擦擦网站被恶意指向了!!! posted on 2015年8月22日 in 日常 为什么这种几乎没人看的网站都会被恶意指向。。。而且强行将排名弄到百度第一个。。。不过现在通过各种百度谷歌已经将问题解决了,估计过段时间那些网站就不会出现在百度第一页上了吧 [top] pythonchallenge lv07 posted on 2015年8月13日 in python , pythonchallenge http://www.pythonchallenge.com/pc/def/oxygen.html 在这一关卡中有一张图片,图片中间有一条颜色深浅不一的灰色带。那么我们可以猜想取出中间这段灰色带的rgb值,并把它当做ascii值转化为字符。经过试验发现这个猜想是正确的。 为了能够使用python来获取图片的rgb值,需要安装pil模块,在ubuntu中如果无法显示图片则可以尝试安装安装 imagemagic 。 shell sudo apt-get install imagemagic 1 sudo apt - get install imagemagic 我的代码 python from pil import image img = image.open('oxygen.png') r = [] x = 0 y = 47 while true: i = img.getpixel((x, y)) if(i[0] != i[1] or i[1] != i[2]): break r.append(i[0]) x = x + 7 print "".join([chr(i) for i in r]) 1 2 3 4 5 6 7 8 9 10 11 12 from pil import image img = image . open ( 'oxygen.png' ) r = [ ] x = 0 y = 47 while true : i = img . getpixel ( ( x , y ) ) if ( i [ 0 ] != i [ 1 ] or i [ 1 ] != i [ 2 ] ) : break r . append ( i [ 0 ] ) x = x + 7 print "" . join ( [ chr ( i ) for i in r ] ) (更多…) [top] pythonchallenge lv06 posted on 2015年8月13日 in python , pythonchallenge http://www.pythonchallenge.com/pc/def/channel.html 查看该关卡的源码,会发现有一个注释“zip”,这是在提示我们要把关卡链接最后面的html改成zip。 访问修改过的链接后会下载到一个压缩文件。打开后阅读其中的readme文件,就可以得到相关信息:从90052开始一个个获取相应压缩文件的注释信息,并将其打印出来。 我的代码 python import zipfile, re z = zipfile.zipfile('channel.zip', 'r') findname = re.compile(r"is (\d+)").search filename = '90052.txt' x = [] while true: text = z.read(filename) result = findname(text) x.append(z.getinfo(filename).comment) if result: filename = result.group(1) + '.txt' else: break print filename print text print ''.join(x) 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 import zipfile , re z = zipfile . zipfile ( 'channel.zip' , 'r' ) findname = re . compile ( r "is (\d+)" ) . search filename = '90052.txt' x = [ ] while true : text = z . read ( filename ) result = findname ( text ) x . append ( z . getinfo ( filename ) . comment ) if result : filename = result . group ( 1 ) + '.txt' else : break print filename print text print '' . join ( x ) (更多…) [top] 禁止垃圾评论失败。。。 posted on 2015年6月7日 in 未分类 禁止垃圾评论失败。。。(明明博客里面一个人都没有为什么要在意垃圾评论) 该想个办法弄个验证码了。。。或许还得学学wordpress插件的制作方法。。。不过现在得准备科目三和四级考试= = [top] 没了垃圾评论一身轻松 posted on 2015年6月3日 in 未分类 找了个好用的插件,应该能够杜绝垃圾评论了。。。如果还是不行的话得考虑手写个验证码功能了23333 [top] pythonchallenge lv05 posted on 2015年5月5日 in pythonchallenge http://www.pythonchallenge.com/pc/def/peak.html 这道题目网页的标题为peak hell,而文字里面提到了让我们“读”它,于是就能发现“peak hell”的发音和”pickle”很像,于是可以得知这题需要用到 pickle 模块。 又在网页源码中能找到一个文件,下载下这个文件后也能发现这个是一个序列化对象,需要用pickle模块载入。载入文件的结果为一个list和 set组合的 数组,其中最小的每项第一个数据为单个字符,第二个数据为数字,查资料后得知只需要把前面的字符打印后面数字的次数后就能得出结果。 我的代码 python import pickle f = open('banner.p', 'r') p = pickle.load(f) for i in p: x = [] for j in i: x.append(j[0] * j[1]) print ''.join(x) 1 2 3 4 5 6 7 8 import pickle f = open ( 'banner.p' , 'r' ) p = pickle . load ( f ) for i in p : x = [ ] for j in i : x . append ( j [ 0 ] * j [ 1 ] ) print '' . join ( x ) (更多…) [top] pythonchallenge lv04 posted on 2015年5月5日 in pythonchallenge http://www.pythonchallenge.com/pc/def/linkedlist.php 根据网页源代码里面的提示,在点击图片后会出来一个提示,让我们把一个数字写入到url中,新页面中也会有另一个提示,也让我们继续填数字。根据一开始的提示这个过程会循环400多次,所以必须要写代码来完成这个操作。 我的代码: python import urllib2, urllib url = 'http://www.pythonchallenge.com/pc/def/linkedlist.php' msg = {'nothing': '12345'} while true: res = urllib2.urlopen(url + '?' + urllib.urlencode(msg)) response = res.read() a = response.split(' ') if not a[len(a) - 1].isdigit(): break msg['nothing'] = a[len(a) - 1] print url + '?' + urllib.urlencode(msg) print response 1 2 3 4 5 6 7 8 9 10 11 import urllib2 , urllib url = 'http://www.pythonchallenge.com/pc/def/linkedlist.php' msg = { 'nothing' : '12345' } while true : res = urllib2 . urlopen ( url + '?' + urllib . urlencode ( msg ) ) response = res . read ( ) a = response . split ( ' ' ) if not a [ len ( a ) - 1 ] . isdigit ( ) : break msg [ 'nothing' ] = a [ len ( a ) - 1 ] print url + '?' + urllib . urlencode ( msg ) print response ps: a[len(a) – 1]可以用a[-1]来代替 (更多…) [top] pythonchallenge lv03 posted on 2015年5月5日 in pythonchallenge http://www.pythonchallenge.com/pc/def/equality.html 也是从网页源代码中可以取得数据 题目要求是找出左边和右边都正好有3个大写字母的小写字母 我的代码 python import re s = ''.join([line.rstrip() for line in open('equality.txt')]) str = r'[a-z][a-z]{3}([a-z])[a-z]{3}[a-z]' m = ''.join(re.findall(str, s)) print m 1 2 3 4 5 import re s = '' . join ( [ line . rstrip ( ) for line in open ( 'equality.txt' ) ] ) str = r '[a-z][a-z]{3}([a-z])[a-z]{3}[a-z]' m = '' . join ( re . findall ( str , s ) ) print m (更多…) [top] ← older posts 近期文章 存在感。。。 准备开始自己动手做jpython了 擦擦擦网站被恶意指向了!!! pythonchallenge lv07 pythonchallenge lv06 近期评论 window cleaners edinburgh 发表在《 python爬虫实战教程——爬取起点网示例 》 compare removal quotes 发表在《 python爬虫实战教程——爬取起点网示例 》 conveyancing fees online 发表在《 python爬虫实战教程——爬取起点网示例 》 payday loan 发表在《 pythonchallenge lv04 》 바카라사이트 发表在《 禁止垃圾评论失败。。。 》 文章归档 2018年九月 2015年十二月 2015年八月 2015年六月 2015年五月 2015年四月 分类目录 python pythonchallenge 日常 未分类 功能 登录 文章 rss 评论 rss wordpress.org © 2018 绯色菌的日常 powered by bestweblayout and wordpress

URL analysis for kyon.moe


http://www.kyon.moe/?p=121#comment-5819
http://www.kyon.moe/wp-login.php
http://www.kyon.moe/?p=153#more-153
http://www.kyon.moe/?m=201809
http://www.kyon.moe/?feed=rss2
http://www.kyon.moe/?p=188
http://www.kyon.moe/?m=201504
http://www.kyon.moe/?p=153
http://www.kyon.moe/?m=201506
http://www.kyon.moe/?p=69#comment-5823
http://www.kyon.moe/?p=157
http://www.kyon.moe/?m=201508
http://www.kyon.moe/?p=121#more-121
http://www.kyon.moe/?feed=comments-rss2
http://www.kyon.moe/?p=126#more-126

Whois Information


Whois is a protocol that is access to registering information. You can reach when the website was registered, when it will be expire, what is contact details of the site with the following informations. In a nutshell, it includes these informations;

Domain Name: kyon.moe
Registry Domain ID: D645239-MOE
Registrar WHOIS Server: whois.godaddy.com
Registrar URL: whois.godaddy.com
Updated Date: 2018-09-23T04:26:16Z
Creation Date: 2016-10-18T01:42:29Z
Registry Expiry Date: 2019-10-17T23:59:59Z
Registrar: GoDaddy.com, Inc.
Registrar IANA ID: 146
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.4806242505
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientRenewProhibited https://icann.org/epp#clientRenewProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Registry Registrant ID:
Registrant Name:
Registrant Organization:
Registrant Street:
Registrant Street:
Registrant Street:
Registrant City:
Registrant State/Province: Zhejiang
Registrant Postal Code:
Registrant Country: CN
Registrant Phone:
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Admin ID:
Admin Name:
Admin Organization:
Admin Street:
Admin Street:
Admin Street:
Admin City:
Admin State/Province:
Admin Postal Code:
Admin Country:
Admin Phone:
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Registry Tech ID:
Tech Name:
Tech Organization:
Tech Street:
Tech Street:
Tech Street:
Tech City:
Tech State/Province:
Tech Postal Code:
Tech Country:
Tech Phone:
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: Please query the RDDS service of the Registrar of Record identified in this output for information on how to contact the Registrant, Admin, or Tech contact of the queried domain name.
Name Server: f1g1ns2.dnspod.net
Name Server: f1g1ns1.dnspod.net
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2019-02-03T01:25:31Z <<<
The above WHOIS results have been redacted to remove potential personal data. The full WHOIS output may be available to individuals and organisations with a legitimate interest in accessing this data not outweighed by the fundamental privacy rights of the data subject. To find out more, or to make a request for access, please visit: RDDSrequest.nic.moe.
For more information on Whois status codes, please visit https://icann.org/epp

Interlink Co., Ltd., (“Interlink”) the Registry Operator for .MOE, has collected this information for the WHOIS database through an ICANN-Accredited Registrar. This information is provided to you for informational purposes only and is designed to assist persons in determining contents of a domain name registration record in the .MOE registry database. Interlink makes this information available to you "as is" and does 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: (1) to allow, enable, or otherwise support the transmission of mass unsolicited, commercial advertising or solicitations via direct mail, electronic mail, or by telephone; (2) in contravention of any applicable data and privacy protection acts; or (3) to enable high volume, automated, electronic processes that apply to the registry (or its systems). Compilation, repackaging, dissemination, or other use of the WHOIS database in its entirety, or of a substantial portion thereof, is not allowed without Interlink’s prior written permission.

Interlink reserves the right to modify or change these conditions at any time without prior or subsequent notification of any kind. By executing this query, in any manner whatsoever, you agree to abide by these terms.

NOTE: FAILURE TO LOCATE A RECORD IN THE WHOIS DATABASE IS NOT INDICATIVE OF THE AVAILABILITY OF A DOMAIN NAME.


SERVERS

  SERVER moe.whois-servers.net

  ARGS kyon.moe

  PORT 43

  TYPE domain

DOMAIN

  NAME kyon.moe

NSERVER

  F1G1NS2.DNSPOD.NET 58.247.212.119

  F1G1NS1.DNSPOD.NET 14.215.155.156

  REGISTERED yes

Go to top

Mistakes


The following list shows you to spelling mistakes possible of the internet users for the website searched .

  • www.ukyon.com
  • www.7kyon.com
  • www.hkyon.com
  • www.kkyon.com
  • www.jkyon.com
  • www.ikyon.com
  • www.8kyon.com
  • www.ykyon.com
  • www.kyonebc.com
  • www.kyonebc.com
  • www.kyon3bc.com
  • www.kyonwbc.com
  • www.kyonsbc.com
  • www.kyon#bc.com
  • www.kyondbc.com
  • www.kyonfbc.com
  • www.kyon&bc.com
  • www.kyonrbc.com
  • www.urlw4ebc.com
  • www.kyon4bc.com
  • www.kyonc.com
  • www.kyonbc.com
  • www.kyonvc.com
  • www.kyonvbc.com
  • www.kyonvc.com
  • www.kyon c.com
  • www.kyon bc.com
  • www.kyon c.com
  • www.kyongc.com
  • www.kyongbc.com
  • www.kyongc.com
  • www.kyonjc.com
  • www.kyonjbc.com
  • www.kyonjc.com
  • www.kyonnc.com
  • www.kyonnbc.com
  • www.kyonnc.com
  • www.kyonhc.com
  • www.kyonhbc.com
  • www.kyonhc.com
  • www.kyon.com
  • www.kyonc.com
  • www.kyonx.com
  • www.kyonxc.com
  • www.kyonx.com
  • www.kyonf.com
  • www.kyonfc.com
  • www.kyonf.com
  • www.kyonv.com
  • www.kyonvc.com
  • www.kyonv.com
  • www.kyond.com
  • www.kyondc.com
  • www.kyond.com
  • www.kyoncb.com
  • www.kyoncom
  • www.kyon..com
  • www.kyon/com
  • www.kyon/.com
  • www.kyon./com
  • www.kyonncom
  • www.kyonn.com
  • www.kyon.ncom
  • www.kyon;com
  • www.kyon;.com
  • www.kyon.;com
  • www.kyonlcom
  • www.kyonl.com
  • www.kyon.lcom
  • www.kyon com
  • www.kyon .com
  • www.kyon. com
  • www.kyon,com
  • www.kyon,.com
  • www.kyon.,com
  • www.kyonmcom
  • www.kyonm.com
  • www.kyon.mcom
  • www.kyon.ccom
  • www.kyon.om
  • www.kyon.ccom
  • www.kyon.xom
  • www.kyon.xcom
  • www.kyon.cxom
  • www.kyon.fom
  • www.kyon.fcom
  • www.kyon.cfom
  • www.kyon.vom
  • www.kyon.vcom
  • www.kyon.cvom
  • www.kyon.dom
  • www.kyon.dcom
  • www.kyon.cdom
  • www.kyonc.om
  • www.kyon.cm
  • www.kyon.coom
  • www.kyon.cpm
  • www.kyon.cpom
  • www.kyon.copm
  • www.kyon.cim
  • www.kyon.ciom
  • www.kyon.coim
  • www.kyon.ckm
  • www.kyon.ckom
  • www.kyon.cokm
  • www.kyon.clm
  • www.kyon.clom
  • www.kyon.colm
  • www.kyon.c0m
  • www.kyon.c0om
  • www.kyon.co0m
  • www.kyon.c:m
  • www.kyon.c:om
  • www.kyon.co:m
  • www.kyon.c9m
  • www.kyon.c9om
  • www.kyon.co9m
  • www.kyon.ocm
  • www.kyon.co
  • kyon.moem
  • www.kyon.con
  • www.kyon.conm
  • kyon.moen
  • www.kyon.col
  • www.kyon.colm
  • kyon.moel
  • www.kyon.co
  • www.kyon.co m
  • kyon.moe
  • www.kyon.cok
  • www.kyon.cokm
  • kyon.moek
  • www.kyon.co,
  • www.kyon.co,m
  • kyon.moe,
  • www.kyon.coj
  • www.kyon.cojm
  • kyon.moej
  • www.kyon.cmo
Show All Mistakes Hide All Mistakes