上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 138 下一页
摘要: 在监控系统中,监控某个命令的动态常常使用的命令是watch。今天介绍的命令是linux上的小工具sysdig。 您是Linux系统管理员,想要监控系统用户执行的所有Linux命令的活动,通过终端或者 要了解系统中用户正在做什么,可以使用w命令,如下所示。 # w 如果你的系统有bash ,那么最常用 阅读全文
posted @ 2021-05-19 16:26 katago 阅读(762) 评论(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 阅读(110) 评论(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 阅读(218) 评论(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 阅读(63) 评论(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 阅读(100) 评论(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 阅读(1087) 评论(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 阅读(419) 评论(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 阅读(541) 评论(0) 推荐(1)
摘要: 在一些生产平台或者做安全审计的时候往往看到一大堆的用户SSH连接到同一台服务器,或者连接后没有正常关闭进程还驻留在系统内。限制SSH连接数与手动断开空闲连接也有必要之举,这里写出手动剔出其他用户的过程。1、查看系统在线用户[root@apache ~]# w14:15:41 up 42 days, 56 min, 2 users, load average: 0.07, 0.02, 0.00USE 阅读全文
posted @ 2021-04-28 14:30 katago 阅读(191) 评论(0) 推荐(0)
摘要: 不明白的请参考GitHub创建SSH Keys $ ssh-keygen -t rsa -C "752967458@qq.com" -f my_github Host github.comHostName github.comPreferredAuthentications publickeyIde 阅读全文
posted @ 2021-04-22 10:27 katago 阅读(474) 评论(0) 推荐(0)
上一页 1 ··· 23 24 25 26 27 28 29 30 31 ··· 138 下一页