随笔分类 -  Python

摘要:1 #coding:utf-8 2 import random 3 __author__ = 'Kerne0' 4 class RSA: 5 def __init__(self): 6 self.p=0#大素数P 7 self.q=0#大素数Q... 阅读全文
posted @ 2015-12-22 20:07 Kerne0 阅读(1551) 评论(2) 推荐(0)
摘要:#1 纯属闲的没事干#2 参考书籍> 1 #coding:utf-8 2 __author__ = 'Kerne0' 3 class AESE(): 4 def __init__(self,blk,key,Nr): 5 self.blk=blk 6 ... 阅读全文
posted @ 2015-12-22 19:31 Kerne0 阅读(3354) 评论(1) 推荐(0)
摘要:Mysql注入模块#coding:gb2312import urllibimport stringimport binasciiimport reclass mysqlInject(): def __init__(self,url): self.db='database()' ... 阅读全文
posted @ 2015-11-21 17:49 Kerne0 阅读(3807) 评论(0) 推荐(0)
摘要:Access注入模块编写#coding=gb2312import urllibimport string#定义Access注入函数class AccessInject(): def __init__(self,url): self.url=url self.tabl... 阅读全文
posted @ 2015-11-21 17:48 Kerne0 阅读(1751) 评论(0) 推荐(0)
摘要:编写原由:自学了一点SQL注入和Python的知识.虽然,早就有了非常好的注入工具Sqlmap,但自己想写一个自动注入的工具玩玩,写的不好之处,还望不吝指正.第一部分:注入点测试模块(injectTest.py)#coding=gb2312import urllibimport osimport... 阅读全文
posted @ 2015-11-21 17:46 Kerne0 阅读(5650) 评论(0) 推荐(0)