This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import subprocess | |
| import re | |
| import os | |
| import time | |
| import logging | |
| from shutil import which | |
| import random | |
| from pathlib import Path | |
| import dbus |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - sal中需包含 RSA+SHA256 | |
| - cipher中需包含 AES256-SHA256:AES256-SHA:AES128-SHA中的一个 | |
| - max_sal=18 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 名称 功能 平台 特色 组织 | |
| BlazeMeter 持续测试平台 chrome插件 登陆后可导出jmx脚本 BlazeMeter by Perforce | |
| JMeter 性能测试工具 windows/linux 执行jmx脚本,进行静态资源的压力测试 apache软件基金会 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import requests | |
| import csv | |
| import time | |
| grades = ['2019329600', '2019329621'] | |
| result = [] | |
| null = None | |
| for grade in grades: | |
| for spec in [str(num).zfill(3) for num in range(1000)]: | |
| r = requests.get( | |
| 'http://fangyi.zstu.edu.cn:5004/api/DataSource/GetDataSourceByNo?sqlNo=JTDK_XS$%s' % (grade+spec)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from Crypto.Cipher import DES | |
| from Crypto.Util import Padding | |
| from base64 import b64encode, b64decode, encode | |
| from requests import Session | |
| from re import compile | |
| import os | |
| import logging | |
| import sys | |
| logger = logging.getLogger(name=None) # 创建一个日志对象 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import traceback | |
| from Crypto.Cipher import DES | |
| from Crypto.Util import Padding | |
| from base64 import b64encode, b64decode, encode | |
| from requests import Session | |
| from re import compile | |
| import os | |
| import logging | |
| import sys | |
| import json |