今天有 32 篇新文章
@Pikachu

初入Python:登陆界面以及登陆后显示新界面列子

自从成功上手 Python 后,就一发不可收拾,每天疯狂的练习,想做啥就去尝试,各种练习,其中遇到太多的坑,这些坑对于初学者而言需要花费巨额的时间去查阅和理解; Python 学习感想 Python 作为我第一个掌握的 支持界面编程 的语言,我非常热爱它 ...
  • 0
  • 13
  • 0
  • 0
@Pikachu

初入Python:小说阅读小工具

""" 小说阅读小工具 """ import requests from bs4 import BeautifulSoup from string import digits import re import tkinter as tk from tkinter import ttk def treeview_sort_column(tv, col, reverse):#Treeview、列名、排列 ...
  • 0
  • 12
  • 0
  • 1
@Pikachu

python:FOFA 高级搜索小工具 py版

源码 import tkinter as tk import pandas as pd import os,configparser,base64,webbrowser,requests,threading from tkinter import ttk from tkinter import messagebox class PyWinDesign: def __init__(self, 启动窗口): ...
  • 0
  • 11
  • 0
  • 1
@Pikachu

python 执行php代码的小笔记

在审计的时候遇到某个加密函数,看的我头晕眼花的,完全看不明白加密过程,但是我又需要写加密解密工具... 遇到这种情况就需要用到 python 的 subprocess 库了,他可以完美的调用 php 代码: php代码: python代码: import subprocess #执行C ...
  • 0
  • 12
  • 0
  • 1
@Pikachu

新版 phpMyAdmin 登陆爆破 python 脚本

差不多 5.几的版本,都需要验证 cookie 和 token,之前的爆破方式都无法在爆破了 #coding=utf-8 import requests import re import html import time import sys from concurrent.futures import ThreadPoolExecutor,as_completed from ...
  • 0
  • 13
  • 0
  • 2
@Pikachu

ZIP压缩包解压密码爆破Python脚本

import itertools import string import zipfile import asyncio def save(name,data): with open(f'{name}.txt', 'a', encoding='utf-8') as f: f.write(data + 'n') async def try_extract_zip_async(zip_file, password ...
  • 0
  • 12
  • 0
  • 0