#!/usr/bin/env python # -*- coding:utf-8 _*- """ @author:zhoutao @file: 金山 V8 终端安全系统 默认弱口令漏洞.py @time: 2021/04/20 @function: """ import requests impor ...
分类:
其他好文 时间:
2021-04-22 15:22:34
阅读次数:
0
zscale=t=linear:npl=400 (gdb) p *src_format $27 = {version = 515, width = 3840, height = 2160, pixel_type = ZIMG_PIXEL_WORD, subsample_w = 1, subsampl ...
分类:
其他好文 时间:
2021-04-21 12:43:01
阅读次数:
0
from pynput.keyboard import Controller, Key, Listener # 监听按压 def on_press(key): try: print("正在按压:", format(key.char)) except AttributeError: print("正在 ...
分类:
其他好文 时间:
2021-04-21 12:38:44
阅读次数:
0
查看所有用户任务计划 cat /etc/passwd | cut -f 1 -d : |xargs -I {} crontab -l -u {} 查看设备的挂载情况 lsblk lsblk -f 查看rhel或centos版本 cat /etc/redhat-release 查看最后登陆信息 las ...
分类:
系统相关 时间:
2021-04-20 15:45:36
阅读次数:
0
Date date = new Date(((java.sql.Timestamp) message.getSendTime()).getTime()); DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); format. ...
分类:
其他好文 时间:
2021-04-20 15:27:23
阅读次数:
0
wget http://download.savannah.gnu.org/releases/freetype/freetype-2.10.0.tar.bz2 tar -xf freetype-2.10.0.tar.bz2 cd freetype-2.10.0 ./configure --prefi ...
分类:
系统相关 时间:
2021-04-20 14:36:46
阅读次数:
0
在线使用地址:https://lightbc.github.io/qt-demo/html/convertFileToBase64.html 前端代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Tit ...
分类:
其他好文 时间:
2021-04-20 14:11:59
阅读次数:
0
6.成绩统计(15) 对给定人数的成绩输出其及格率和优秀率(百分号前保留整数) n = int(input()) a,b=0,0 for i in range (n): s = int(input()) if s>=60: a+=1 if s>=85: b+=1 print('{:.0%}'.for ...
分类:
其他好文 时间:
2021-04-19 15:57:59
阅读次数:
0
该系列文章是本人在学习 Spring 的过程中总结下来的,里面涉及到相关源码,可能对读者不太友好,请结合我的源码注释 Spring 源码分析 GitHub 地址 进行阅读。 Spring 版本:5.1.14.RELEASE 在开始阅读 Spring AOP 源码之前,需要对 Spring IoC 有 ...
分类:
编程语言 时间:
2021-04-19 14:35:06
阅读次数:
0
c#字符显示转换{0:d} C#:String.Format数字格式化输出 : int a = 12345678; //格式为sring输出 // Label1.Text = string.Format("asdfadsf{0}adsfasdf",a); // Label2.Text = "asdf ...
分类:
其他好文 时间:
2021-04-19 14:32:39
阅读次数:
0