网站综合信息 www.huanzi.org
    • 标题:
    • 欢子博客 | Python 爱好者至今还在学习的路上,尚未脱离小白. 
    • 关键字:
    •  
    • 描述:
    • YY频道:286096: 2010夏季会服200件限量版发售! 葵力健植物伟哥: 基因育根官方 
    • 域名信息
    •   
    • 服务器空间
    • IP:该域名无法解析为IP
      地址:
    • 备案信息
    • 备案号: 
    网站收录SEO数据
    • 搜索引擎
    • 收录量
    • 反向链接
    • 其他
    • 雅虎
    •  
    •  
    •  
    • 搜搜
    •  
    •  
    •  
    • 搜狗
    •  
    •  
    • 评级:-/10  
    • 360搜索
    •  
    •  
    •  
    域名流量Alexa排名
    •  
    • 一周平均
    • 一个月平均
    • 三个月平均
    • Alexa全球排名
    • -  
    • 平均日IP
    • 日总PV
    • 人均PV(PV/IP比例)
    • 反向链接
    • dmoz目录收录
    • -  
    • 流量走势图
    域名注册Whois信息

    huanzi.org


    获取时间: 2015年12月12日 23:03:28
    NOT FOUND
    >>> Last update of WHOIS database: 2015-12-12T15:03:24Z <<<

    Access to Public Interest Registry WHOIS information is provided to assist persons in determining the contents of a domain name registration record in the Public Interest Registry registry database. The data in this record is provided by Public Interest Registry for informational purposes only, and Public Interest Registry does not guarantee its accuracy. This service is intended only for query-based access. You agree that you will use this data only for lawful purposes and that, under no circumstances will you use this data to(a) allow, enable, or otherwise support the transmission by e-mail, telephone, or facsimile of mass unsolicited, commercial advertising or solicitations to entities other than the data recipient's own existing customers; or (b) enable high volume, automated, electronic processes that send queries or data to the systems of Registry Operator, a Registrar, or Afilias except as reasonably necessary to register domain names or modify existing registrations. All rights reserved. Public Interest Registry reserves the right to modify these terms at any time. By submitting this query, you agree to abide by this policy.
    同IP网站(同服务器)

    该域名无法解析为IP

    其他后缀域名
    • 顶级域名
    • 相关信息
    网站首页快照(纯文字版)
    抓取时间:2015年03月12日 14:00:11
    网址:http://www.huanzi.org/
    标题:欢子博客 | Python 爱好者至今还在学习的路上,尚未脱离小白.
    关键字:
    描述:YY频道:286096: 2010夏季会服200件限量版发售! 葵力健植物伟哥: 基因育根官方
    主体:
    欢子博客      
    Python 爱好者至今还在学习的路上,尚未脱离小白.
    首页留言板
    一月              
    15
    Mysql 简单的存储过程
    发表在
    Mysql                 | 
    由
    欢子                 | 
    5:03 上午                 |  
    0 评论
    查看存储过程:
    show procedure status; //查看所有存储过程
    show function status;     //查看所有函数
    select name from mysql.proc where db=’数据库名’;
    select routine_name from information_schema.routines where routine_schema='数据库名';
    show procedure status where db='数据库名';
    show create procedure 数据库.存储过程名; //查看存储过程代码
    创建存储过程:
    mysql> Delimiter $ //更改命令结束符:
    mysql> use mysql //选择数据库
    mysql> create procedure test() //创建存储过程:
    ...
    标签: mysql, 存储过程                
    阅读全文 >>
    一月              
    15
    vbs 定时关闭Win 2003 ip安全策略脚本
    发表在
    Windows                 | 
    由
    欢子                 | 
    4:24 上午                 |  
    0 评论
    Win server 2003 上的ip安全策略类似于Linux上的iptables这块要是稍有失误很容易就把自己关在外面,为了方便调试用
    如下脚本
    set ws=createobject("wscript.shell")
    Dim rule,n
    rule=Inputbox("请输入要关闭组织策略名称:" ,"策略名称确认")
    if rule = "" then
    Msgbox "名称不能为空",4096+64,"温馨提示"
    Wscript.Quit
    end if
    Msgbox "要关闭的组织策略名称:"&rule,4096+64,"温馨提示"
    for n=1 to 5
    wscript.sleep 5*60*1000 ' ...
    标签: vbs, 安全策略                
    阅读全文 >>
    一月              
    7
    Windows netstat 管道过滤
    发表在
    Windows                 | 
    由
    欢子                 | 
    2:49 上午                 |  
    0 评论
    linux   查看端口或进程时可通过很多方式过滤结果,今天测试了一下其实windows也带这个功能但只能结合find命令过滤结果。
    C:\Users\Admin>netstat -ano | find /i "ESTABLISHED"
    TCP    127.0.0.1:2559         127.0.0.1:2559         ESTABLISHED     4944
    TCP    127.0.0.1:32828        127.0.0.1:32829        ESTABLISHED     5356
    TCP    127.0.0.1:32829        127.0.0.1:32828        ESTABLISHED     5356
    TCP    192.168.1.100:9996       192.168.1.4:22         ESTABLISHED     9144
    TCP    192 ...
    标签: netstat, netstat 过滤, 端口过滤                
    阅读全文 >>
    一月              
    4
    Python 仿telnet 效果
    发表在
    Python                 | 
    由
    欢子                 | 
    10:18 上午                 |  
    0 评论
    #!/usr/bin/python
    import socket
    import sys
    def host(ip,post):
    sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    sk.settimeout(1)
    try:
    sk.connect((ip,post))
    print 'Server port %d OK!'%(post)
    except Exception:
    print 'Server port %d notconnect!'%(post)
    sk.close()
    if __name__=='__main__':
    host(sys.argv[1],int(sys.argv[2]))
    测试效果:
    [root@127 /]# ./123 192.168.1.80 3 ...
    标签: python 仿telnet 效果                
    阅读全文 >>
    十二月              
    29
    linux 关闭Selinux脚本
    发表在
    shell 脚本                 | 
    由
    大欢子                 | 
    6:54 上午                 |  
    0 评论
    #Set SELINUX
    selinux=/etc/selinux/config
    se=`grep "^SELINUX=" $selinux | cut -b 9-`
    if [ "$se" != "disabled" ];then
    sed -i 's/SELINUX='$se'/SELINUX=disabled/g' $selinux
    else
    echo "SELINUX  Not Open"
    fi
    
    标签: Selinux                
    阅读全文 >>
    下一页 »
    分类目录
    选择分类目录
    Game  (5)
    Linux  (12)
    Mysql  (4)
    News  (3)
    Python  (41)
    shell 脚本  (7)
    Windows  (9)
    网络设备  (4)
    文章归档
    2013 年一月
    2012 

    © 2010 - 2020 网站综合信息查询 同IP网站查询 相关类似网站查询 网站备案查询网站地图 最新查询 最近更新 优秀网站 热门网站 全部网站 同IP查询 备案查询

    2024-12-17 23:58, Process in 0.0044 second.