11 2020 档案

摘要:MYSQL安装 ###1.下载地址 https://downloads.mysql.com/archives/community/ (mysql-8.0.21-winx64.zip) ###2.安装包解压到自己Mysql目录下 本人路径:C:\Program Files\MySQL\mysql-8. 阅读全文
posted @ 2020-11-27 16:31 莫贞俊晗 阅读(5700) 评论(1) 推荐(0) 编辑
摘要:下载好app 一只船教育 ###1.还是先抓包 ###2.给app脱壳 ###3.用jadx-gui打开 打开 0x9f557000.dex 并搜索关键字password 一看就是RSA用公钥加密("RSA/ECB/PKCS1Padding") 并搜索关键字password 点击addRSAData 阅读全文
posted @ 2020-11-20 11:47 莫贞俊晗 阅读(690) 评论(0) 推荐(1) 编辑
摘要:###爬取图片路径规则并保存本地 import re import requests temp = 'http://wufazhuce.com/one/' count = 1 for i in range(14, 1580): url = temp + str(i) page = requests. 阅读全文
posted @ 2020-11-18 11:44 莫贞俊晗 阅读(665) 评论(0) 推荐(0) 编辑
摘要:###上下滑动 # -*- encoding=utf8 -*- __author__ = "yuanshi" from airtest.core.api import * from airtest.cli.parser import cli_setup from poco.drivers.andro 阅读全文
posted @ 2020-11-12 17:33 莫贞俊晗 阅读(408) 评论(0) 推荐(0) 编辑
摘要:###3DES 加密解密 import pyDes import base64 from Crypto.Cipher import DES3 import codecs import base64 class EncryptDate: def __init__(self, key): self.ke 阅读全文
posted @ 2020-11-06 17:19 莫贞俊晗 阅读(3688) 评论(0) 推荐(0) 编辑
摘要:shell编程 1 shell编程是个啥 Shell 是一个命令行解释器,它为用户提供了一个向 Linux 内核发送请求以便运行程序的系统级程序 画图说明 2 shell编程打印hello world 2.1 代码部分 #!/bin/bash echo 'hello world' 代码解释: 1.# 阅读全文
posted @ 2020-11-01 22:37 莫贞俊晗 阅读(123) 评论(0) 推荐(0) 编辑