上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 136 下一页
摘要: https://blog.csdn.net/qq_28648861/article/details/93364861 阅读全文
posted @ 2021-06-28 14:32 katago 阅读(1410) 评论(0) 推荐(0)
摘要: void Widget::keyPressEvent(QKeyEvent *event) { qDebug() << event->key() << "\t" << Qt::Key_Enter << "\t" << Qt::Key_Return; if( event->key() == Qt::Ke 阅读全文
posted @ 2021-06-11 17:05 katago 阅读(458) 评论(0) 推荐(0)
摘要: 在监控系统中,监控某个命令的动态常常使用的命令是watch。今天介绍的命令是linux上的小工具sysdig。 您是Linux系统管理员,想要监控系统用户执行的所有Linux命令的活动,通过终端或者 要了解系统中用户正在做什么,可以使用w命令,如下所示。 # w 如果你的系统有bash ,那么最常用 阅读全文
posted @ 2021-05-19 16:26 katago 阅读(748) 评论(0) 推荐(0)
摘要: sudo apt-get install pdfposter pdfposter path/to/input.pdf path/to/output_splitted.pdf -m a4 -p 2x1a4 阅读全文
posted @ 2021-05-14 17:58 katago 阅读(105) 评论(0) 推荐(0)
摘要: 分析网站内容和技术 whatweb -v -a 3 34.82.112.5 暴力枚举路径,子域名等 sudo apt install gobuster gobuster dir -e -u http://34.82.112.5/ -w /usr/share/wordlists/dirb/common 阅读全文
posted @ 2021-05-14 17:25 katago 阅读(214) 评论(0) 推荐(0)
摘要: 挑战程序竞赛2.3.3 #include <iostream> #include <cstdio> using namespace std; const int MAX_N=2000; int N; char S[MAX_N+1]; void solve() { bool left=true; in 阅读全文
posted @ 2021-05-12 10:06 katago 阅读(55) 评论(0) 推荐(0)
摘要: https://nmap.org/book/man-target-specification.html 可以通过下面这个参数指定从文件中加载ip -iL <inputfilename> 爆破sshnmap -p 22 --script ssh-brute --script-args userdb=u 阅读全文
posted @ 2021-05-10 18:10 katago 阅读(95) 评论(0) 推荐(0)
摘要: 根据官网, 把rpm包转换为deb包,再安装 https://nmap.org/book/inst-linux.html#inst-debian If you don't have the alien command, install it with a command such as sudo a 阅读全文
posted @ 2021-05-10 18:01 katago 阅读(1074) 评论(0) 推荐(1)
摘要: 挑战程序设计竞赛(第二版)提到: 假设时间限制为1秒的情况下,算法复杂度可行性如下: 10**6 游刃有余 10**7 勉勉强强 10**8 很悬,循环体非常简单才可以 抽签问题 实际测试,的确如此,到10**8 复杂度就要0.3s 以下是n^4算法的测试结果: >>> 50**4 6250000 阅读全文
posted @ 2021-04-30 16:11 katago 阅读(413) 评论(0) 推荐(0)
摘要: 下载安装 wget -q https://ikatago-resources.oss-cn-beijing.aliyuncs.com/all/install.sh -O install.sh chmod +x ./install.sh ./install.sh 运行 cd ~/work ./run. 阅读全文
posted @ 2021-04-29 14:45 katago 阅读(536) 评论(0) 推荐(1)
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 136 下一页