上一页 1 ··· 7 8 9 10 11 12 13 下一页

2016年4月14日

httplib

摘要: 可爆破目录 #coding=gbkimport httplibconn = httplib.HTTPConnection("www.google.cn")conn.request('get', '/')print conn.getresponse().read()conn.close() httpl 阅读全文

posted @ 2016-04-14 14:23 lly001 阅读(190) 评论(0) 推荐(0) 编辑

Cookielib

摘要: Cookielib模块主要的对象有CookieJar、FileCookieJar、MozillaCookieJar、LWPCookieJar 它们的关系:CookieJar —-派生—->FileCookieJar —-派生—–>MozillaCookieJar和LWPCookieJar 获取Coo 阅读全文

posted @ 2016-04-14 14:22 lly001 阅读(247) 评论(0) 推荐(0) 编辑

urllib2

摘要: import urllib2response = urllib2.urlopen("http://www.baidu.com")print response.read() urlopen(url, data, timeout) 构造Requset import urllib2 request = u 阅读全文

posted @ 2016-04-14 14:21 lly001 阅读(150) 评论(0) 推荐(0) 编辑

mysql提权笔记

摘要: 最近小菜遇到mysql提权,总是会搞错,就记记笔记吧!以后方便用 先说手工吧! mysql<5.0,导出路径随意;5.0<=mysql<5.1,则需要导出至目标服务器的系统目录(如:system32),否则在下一步操作中你会看到“No paths allowed for shared library 阅读全文

posted @ 2016-04-14 14:20 lly001 阅读(392) 评论(0) 推荐(0) 编辑

Python Queue实现生产与消费

摘要: Python Queue模块详解 from:https://blog.linuxeye.com/334.html Python中,队列是线程间最常用的交换数据的形式。Queue模块是提供队列操作的模块,虽然简单易用,但是不小心的话,还是会出现一些意外。 创建一个“队列”对象import Queueq 阅读全文

posted @ 2016-04-14 14:19 lly001 阅读(304) 评论(0) 推荐(0) 编辑

[firefox+plug-n-hack]轻松地配置burpsuite代理https流量

摘要: http://zone.wooyun.org/content/25982 需要用到firefox的插件plug-n-hack下载https://raw.githubusercontent.com/mozmark/ringleader/master/fx_pnh.xpi在firefox中选择从文件中安 阅读全文

posted @ 2016-04-14 14:19 lly001 阅读(513) 评论(0) 推荐(0) 编辑

小菜的正则(备忘而已)

摘要: 为接下来的学习做铺垫 从文本中匹配ip,并返回ip的一个列表 >>> line = "192.31.31.1 wfffwqfwqfqfqfqfq">>> ip = re.findall('(?<![\.\d])(?:\d{1,3}\.){3}\d{1,3}(?![\.\d])',line)>>> i 阅读全文

posted @ 2016-04-14 14:17 lly001 阅读(133) 评论(0) 推荐(0) 编辑

redis小结

该文被密码保护。 阅读全文

posted @ 2016-04-14 14:16 lly001 阅读(54) 评论(0) 推荐(0) 编辑

jenkins

该文被密码保护。 阅读全文

posted @ 2016-04-14 14:16 lly001 阅读(24) 评论(0) 推荐(0) 编辑

SQL注入脚本(基于时间)

摘要: #encoding=utf-8 import httplib import time import string import sys import urllib header = {'Accept':'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Charse... 阅读全文

posted @ 2016-04-14 14:14 lly001 阅读(643) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 下一页

导航