admin的头像-闪狐博客
管理员
这家伙很懒,什么都没有写...
新版微信小程序反编译-闪狐博客

新版微信小程序反编译

1:新版本的微信小程序的放置的位置是 C:\Users\Administrator\AppData\Roaming\Tencent\xwechat\radium 2:下载解码工具 UnpackMiniApp
前天
0505
python爬虫-闪狐博客

python爬虫

import requests import json import time from typing import Dict, List, Any class VideoScraper: def __init__(self): # 微信环境请求头 - 与test_categories.py完全相同 self.headers = { ...
22天前
03814
python读取so文件输出到text-闪狐博客

python读取so文件输出到text

import osimport sysimport redef extract_strings(binary_data):    '''从二进制数据中提取可打印的字符串'''    # 使用正则表达式匹配至少4个连续的可打印字符    strings = re.findall...
34天前
0408
提取编译后的cocos ts文件-闪狐博客

提取编译后的cocos ts文件

const fs = require('fs'); const path = require('path'); // 读取压缩文件 const inputFile = path.join(__dirname, 'assets/main/index.ee639.js'); const outputDir = path.join(__dirname,...
1个月前
04515
tp6 读取加密文件里面函数名称-闪狐博客

tp6 读取加密文件里面函数名称

public function code() { /* ---------- 1. 只跑一次 ---------- */ if (!empty($GLOBALS['_dumped'])) { return; } $GLOBALS['_dumped'] = true; /* ---------- 2. 准备日志文件 ---------- *...
3个月前
0279
python 爬取某个听书网站-闪狐博客

python 爬取某个听书网站

 bookcode.txt下载txt文件13.2K # 小说信息接口 http://www.6yueting.com/web/index/xsDetail?code=802f1082 # 小说章节接口 http://www.6yueting.com/web/index/xsListdetail?code=802f1082&...
7个月前
04415
python 爬取某个小说网站-闪狐博客

python 爬取某个小说网站

import os import json import requests from urllib.parse import urljoin from bs4 import BeautifulSoup import re # 定义分类列表 bookcat = [ 'xuanhuan', 'xianxia', 'dushi', 'lishi', '...
7个月前
0378
python爬取西红柿小说-闪狐博客

python爬取西红柿小说

import os import re import requests import time from os import remove import aiofiles from aiohttp import ClientSession, ClientTimeout import asyncio from colorama import init from...
7个月前
0447
tp6框架处理跨域-闪狐博客

tp6框架处理跨域

定义中间件<?php declare (strict_types = 1); namespace app\middleware; use think\Response; /** * 全局跨域请求处理 * Class CrossDomain * @package app\middleware */ class CrossDoma...
8个月前
05313
爬取某个听书平台存储到数据库-闪狐博客

爬取某个听书平台存储到数据库

在脚本中输入相对应的数据库信息然后安装相对应的py环境运行即可