wangheng.org Report : Visit Site


  • Ranking Alexa Global: # 991,509,Alexa Ranking in China is # 63,160

    Server:nginx...
    X-Powered-By:PHP/5.4.45

    The main IP address: 67.209.183.199,Your server United States,Dothan ISP:Quickthink Media  TLD:org CountryCode:US

    The description :王恒的技术博客 -- make progress a little day by day...

    This report updates in 25-Aug-2018

Created Date:2011-07-20

Technical data of the wangheng.org


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

Latitude: 31.199819564819
Longitude: -85.417678833008
Country: United States (US)
City: Dothan
Region: Alabama
ISP: Quickthink Media

HTTP Header Analysis


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

Content-Length:10653
X-Powered-By:PHP/5.4.45
Content-Encoding:gzip
Vary:Accept-Encoding, Cookie
Server:nginx
Last-Modified:Wed, 18 Jul 2018 10:06:07 GMT
Connection:keep-alive
Cache-Control:max-age=3, must-revalidate
Date:Sat, 25 Aug 2018 04:45:20 GMT
Content-Type:text/html; charset=UTF-8

DNS

soa:f1g1ns1.dnspod.net. freednsadmin.dnspod.com. 1534765823 3600 180 1209600 180
ns:f1g1ns1.dnspod.net.
f1g1ns2.dnspod.net.
ipv4:IP:67.209.183.199
ASN:25820
OWNER:IT7NET - IT7 Networks Inc, CA
Country:CA

HtmlToText

王恒's blog do one thing and do it well.  首页 技术探讨 vimwiki 我的作品 about me kuaipan_uploader开发分享 作者: 王恒 发表于 2015年 5月 27日 ps:将原来的一篇文章拆开了, 上篇 是安装使用讲解,这篇是开发过程讲解。 以前使用dropbox的linux客户端 备份 vps上的文件和数据,但是近来dorpbox在国内越来越难访问,加上dropbox本身的容量只有几g,于是有了自己动刀写一个网盘的客户端,首先想到的是百度网盘,2t的巨大容量肯定是够用了! 没想到这个决定却是悲剧的开始,按照百度pcs的api文档写了半天,没想到pcs开通居然审核了一周多还不通过! 联系客服,没想到他们的pcs api已经不审核新的申请了!再次吐槽下,你不审核,申请的时候就不能给个提示么!!! 遂放弃! 然后就想到了还是用金山快盘吧,前段时间刚被迅雷收购,速度方面应该是没有问题。找到金山快盘的官方开放平台,看了看文档似乎是…有点麻烦啊。不过本着有难度才有挑战的原则,还是开搞了。下面介绍下开发过程中遇到的一些问题。 首先就是快盘的授权机制,本来是不太复杂,但是它的授权流程签名并不支持plaintext明文文本格式,只支持了一个hmac-sha1加密方式。为了处理这个签名倒是走了一些弯路。 拿到授权token的过程可以总结为三歩走: 获取未授权的临时 token; 用户登陆并授权你的应用; 根据临时 token换取真实的 access_token。 图示如下: 在每次请求中,下面几个参数是必须的 name required type and limit description oauth_consumer_key y string 第1步的 consumer_key oauth_signature y string 本次请求的签名,生成方法请参考 附录-签名生成算法 oauth_timestamp y int 时间戳,正整数,和标准时间不超过5分钟 oauth_nonce y string [ 0-9a-za-z_ ]随机字符串,长度小于32字节。每次请求请使用不同的nonce oauth_consumer_key可以在你创建应用的时候拿到,oauth_timestamp为标准的unix时间戳格式,oauth_nonce每次都生成一个随机数,这几个参数都非常好处理,主要就是oauth_signature这个费些周章。 官方的oauth签名生成讲的比较具体,其实获取签名的方式也非常简单: 计算串基 根据串基按hmac-sha1获取签名并使用bash64和url_encode 转码 生成签名的时候,如果是申请request_token 那么hmac_sha1加密的key 就是你的consumer_secret+&,其他都是consumer_secret+&+oauth_token_secret! linux shell中处理url_encode 没有太好的办法,我索性就写了一个函数用sed处理了,代码如下: #url encode function url_encode { url=$1 echo -n $(echo -n "$url" | sed 's/\%/\%25/g'|sed 's/&/\%26/g' |sed 's/:/\%3a/g' |sed 's/\//\%2f/g'| sed 's/=/\%3d/g' |sed 's/ /\%20/g' |sed 's/@/\%40/g' |sed 's/+/\%2b/g' |sed 's/\*/\%2a/g') } 拼接字符串基可归结为:请求方式&url_encode(请求url)&(url_encode(参数1+参数2… )) 使用bash获取签名处理方法如下: function get_signature { method=$1 url=$2 data=$3 token_secret=$4 baseurl="$1&$(url_encode "$2")&$(url_encode "$3")" signature=$(echo -n $baseurl | openssl dgst -sha1 -binary -hmac "$app_consumer_secret&$token_secret" |base64) echo -n $(url_encode $signature) } 《阅读全文》 默认分类 -- 分类: linux学习 , 实用工具 , 最近添加 awk kuaipan linux sed shell tr 快盘 脚本 -- 18 条评论 » linux版快盘上传下载脚本 作者: 王恒 发表于 2015年 5月 13日 ps:将脚本的开发过程移动到了 这里 。想了解下开发步骤的可以参考~~ 安装使用 此脚本适用于大部分bash环境,已经在cygwin,ubuntu14.04,debian,centos6,mac-osx等环境通过测试。 1.依赖项 使用此程序前请确认你的linux或者cygwin支持如下命令: curl sed awk basename date grep tr od openssl base64 2.配置 如果你想使用自己的app_key你需要首先注册一个金山快盘账号,然后到这里 地址 创建一个你自己的应用并把得到的 consumer_key、consumer_secret填写到脚本相应位置。 当然此步骤可以略过,你可以直接使用脚本中填写好的consumer_key、consumer_secret,我创建的应用名称all4fun. 3.安装 wget https://github.com/wujiwh/kuaipan_uploader/archive/master.zip unzip master.zip cd kuaipan_uploader-master #或者 : git clone https://github.com/wujiwh/kuaipan_uploader.git cd kuaipan_uploader #上面两种方式选择一种即可 #赋予脚本执行权限并执行 chmod a+x kuaipan_uploader.sh ./kuaipan_uploader.sh 然后根据提示完成api的授权流程,得到授权token。脚本会自动保存得到的授权信息到config_file 变量对应配置文件,默认为~/.kuaipan_upload.conf 4. 使用说明 kuaipan uploader v1.1.0 wangheng - [email protected] usage: /usr/bin/kuaipan command [parameters]... commands: upload [local file] <remote file> download [remote file] <local file> delete [remote file/remote dir] list <remote dir> info relink for more informations, please visit http://wangheng.org. 其中[xxx]内的为必填参数,<xxx>内的为可选参数 比如执行 ./kuaipan_uploader.sh upload a.txt 后面的<remote file>可以不填,不填写的话,默认上传到网盘根目录或者应用程序根目录的同名文件。 (跟你创建应用的时候选择的选项有关) 其他,下载和删除都是类似如上… 注意:如果上传到远程某个目录内的话,请务必保证此目录已存在! 执行 ./kuaipan_uploader.sh info 可以查看网盘的用户名,总容量和可用容量。 执行 ./kuaipan_uploader.sh list 可以查看网盘内已经存在的文件以及目录(非结构化)。 执行 ./kuaipan_uploader.sh relink 可以删除网盘授权信息并重新授权 5 、卸载 此工具为绿色软件,使用时候复制到执行目录并赋予执行权限即可。 如果想卸载删除此工具,请连带删除 config_file 变量后面的配置文件,默认为~/.kuaipan_upload.conf 许可证 kuaipan uploader 基于gpl第二版或以后版本发布。详见license文件 项目开源在我的github : https://github.com/wujiwh/kuaipan_uploader 默认分类 -- 分类: linux学习 , 技术探讨 , 最近添加 awk curl kuaipan linux openssl sed shell 开源 -- 27 条评论 » ubuntu 安装配置denyhosts 作者: 王恒 发表于 2015年 5月 6日 denyhosts是使用python 语言写的一个程序,它会分析sshd的日志文件(/var/log/auth.log*),当发现大量重复的攻击时会记录ip到/etc/hosts.deny文件,从而达到自动屏攻击者ip的功能。 目前官网最新版本是2.10,记得以前的ubuntu版本(<=12.04lts)中好像直接apt-get install denyhosts 就可以了,在最新的发行版不知为何不见了。 安装 你可以前往官网http://sourceforge.net/projects/denyhost/ 选择一个你喜欢的版本下载,或者直接运行下面的命令下载。 cd /tmp/ && wget http://jaist.dl.sourceforge.net/project/denyhost/denyhost-2.10/denyhosts-2.10.tar.gz #解压 tar xzvf denyhosts-2.10.tar.gz #切换到目录 cd denyhosts #安装 sudo python setup.py install 《阅读全文》 默认分类 -- 分类: linux学习 , 最近添加 denyhost linux server ubuntu -- 3 条评论 » 1 2 3 4 5 6 7 8 9 下一页 最后一页  标签 apple awk c# coder dns firefox first blog html ip ipad2 javascript kuaipan lamp linux mysql nginx nvidia openssh pear php putty sed shell ssh tunnelier ubuntu vim vim插件 visual studio vpn vps wiki win7 windows wordpress 代理 多域名 工具 更新源 流媒体 环境搭建 编译 翻墙 脚本 越狱 分类目录 linux学习 (27) windows (19) 业界动态 (3) 乱七八糟 (5) 实用工具 (8) 技术探讨 (58) 转载 (6) 最近添加 (55) 生活杂谈 (2) 最新评论 影乐: 头一次见用wp的用这个主题。 态度xiaomi: 学习新内容 苏红文创: 文章写的挺不错的,留言支持下 跨境电商培训: 果断mark!!!!! ila: 我没写过android,怎么 magot: 这个他不需要用form表单提 浙江经济理事会: 牛人,佩服! 烟台淘宝代运营: 挺有用,顶一个 友情链接 centos教程™ lamp技术博客 oophp开源博客 喻名堂™ 恋香缘™ 朴人博客 rss 订阅  i'm wang heng in china. welcom to my blog. © 2018 wangheng the page generation takes 0.207 seconds, with 53 times query

URL analysis for wangheng.org


https://wangheng.org/tag/denyhost
https://wangheng.org/category/skill-discuss/%e8%bd%ac%e8%bd%bd
https://wangheng.org/about-me
https://wangheng.org/tag/html
https://wangheng.org/tag/%e5%a4%9a%e5%9f%9f%e5%90%8d
https://wangheng.org/kuaipan-uploader-dev-share.html#more-95109
https://wangheng.org/tag/%e4%bb%a3%e7%90%86
https://wangheng.org/kuaipan-uploader-dev-share.html
https://wangheng.org/tag/visual-studio
https://wangheng.org/tag/%e6%b5%81%e5%aa%92%e4%bd%93
https://wangheng.org/tag/nvidia
https://wangheng.org/tag/c
https://wangheng.org/raspberry-wifi-car-2.html#comment-5396
https://wangheng.org/raspberry-wifi-car-2.html#comment-5092
https://wangheng.org/tag/openssl

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: WANGHENG.ORG
Registry Domain ID: D162827140-LROR
Registrar WHOIS Server:
Registrar URL: www.namesilo.com
Updated Date: 2017-04-04T20:19:49Z
Creation Date: 2011-07-20T05:35:52Z
Registry Expiry Date: 2018-07-20T05:35:52Z
Registrar Registration Expiration Date:
Registrar: Namesilo, LLC
Registrar IANA ID: 1479
Registrar Abuse Contact Email:
Registrar Abuse Contact Phone:
Reseller:
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Registry Registrant ID: C163326952-LROR
Registrant Name: Domain Administrator
Registrant Organization: See PrivacyGuardian.org
Registrant Street: 1928 E. Highland Ave. Ste F104
Registrant Street: PMB# 255
Registrant City: Phoenix
Registrant State/Province: AZ
Registrant Postal Code: 85016
Registrant Country: US
Registrant Phone: +1.3478717726
Registrant Phone Ext:
Registrant Fax:
Registrant Fax Ext:
Registrant Email: [email protected]
Registry Admin ID: C163326952-LROR
Admin Name: Domain Administrator
Admin Organization: See PrivacyGuardian.org
Admin Street: 1928 E. Highland Ave. Ste F104
Admin Street: PMB# 255
Admin City: Phoenix
Admin State/Province: AZ
Admin Postal Code: 85016
Admin Country: US
Admin Phone: +1.3478717726
Admin Phone Ext:
Admin Fax:
Admin Fax Ext:
Admin Email: [email protected]
Registry Tech ID: C163326952-LROR
Tech Name: Domain Administrator
Tech Organization: See PrivacyGuardian.org
Tech Street: 1928 E. Highland Ave. Ste F104
Tech Street: PMB# 255
Tech City: Phoenix
Tech State/Province: AZ
Tech Postal Code: 85016
Tech Country: US
Tech Phone: +1.3478717726
Tech Phone Ext:
Tech Fax:
Tech Fax Ext:
Tech Email: [email protected]
Name Server: F1G1NS1.DNSPOD.NET
Name Server: F1G1NS2.DNSPOD.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of WHOIS database: 2017-09-30T13:05:45Z <<<

For more information on Whois status codes, please visit https://icann.org/epp

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.

  REFERRER http://www.pir.org/

  REGISTRAR Public Interest Registry

SERVERS

  SERVER org.whois-servers.net

  ARGS wangheng.org

  PORT 43

  TYPE domain

DOMAIN

  NAME wangheng.org

  HANDLE D162827140-LROR

  CREATED 2011-07-20

STATUS
clientTransferProhibited https://icann.org/epp#clientTransferProhibited

NSERVER

  F1G1NS1.DNSPOD.NET 180.163.19.15

  F1G1NS2.DNSPOD.NET 182.140.167.188

OWNER

  HANDLE C163326952-LROR

  NAME Domain Administrator

  ORGANIZATION See PrivacyGuardian.org

ADDRESS

STREET
1928 E. Highland Ave. Ste F104
PMB# 255

  CITY Phoenix

  STATE AZ

  PCODE 85016

  COUNTRY US

  PHONE +1.3478717726

  EMAIL [email protected]

ADMIN

  HANDLE C163326952-LROR

  NAME Domain Administrator

  ORGANIZATION See PrivacyGuardian.org

ADDRESS

STREET
1928 E. Highland Ave. Ste F104
PMB# 255

  CITY Phoenix

  STATE AZ

  PCODE 85016

  COUNTRY US

  PHONE +1.3478717726

  EMAIL [email protected]

TECH

  HANDLE C163326952-LROR

  NAME Domain Administrator

  ORGANIZATION See PrivacyGuardian.org

ADDRESS

STREET
1928 E. Highland Ave. Ste F104
PMB# 255

  CITY Phoenix

  STATE AZ

  PCODE 85016

  COUNTRY US

  PHONE +1.3478717726

  EMAIL [email protected]

  REGISTERED yes

Go to top

Mistakes


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

  • www.uwangheng.com
  • www.7wangheng.com
  • www.hwangheng.com
  • www.kwangheng.com
  • www.jwangheng.com
  • www.iwangheng.com
  • www.8wangheng.com
  • www.ywangheng.com
  • www.wanghengebc.com
  • www.wanghengebc.com
  • www.wangheng3bc.com
  • www.wanghengwbc.com
  • www.wanghengsbc.com
  • www.wangheng#bc.com
  • www.wanghengdbc.com
  • www.wanghengfbc.com
  • www.wangheng&bc.com
  • www.wanghengrbc.com
  • www.urlw4ebc.com
  • www.wangheng4bc.com
  • www.wanghengc.com
  • www.wanghengbc.com
  • www.wanghengvc.com
  • www.wanghengvbc.com
  • www.wanghengvc.com
  • www.wangheng c.com
  • www.wangheng bc.com
  • www.wangheng c.com
  • www.wanghenggc.com
  • www.wanghenggbc.com
  • www.wanghenggc.com
  • www.wanghengjc.com
  • www.wanghengjbc.com
  • www.wanghengjc.com
  • www.wanghengnc.com
  • www.wanghengnbc.com
  • www.wanghengnc.com
  • www.wanghenghc.com
  • www.wanghenghbc.com
  • www.wanghenghc.com
  • www.wangheng.com
  • www.wanghengc.com
  • www.wanghengx.com
  • www.wanghengxc.com
  • www.wanghengx.com
  • www.wanghengf.com
  • www.wanghengfc.com
  • www.wanghengf.com
  • www.wanghengv.com
  • www.wanghengvc.com
  • www.wanghengv.com
  • www.wanghengd.com
  • www.wanghengdc.com
  • www.wanghengd.com
  • www.wanghengcb.com
  • www.wanghengcom
  • www.wangheng..com
  • www.wangheng/com
  • www.wangheng/.com
  • www.wangheng./com
  • www.wanghengncom
  • www.wanghengn.com
  • www.wangheng.ncom
  • www.wangheng;com
  • www.wangheng;.com
  • www.wangheng.;com
  • www.wanghenglcom
  • www.wanghengl.com
  • www.wangheng.lcom
  • www.wangheng com
  • www.wangheng .com
  • www.wangheng. com
  • www.wangheng,com
  • www.wangheng,.com
  • www.wangheng.,com
  • www.wanghengmcom
  • www.wanghengm.com
  • www.wangheng.mcom
  • www.wangheng.ccom
  • www.wangheng.om
  • www.wangheng.ccom
  • www.wangheng.xom
  • www.wangheng.xcom
  • www.wangheng.cxom
  • www.wangheng.fom
  • www.wangheng.fcom
  • www.wangheng.cfom
  • www.wangheng.vom
  • www.wangheng.vcom
  • www.wangheng.cvom
  • www.wangheng.dom
  • www.wangheng.dcom
  • www.wangheng.cdom
  • www.wanghengc.om
  • www.wangheng.cm
  • www.wangheng.coom
  • www.wangheng.cpm
  • www.wangheng.cpom
  • www.wangheng.copm
  • www.wangheng.cim
  • www.wangheng.ciom
  • www.wangheng.coim
  • www.wangheng.ckm
  • www.wangheng.ckom
  • www.wangheng.cokm
  • www.wangheng.clm
  • www.wangheng.clom
  • www.wangheng.colm
  • www.wangheng.c0m
  • www.wangheng.c0om
  • www.wangheng.co0m
  • www.wangheng.c:m
  • www.wangheng.c:om
  • www.wangheng.co:m
  • www.wangheng.c9m
  • www.wangheng.c9om
  • www.wangheng.co9m
  • www.wangheng.ocm
  • www.wangheng.co
  • wangheng.orgm
  • www.wangheng.con
  • www.wangheng.conm
  • wangheng.orgn
  • www.wangheng.col
  • www.wangheng.colm
  • wangheng.orgl
  • www.wangheng.co
  • www.wangheng.co m
  • wangheng.org
  • www.wangheng.cok
  • www.wangheng.cokm
  • wangheng.orgk
  • www.wangheng.co,
  • www.wangheng.co,m
  • wangheng.org,
  • www.wangheng.coj
  • www.wangheng.cojm
  • wangheng.orgj
  • www.wangheng.cmo
Show All Mistakes Hide All Mistakes