python编写端口扫描器(Python开发网站目录扫描器的实现)
类别:脚本大全 浏览量:1940
时间:2022-01-27 01:32:57 python编写端口扫描器
Python开发网站目录扫描器的实现有人问为什么要去扫描网站目录:懂的人自然懂
这个python脚本的特点:
1.基本完善
2.界面美观(只是画了个图案)
3.可选参数增加了线程数
4.user agent细节处理
5.多线程显示进度
扫描目标:metasploitable linux
代码:webdirscanner.py:
|
# -*- coding:utf-8 -*- __author__ = "yiqing" import sys import threading import random from queue import queue from optparse import optionparser try : import requests except exception: print "[!] you need to install requests module!" print "[!] usage:pip install requests" exit() class webdirscan: """ web目录扫描器 """ def __init__( self , options): self .url = options.url self .file_name = options.file_name self .count = options.count class dirscan(threading.thread): """ 多线程 """ def __init__( self , queue, total): threading.thread.__init__( self ) self ._queue = queue self ._total = total def run( self ): while not self ._queue.empty(): url = self ._queue.get() # 多线程显示进度 threading.thread(target = self .msg).start() try : r = requests.get(url = url, headers = get_user_agent(), timeout = 5 ) if r.status_code = = 200 : sys.stdout.write( '\r' + '[+]%s\t\t\n' % url) # 保存到本地文件,以html的格式 result = open ( 'result.html' , 'a+' ) result.write( '<a href="' + url + '" rel="external nofollow" target="_blank">' + url + '</a>' ) result.write( '\r\n</br>' ) result.close() except exception: pass def msg( self ): """ 显示进度 :return:none """ per = 100 - float ( self ._queue.qsize()) / float ( self ._total) * 100 percent = "%s finished| %s all| scan in %1.f %s" % ( ( self ._total - self ._queue.qsize()), self ._total, per, '%' ) sys.stdout.write( '\r' + '[*]' + percent) def start( self ): result = open ( 'result.html' , 'w' ) result.close() queue = queue() f = open ( 'dict.txt' , 'r' ) for i in f.readlines(): queue.put( self .url + "/" + i.rstrip( '\n' )) total = queue.qsize() threads = [] thread_count = int ( self .count) for i in range (thread_count): threads.append( self .dirscan(queue, total)) for thread in threads: thread.start() for thread in threads: thread.join() def get_user_agent(): """ user agent的细节处理 :return: """ user_agent_list = [ { 'user-agent' : 'mozilla/4.0 (mozilla/4.0; msie 7.0; windows nt 5.1; fdm; sv1; .net clr 3.0.04506.30)' }, { 'user-agent' : 'mozilla/4.0 (compatible; msie 8.0; windows nt 6.0; en) opera 11.00' }, { 'user-agent' : 'mozilla/5.0 (x11; u; linux i686; de; rv:1.9.0.2) gecko/2008092313 ubuntu/8.04 (hardy) firefox/3.0.2' }, { 'user-agent' : 'mozilla/5.0 (x11; u; linux i686; en-gb; rv:1.9.1.15) gecko/20101027 fedora/3.5.15-1.fc12 firefox/3.5.15' }, { 'user-agent' : 'mozilla/5.0 (x11; u; linux i686; en-us) applewebkit/534.10 (khtml, like gecko) chrome/8.0.551.0 safari/534.10' }, { 'user-agent' : 'mozilla/5.0 (x11; u; linux i686; en-us; rv:1.9.0.2) gecko/2008092809 gentoo firefox/3.0.2' }, { 'user-agent' : 'mozilla/5.0 (x11; u; linux x86_64; en-us) applewebkit/534.10 (khtml, like gecko) chrome/7.0.544.0' }, { 'user-agent' : 'opera/9.10 (windows nt 5.2; u; en)' }, { 'user-agent' : 'mozilla/5.0 (iphone; u; cpu os 3_2 like mac os x; en-us) applewebkit/531.21.10 (khtml, like gecko)' }, { 'user-agent' : 'opera/9.80 (x11; u; linux i686; en-us; rv:1.9.2.3) presto/2.2.15 version/10.10' }, { 'user-agent' : 'mozilla/5.0 (windows; u; windows nt 5.1; ru-ru) applewebkit/533.18.1 (khtml, like gecko) version/5.0.2 safari/533.18.5' }, { 'user-agent' : 'mozilla/5.0 (windows; u; windows nt 5.1; ru; rv:1.9b3) gecko/2008020514 firefox/3.0b3' }, { 'user-agent' : 'mozilla/5.0 (macintosh; u; ppc mac os x 10_4_11; fr) applewebkit/533.16 (khtml, like gecko) version/5.0 safari/533.16' }, { 'user-agent' : 'mozilla/5.0 (macintosh; u; intel mac os x 10_6_6; en-us) applewebkit/534.20 (khtml, like gecko) chrome/11.0.672.2 safari/534.20' }, { 'user-agent' : 'mozilla/4.0 (compatible; msie 8.0; windows nt 6.1; wow64; trident/4.0; slcc2; .net clr 2.0.50727; infopath.2)' }, { 'user-agent' : 'mozilla/4.0 (compatible; msie 6.0; x11; linux x86_64; en) opera 9.60' }, { 'user-agent' : 'mozilla/5.0 (macintosh; u; intel mac os x 10_6_2; en-us) applewebkit/533.4 (khtml, like gecko) chrome/5.0.366.0 safari/533.4' }, { 'user-agent' : 'mozilla/5.0 (windows nt 6.0; u; en; rv:1.8.1) gecko/20061208 firefox/2.0.0 opera 9.51' } ] return random.choice(user_agent_list) def main(): """ 主函数 :return: none """ print ''' ____ _ ____ | _ \(_)_ __/ ___| ___ __ _ _ __ | | | | | '__\___ \ / __/ _` | '_ \ | |_| | | | ___) | (_| (_| | | | | |____/|_|_| |____/ \___\__,_|_| |_| welcome to webdirscan version:1.0 author: %s ''' % __author__ parser = optionparser( 'python webdirscanner.py -u <target url> -f <dictionary file name> [-t <thread_count>]' ) parser.add_option( '-u' , '--url' , dest = 'url' , type = 'string' , help = 'target url for scan' ) parser.add_option( '-f' , '--file' , dest = 'file_name' , type = 'string' , help = 'dictionary filename' ) parser.add_option( '-t' , '--thread' , dest = 'count' , type = 'int' , default = 10 , help = 'scan thread count' ) (options, args) = parser.parse_args() if options.url and options.file_name: dirscan = webdirscan(options) dirscan.start() sys.exit( 1 ) else : parser.print_help() sys.exit( 1 ) if __name__ = = '__main__' : main() |
需要一个字典文件:
我存进去了一些,一部分是确定存在的目录
dict.txt
|
index.php login dvwa phpmyadmin dav twiki login.php |
结果:得到一个html文件:
|
<a href = "http://192.168.232.129/twiki" rel = "external nofollow" target = "_blank" >http: / / 192.168 . 232.129 / twiki< / a> < / br><a href = "http://192.168.232.129/index.php" rel = "external nofollow" target = "_blank" >http: / / 192.168 . 232.129 / index.php< / a> < / br><a href = "http://192.168.232.129/phpmyadmin" rel = "external nofollow" target = "_blank" >http: / / 192.168 . 232.129 / phpmyadmin< / a> < / br> |
脚本的使用:
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持开心学习网。
原文链接:https://www.cnblogs.com/xuyiqing/p/10313775.html
您可能感兴趣
- python怎样看字符unicode编码(Python3中编码与解码之Unicode与bytes的讲解)
- python计算1到10的阶乘的和(python计算阶乘和的方法1!+2!+3!+...+n!)
- python撤回的微信消息怎么看(Python实现微信消息防撤回功能的实例代码)
- 怎么查看python的安装路径(查看python安装路径及pip安装的包列表及路径)
- python选择语句形式判断回文数(Python3实现的回文数判断及罗马数字转整数算法示例)
- python为什么要用多进程(对Python的多进程锁的使用方法详解)
- python编写pygame游戏怎么打包(python使用pygame模块实现坦克大战游戏)
- pythonredis列表(Python redis操作实例分析连接、管道、发布和订阅等)
- c语言可以实现python所有功能吗(Python实现的调用C语言函数功能简单实例)
- 怎么用python分析足球(使用Python进行体育竞技分析预测球队成绩)
- python 的常用工具(Python静态类型检查新工具之pyright 使用指南)
- python什么是深拷贝什么是浅拷贝(Python深拷贝与浅拷贝用法实例分析)
- python3.7保存文件(详解用python实现基本的学生管理系统文件存储版python3)
- pythonnumpy定义一个2*2数组(对python numpy.array插入一行或一列的方法详解)
- python itchat库介绍(Python利用itchat库向好友或者公众号发消息的实例)
- python实现的数据结构(Python嵌套式数据结构实例浅析)
- 金球奖只青睐那些会戴珠宝的女人(金球奖只青睐那些会戴珠宝的女人)
- 浙江省一个县,人口超40万,建县历史超1100年(浙江省一个县人口超40万)
- 五代十国南唐历代国君(五代十国南唐历代国君)
- 飞机引进工程师杨隆 匠人匠心,只争朝夕(飞机引进工程师杨隆)
- 三人行,她们是育人路上的 铁三角 团队(她们是育人路上的)
- 阴阳师 孟婆山兔CP不倒 新皮肤草稿 孟婆兔 让痒痒鼠点赞(阴阳师孟婆山兔CP不倒)
热门推荐
- 如何看idea连接mysql数据库(IDEA 链接Mysql数据库并执行查询操作的完整代码)
- mysql分区怎么实现(MySql分表、分库、分片和分区知识深入详解)
- 游标和sql语句区别(详解SQL游标的用法)
- 阿里云在域名控制台添加解析记录(阿里云虚拟主机怎样将子域名绑定到子目录?)
- python图书管理系统(python面向对象法实现图书管理系统)
- mysql left join索引怎么使用(详解mysql 使用left join添加where条件的问题分析)
- thinkphp5 api开发(thinkphp5框架前后端分离项目实现分页功能的方法分析)
- dedecms添加模板(dedecms正文自动排版插件 伪原创站必备)
- laravel 获取数据库操作异常(Laravel Eloquent ORM 多条件查询的例子)
- Asp.net导出Excel乱码
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9