摘要: 2、Kali Linux 基础 常见目录 • /bin - basic programs (ls, cd, cat, etc.) • /sbin - system programs (fdisk, mkfs, sysctl, etc) • /etc - configuration files • / 阅读全文
posted @ 2021-09-23 19:36 懒企鹅 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 声明:本文理论大部分是苑房弘kalilinux渗透测试的内容 第五章:基本工具 克隆网页,把gitbook的书记下载到本地 httrack "http://www.mybatis.org/mybatis 3/zh/" O ./books/mybatis/ v 第六章: 信息收集 shodan 官网: 阅读全文
posted @ 2019-05-18 18:24 懒企鹅 阅读(3101) 评论(0) 推荐(0) 编辑
摘要: 安装Electron • Mac/Linux: curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.2/ install.sh | bash • Windows: https://github.com/coreybutler/nvm 阅读全文
posted @ 2023-03-20 22:10 懒企鹅 阅读(25) 评论(0) 推荐(0) 编辑
摘要: Mac下打开移动硬盘里的文件报错 Item "[file]" is used by macOS and can’t be opened. find ./ -type f |xargs SetFile -c "" -t "" 阅读全文
posted @ 2022-04-30 11:55 懒企鹅 阅读(64) 评论(0) 推荐(0) 编辑
摘要: 思路 log->xml->csv from bs4 import BeautifulSoup import csv # svn log -l 100 --xml > perfweb.xml with open('D:\\perfweb.xml', encoding='UTF-8') as f_inp 阅读全文
posted @ 2022-04-29 11:09 懒企鹅 阅读(268) 评论(0) 推荐(0) 编辑
摘要: 示例1 import sun.misc.Unsafe; import java.lang.reflect.Field; public class SwapExample { private static Unsafe unsafe; static { try { Field field = Unsa 阅读全文
posted @ 2021-11-18 11:17 懒企鹅 阅读(88) 评论(0) 推荐(0) 编辑
摘要: import smtplib, ssl smtp_server = "smtp.qq.com" #port = 587 # For starttls [465端口不能发送] port = 25 # For starttls sender_email = "xxx@qq.com" # password 阅读全文
posted @ 2021-07-19 21:56 懒企鹅 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 参考:https://mp.weixin.qq.com/s/494wqyxyFzDuGwG_51tFbQ <dependency> <groupId>net.openhft</groupId> <artifactId>affinity</artifactId> <version>3.20.0</ve 阅读全文
posted @ 2021-06-21 11:22 懒企鹅 阅读(114) 评论(0) 推荐(0) 编辑
摘要: Connection conn = DriverManager.getConnection(dbURL, properties); if (conn != null) { Statement statement = conn.createStatement(); ResultSet resultSe 阅读全文
posted @ 2021-05-15 15:55 懒企鹅 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/thisiswhy/p/14750596.html JVM参数说明 输出JIT日志 -client -XX:+UnlockDiagnosticVMOptions -XX:+PrintAssembly -XX:+LogCompilation -XX 阅读全文
posted @ 2021-05-12 09:50 懒企鹅 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 远程文件下载 powershell -c "(new-object System.Net.WebClient).DownloadFile('http://192.168.2.210:8000/index.html','C:\Users\huanmsf\Desktop\index.html')" 服务 阅读全文
posted @ 2021-04-20 21:30 懒企鹅 阅读(120) 评论(0) 推荐(0) 编辑