python3 小工具

扫描IP的端口是否开放:Porttest.py


 1 # -*- coding: utf-8 -*-
 2 import sys
 3 import os
 4 import socket
 5
 6 #扫描
 7 def scanport(ip,port):
 8     try:
 9         socket.setdefaulttimeout(2)
10         s=socket.socket()
11         s.connect((ip,port))
12         portrecv=s.recv(1024)
13         return portrecv
14     except Exception as e:
15         print(e)
16
17 ‘‘‘
18 检测ip的合法性
19 filter(fuction, list)检查list中符合fuction的元素
20 ‘‘‘
21 def ip_check(ip):
22     q = ip.split(‘.‘)
23     return len(q)==4 and len(list(filter(lambda x: x>=0 and x<= 255, list(map(int, filter(lambda x: x.isdigit(), q))))))==4
24
25 def main():
26     if len(sys.argv)==2:
27         ip=sys.argv[1]
28         portlist=[21,22,25,80,110,443]
29         if ip_check(ip)==0:
30             print("输入的不是一个合法的ip")
31             return
32         for port in portlist:
33             portcheck=scanport(ip,port)
34             if portcheck:
35                 print(str(ip)+‘:‘+str(portchec1))
36     else:
37         print("Tips:python3 Porttest.py 目标ip\n")
38
39 if __name__==‘__main__‘:
40     main()

生成各种进制的IP:IP Converter.py


  1 # -*- coding: utf-8 -*-
  2 import sys
  3 import socket
  4 import struct
  5 import itertools
  6
  7 #纯8进制
  8 def ip_split_by_comma_oct(ip):
  9     """
 10     set函数是一个无序不重复的元素集,用于关系测试和去重
 11     print ip_split_oct -> [‘0177‘, ‘0‘, ‘0‘, ‘01‘]
 12     print parsed_result -> set([‘0177.0.0.01‘])
 13     """
 14     parsed_result = set()
 15     ip_split = str(ip).split(‘.‘)
 16     ip_split_oct = [oct(int(_)) for _ in ip_split]
 17     parsed_result.add(‘.‘.join(ip_split_oct))
 18     return parsed_result
 19
 20 #纯16进制
 21 def ip_split_by_comma_hex(ip):
 22     """
 23     print ip_split_hex -> [‘0x7f‘, ‘0x0‘, ‘0x0‘, ‘0x1‘]
 24     print parsed_result -> set([‘0x7f.0x0.0x0.0x1‘])
 25     """
 26     parsed_result = set()
 27     ip_split = str(ip).split(‘.‘)
 28     ip_split_hex = [hex(int(_)) for _ in ip_split]
 29     parsed_result.add(‘.‘.join(ip_split_hex))
 30     return parsed_result
 31
 32 #10进制,8进制
 33 def combination_oct_int_ip(ip):
 34     """
 35     itertools.combinations(iterable,r)
 36     创建一个迭代器,返回iterable中长度为r的序列。
 37     print oct_2 -> [(0, 1), (0, 2), (0, 3), (1, 2), (1, 3), (2, 3)]
 38     print oct_3 -> [(0, 1, 2), (0, 1, 3), (0, 2, 3), (1, 2, 3)]
 39     enumerate用来枚举函数
 40     tuple表示元组
 41     """
 42     result = set()
 43     parsed_result = set()
 44     ip_split = str(ip).split(‘.‘)
 45     oct_2 = list(itertools.combinations([0, 1, 2, 3], 2))
 46     oct_3 = list(itertools.combinations([0, 1, 2, 3], 3))
 47     #变化ip的一段
 48     for n, _ in enumerate(ip_split):
 49         _tmp = oct(int(_))
 50         #ip_split[:n] -> []读取前面的数  ip_split[n+1:]-> [‘0‘, ‘0‘, ‘1‘]读取后面的数
 51         _delete = ip_split[:n] + ip_split[n+1:]
 52         _delete.insert(n, _tmp)
 53         result.add(tuple(_delete))
 54     #变化ip的两段
 55     for _ in oct_2:
 56         _tmp_ip = ip_split[:]
 57         _tmp1 = oct(int(ip_split[_[0]]))
 58         _tmp2 = oct(int(ip_split[_[1]]))
 59         del _tmp_ip[_[0]]
 60         del _tmp_ip[_[1]-1]
 61         _tmp_ip.insert(_[0], _tmp1)
 62         _tmp_ip.insert(_[1], _tmp2)
 63         result.add(tuple(_tmp_ip))
 64     #变化ip的三段
 65     for _ in oct_3:
 66         _tmp_ip = ip_split[:]
 67         _tmp1 = oct(int(ip_split[_[0]]))
 68         _tmp2 = oct(int(ip_split[_[1]]))
 69         _tmp3 = oct(int(ip_split[_[2]]))
 70         del _tmp_ip[_[0]]
 71         del _tmp_ip[_[1] - 1]
 72         del _tmp_ip[_[2] - 2]
 73         _tmp_ip.insert(_[0], _tmp1)
 74         _tmp_ip.insert(_[1], _tmp2)
 75         _tmp_ip.insert(_[2], _tmp3)
 76         result.add(tuple(_tmp_ip))
 77     for _ in result:
 78         parsed_result.add(‘.‘.join(_))
 79     return parsed_result
 80
 81 #16进制,10进制
 82 def combination_hex_int_ip(ip):
 83     """
 84     :param ip:
 85     :return:
 86     """
 87     result = set()
 88     parsed_result = set()
 89     ip_split = str(ip).split(‘.‘)
 90     hex_2 = list(itertools.combinations([0, 1, 2, 3], 2))
 91     hex_3 = list(itertools.combinations([0, 1, 2, 3], 3))
 92     for n, _ in enumerate(ip_split):
 93         _tmp = hex(int(_))
 94         _delete = ip_split[:n] + ip_split[n+1:]
 95         _delete.insert(n, _tmp)
 96         result.add(tuple(_delete))
 97     for _ in hex_2:
 98         _tmp_ip = ip_split[:]
 99         _tmp1 = hex(int(ip_split[_[0]]))
100         _tmp2 = hex(int(ip_split[_[1]]))
101         del _tmp_ip[_[0]]
102         del _tmp_ip[_[1] - 1]
103         _tmp_ip.insert(_[0], _tmp1)
104         _tmp_ip.insert(_[1], _tmp2)
105         result.add(tuple(_tmp_ip))
106     for _ in hex_3:
107         _tmp_ip = ip_split[:]
108         _tmp1 = hex(int(ip_split[_[0]]))
109         _tmp2 = hex(int(ip_split[_[1]]))
110         _tmp3 = hex(int(ip_split[_[2]]))
111         del _tmp_ip[_[0]]
112         del _tmp_ip[_[1] - 1]
113         del _tmp_ip[_[2] - 2]
114         _tmp_ip.insert(_[0], _tmp1)
115         _tmp_ip.insert(_[1], _tmp2)
116         _tmp_ip.insert(_[2], _tmp3)
117         result.add(tuple(_tmp_ip))
118     for _ in result:
119         parsed_result.add(‘.‘.join(_))
120     return parsed_result
121
122 #10进制,16进制,8进制
123 def combination_hex_int_oct_ip(ip):
124     """
125     :param ip:
126     :return:
127     """
128     result = set()
129     parsed_result = set()
130     ip_split = str(ip).split(‘.‘)
131     hex_3 = list(itertools.combinations([0, 1, 2, 3], 3))
132     for n1, n2, n3 in hex_3:
133         _tmp_ip = ip_split[:]
134         _tmp_2 = oct(int(_tmp_ip[n2]))
135         _tmp_3 = hex(int(_tmp_ip[n3]))
136         del _tmp_ip[n2]
137         del _tmp_ip[n3 - 1]
138         _tmp_ip.insert(n2, _tmp_2)
139         _tmp_ip.insert(n3, _tmp_3)
140         result.add(tuple(_tmp_ip))
141     for _ in result:
142         parsed_result.add(‘.‘.join(_))
143     return parsed_result
144
145 ‘‘‘
146 socket.inet_aton() 把IPV4地址转化为32位打包的二进制格式 -> 检查是否为ipv4
147 struct.unpack(fmt,string) 按照给定的格式(fmt)解析字节流string,返回解析出来的tuple
148 !L: ! = network(=big-endian)  L = unsigned long
149 ‘‘‘
150 if __name__ == ‘__main__‘:
151     if len(sys.argv)==2:
152         ip = sys.argv[1]
153         ip_int = struct.unpack(‘!L‘, socket.inet_aton(ip))[0]
154         ip_oct_no_comma = oct(ip_int)
155         ip_hex_no_comma = hex(ip_int)
156         ip_oct_by_comma = ip_split_by_comma_oct(ip)
157         ip_hex_by_comma = ip_split_by_comma_hex(ip)
158         all_result = ip_oct_by_comma | ip_hex_by_comma | combination_oct_int_ip(ip) | combination_hex_int_ip(ip) | combination_hex_int_oct_ip(ip)
159         print ip_int
160         print ip_oct_no_comma
161         print ip_hex_no_comma
162         for _ip in all_result:
163             print _ip
164     else:
165         print("Tips: IP.py 127.0.0.1 \n")
166         

爆破解压zip文件:ZIP.py


 1 # -*- coding:utf-8 -*-
 2 import sys
 3 import zipfile
 4 import threading
 5
 6 def extractFile(zFile,password):
 7     try:
 8         zFile.extractall(pwd=password.encode("utf-8"))
 9         print("Password is: "+password)
10     except Exception as e:
11         print(str(e))
12
13 def main():
14     if len(sys.argv) == 3:
15         zFile = zipfile.ZipFile(sys.argv[1])
16         passFile = open(sys.argv[2])
17         for line in passFile.readlines():
18             password = line.strip(‘\n‘)
19             t = threading.Thread(target=extractFile,args=(zFile,password))
20             t.start()
21     else:
22         print("Tips:python3 ZIP.py 要爆破的文件 字典")
23
24 if __name__ ==‘__main__‘:
25     main()

学习和总结

python绝技:运用python成为顶级黑客

一个生成各种进制格式IP的小工具:http://www.freebuf.com/sectool/140982.html

原文地址:https://www.cnblogs.com/QKSword/p/8394956.html

时间: 2024-11-13 06:31:36

python3 小工具的相关文章

Python3小工具——结合nmap扫描

一.工具说明 调用nmap库实现端口扫描 二.演示一下的利用效果 三.代码+注释 import nmap import argparse def nmapScan(Host, Port):     # 调用nmap的PortScanner类     nm = nmap.PortScanner()     # 使用scan方法进行扫描     results = nm.scan(Host, str(Port))     state = results['scan'][Host]['tcp'][Po

Python3小工具——暴力破解ssh

一.工具说明 利用pxssh库进行暴力破解ssh 二.演示一下的利用效果 三.代码+注释 from pexpect import pxssh import argparse import threading maxConnetions = 5 connect_lock = threading.BoundedSemaphore(value=maxConnetions) def connect(host, user, password):     try:         s = pxssh.pxs

Python3 小工具-MAC泛洪

from scapy.all import * import optparse def attack(interface): pkt=Ether(src=RandMAC(),dst=RandMAC())/IP(src=RandIP(),dst=RandIP())/ICMP() sendp(pkt,iface=interface) def main(): parser=optparse.OptionParser("%prog "+"-i interface") par

Python3 小工具-ICMP扫描

from scapy.all import * import optparse import threading import os def scan(ipt): pkt=IP(dst=ipt)/ICMP() res=sr1(pkt,timeout=0.1,verbose=0) if res: print(ipt,' is online') def main(): parser=optparse.OptionParser("%prog "+"-t <target>

最火Python3 玩转实用小工具

第1章 课程介绍介绍课程的主要内容,课程内容安排.1-1 最火python3玩转实用小工具课程导学. 试看 第2章 自主研发-购书比价工具首先做好知识储备,讲解JSON.xpath.requests等用法以及字符串的高级用法.然后结合所学知识逐步分析当当.淘宝.京东.1号店的数据结构,实现数据爬取,再对数据进行整合,排序,实现效果.最后对代码进行review,引入一道面试题,深入讲解python对象相关知识点....2-1 课程概要及环境搭建 试看2-2 json知识点学习 试看2-3 xpat

Python实现linux/windows通用批量‘命令/上传/下载’小工具

这阵子一直在学python,碰巧最近想把线上服务器环境做一些规范化/统一化,于是便萌生了用python写一个小工具的冲动.就功能方面来说,基本上是在"重复造轮子"吧,但是当我用这小工具完成了30多台服务器从系统层面到应用层面的一些规范化工作之后,觉得效果还不算那么low(高手可忽略这句话~~),这才敢拿出来跟小伙伴们分享一下. (注:笔者所用为python版本为3.5,其他版本未经测试~~) 其实很简单,就"一个脚本"+"server信息文件"实

Python 小工具集合

PyTools Python小工具的集合,工具彼此间无联系.基于Python 3.4. Github 地址: https://github.com/ChenZhongPu/PyTools 目前实现了: 查看新闻 查看微博 发布微博 搜索1024网站 Usage 查看新闻 python3 App.py news 使用腾讯新闻的RSS源. 查看微博 python3 App.py weibo 使用了Yahoo pipes.你需要得到要查看用户的微博ID, "` Hanhan's weibo accou

有哪些你不知道的Python小工具

python作为越来越流行的一种编程语言,不仅仅是因为它语言简单,有许多现成的包可以直接调用. python中还有大量的小工具,让你的python工作更有效率. 1. 快速共享 HTTP服务器 SimpleHTTPServer是python内置的web服务器,使用8000端口和HTTP协议共享. 能够在任意平台(Window,Linux,MacOS)快速搭建一个HTTP服务和共享服务,只需要搭建好python环境. python2版本: python -m SimpleHTTPServer py

Black一款让你代码更加规范小工具

Black一款让你代码更加规范小工具 为提高代码质量,其可读性是重要评判标准,为帮助开发者统一代码风格, Python 官方同时推出了一个检查代码风格是否符合 PEP8 的工具,今天介绍Black代码格式化工具. 1.安装 pip install black 安装中遇到问题: 1.当出现如下问题,可以将当前配置环境lib\site-packages里面的pip-10.0.1开头的文件删除. 2.然后终端执行命令: python3 -m pip install --upgrade pip 3.通过