Sep082016
Sep082016
Sep082016
http协议抓包工具Fiddler
Fiddler
编辑
Fiddler是一个http协议调试代理工具,它能够记录并检查所有你的电脑和互联网之间的http通讯,设置断点,查看所有的“进出”Fiddler的数据(指cookie,html,js,css等文件,这些都可以让你胡乱修改的意思)。 Fiddler 要比其他的网络调试器要更加简单,因为它不仅仅暴露http通讯还提供了一个用户友好的格式。
https://www.telerik.com/download/fiddler/f...阅读全文
Sep082016
php 依据姓名猜测性别
<?php
/**
* Gender Guesser
*
* This class can guess the gender of chinese names.
*
* Blog Entries: http://blog.wudilabs.org/tag/genderguesser/
* PHP Classes: http://www.phpclasses.org/browse/package/2701.html
*
* PHP versions 5
*
* LICENSE: This program is free software; you can redistribute it
* and/or modify it under the terms of t...阅读全文
Sep072016
Aug272016
Router 开启VPN,Web proxy,Socks代理
/ip firewall nat add action=masquerade chain=srcnat out-interface=ether1
/interface l2tp-server server set default-profile=VPN_Profile enabled=yes
/interface pptp-server server set default-profile=VPN_Profile enabled=yes
/ip pool add name=VPN_Pool ranges=172.31.59.2-172.31.59.20
/ppp profile add change-tcp-mss=yes local-address=172.31.59.174 name=VPN_Profi...阅读全文
Aug262016
密码保护:linux 架设PPTP,L2TP VPN
首先是PPTP
#!/bin/bash
#
# Author: yeho <lj2007331 AT gmail.com>
# Blog: https://blog.linuxeye.com
#
# Installs a PPTP VPN-only system for CentOS
# Check if user is root
[ $(id -u) != "0" ] && { echo -e "\033[31mError: You must be root to run this script\033[0m"; exit 1; }
export PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/u...阅读全文
作者:绝缘体.. | 分类:c++, hbase, html, Linux, windows, 操作系统, 数据库, 编程语言, 首页 | 阅读: | 标签:c++, hbase, html, Linux, windows
要查看留言请输入您的密码。
Aug262016
Aug252016
获取QQ头像的相关接口
http://q2.qlogo.cn/headimg_dl?bs=QQ号&dst_uin=QQ号&src_uin=QQ号&fid=QQ号&spec=100&url_enc=0&referer=bu_interface&term_type=PC
http://q.qlogo.cn/headimg_dl?dst_uin=10001&spec=640&img_type=jpg
收集的关于几个QQ的接口,
包括QQ头像接口,
QQ空间头像接口,
QQ空间说说、日志、留言、
相册统计接口,...阅读全文
Aug102016