Python 掃瞄目錄

2021-06-05 05:06:34 字數 513 閱讀 6288

def scandir(file_list,proc_parent_path,md5_list,err_list):

for root,dirs,files in os.walk(proc_parent_path):

for file_name in files:

file_path = os.path.join(root + os.sep + file_name)

if os.path.isfile(file_path):

md5code = getfilemd5(file_path)

if md5code:

file_size = os.path.getsize(file_path)

try:

if md5_list.index([file_size,md5code]) >= 0 :

except valueerror:

else:

自己寫的掃瞄目錄,生成檔案目錄、md5值(包括md5值檢測)、重複錯誤資料

Python 簡易的目錄掃瞄工具

思路如下 1.讀取字典檔案,拼接url 2.http get請求url 3.判斷狀態碼,輸出存在目錄 相關 import requests 匯入request模組,request模組是用來發起http請求 import requests url變數設定需要掃瞄的url url with後面接的物件返...

掃瞄web目錄的Python小指令碼

import argparse import requests from concurrent.futures import threadpoolexecutor from multiprocessing import cpu count from fake useragent import use...

目錄掃瞄工具 dirsearch

2.進入dirsearch目錄,進行掃瞄 每一列的含義分別是 掃瞄時間,狀態碼,大小,掃瞄的目錄,重定向的位址 引數列表 h,help 檢視幫助 u url,url url 設定url l urllist,url list urllist 設定url列表 e extensions,extension...