
Python每日一练
Python
okokabcd
这个作者很懒,什么都没留下…
展开
-
Python写实用小工具-实现图片转字符画
学习python的基础应用及pillow库的使用,Python写实用小工具-实现图片转字符画原创 2022-05-24 02:16:33 · 350 阅读 · 0 评论 -
Python写安全小工具-TCP全连接端口扫描器
通过端口扫描我们可以知道目标主机都开放了哪些服务,下面通过TCP connect来实现一个TCP全连接端口扫描器。一个简单的端口扫描器#!/usr/bin/python3# -*- coding: utf-8 -*-from socket import *def portScanner(host,port): try: s = socket(AF_INET,SOCK_STREAM) s.connect((host,port)) print(原创 2022-05-19 08:48:42 · 892 阅读 · 0 评论 -
Python写安全小工具-破解zip压缩文件
Python学习案例原创 2022-05-08 11:50:31 · 764 阅读 · 0 评论