自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(8)
  • 问答 (1)
  • 收藏
  • 关注

原创 cmake编译mysql过程报错解决

通过清华镜像源站https://mirrors.tuna.tsinghua.edu.cn/centos-stream/9-stream/CRB/x86_64/os/Packages/plugin/group_replication/libmysqlgcs/CMakeLists.txt:34(包括)plugin/group_replication/libmysqlgcs/CMakeLists.txt:53(包括)在/usr/include或/usr/include/tirpc中找不到rpc/rpc.h。

2024-08-07 16:05:02 313

原创 Centos9镜像下载地址

https://mirrors.aliyun.com/centos-stream/9-stream/BaseOS/x86_64/iso/CentOS-Stream-9-latest-x86_64-dvd1.iso

2024-07-15 19:38:33 228

原创 window server 2019 将服务器加入域控中

window server2019 加入window server2019域控中的域

2023-01-09 11:01:52 1618

原创 【MD5】js逆向

今天学习MD5网页的破解,进行js逆向【MD5】是单向加密的一种方法,为32位,在进行该种加密方式的破解时,并不能直接破解,只能通过网页模拟MD5的加密,破解网页的登陆或者数据的加载红人点集的md5登陆界面1.按f12,进入调式窗口,点击账号密码登陆方式,输入账号以及错误的密码(账号需要事先注册好),触发ajax加载源码数据,点击网络按钮这里可以看到请求载荷是由几部分组成的:phoneNum、 pwd、 t、tenantpwd跟sig是一串不认识的数字跟字母组成,这里可以知道是进行了加密2

2022-04-17 21:16:25 1877

原创 爬取db电影信息

使用bs和httpx爬取豆瓣首页的电影信息import httpxfrom bs4 import BeautifulSoupdef get_text(): url = 'https://movie.douban.com/chart' res = httpx.get(url,headers={ 'user-agent':'dsncns' }) html = BeautifulSoup(res.text,'lxml') title = html.s

2022-04-07 10:17:25 287

原创 使用selenium进行某宝账号自动化登陆模拟

from selenium import webdriverimport timeclass Tb(): def __init__(self): options = webdriver.ChromeOptions() options.add_argument('--disable-blink-features=AutomationControlled') self.browser = webdriver.Chrome(chrome_option

2022-04-06 22:21:46 364

原创 pyppeteer.errors.PageError: Cannot find .text on this page

模拟登陆网站出现了问题这是原代码from pyppeteer import launchimport asyncio,randomdef input_time_random(): return random.randint(100, 150)async def mains1(): browser = await launch(headless=False, args=['--disable-infobars','--window-size=1920,1080']) p

2022-04-04 22:28:01 695 1

原创 selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate elemen

selenium.common.exceptions.NoSuchElementException: Message: no such element: Unable to locate element: {“method”:“xpath”,“selector”:“.//div[contains(@class,“c-goods-item__market-price”)]/text()”}(Session info: chrome=99.0.4844.51)抓取唯品会页面内容,以“小皮鞋”字段为例,代码如图

2022-04-04 13:40:20 25421

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除