摘要: tcping.exe - ping over a tcp connection tcping.exe is a console application that operates similarly to 'ping', however it works over a tcp port. There 阅读全文
posted @ 2020-09-27 11:09 进击的pythoner 阅读(455) 评论(0) 推荐(0) 编辑
摘要: linux上进行安装 1.环境准备: yum install gcc zlib-devel bzip2 bzip2-devel readline-devel sqlite sqlite-devel openssl-devel tk-devel libffi-devel 2.Check out pye 阅读全文
posted @ 2020-09-26 20:23 进击的pythoner 阅读(1503) 评论(0) 推荐(0) 编辑
摘要: Checker & Exploit Code for CVE-2020-1472 aka Zerologon Tests whether a domain controller is vulnerable to the Zerologon attack, if vulnerable, it will 阅读全文
posted @ 2020-09-26 18:03 进击的pythoner 阅读(1134) 评论(0) 推荐(0) 编辑
摘要: 容器本身没有价值,有价值的是“容器编排” 阅读全文
posted @ 2020-09-15 17:33 进击的pythoner 阅读(117) 评论(0) 推荐(0) 编辑
摘要: 线程是指进程内的一个执行单元, # 进程 进程拥有自己独立的堆和栈,既不共享堆,亦不共享栈,进程由操作系统调度。 # 线程 线程拥有自己独立的栈和共享的堆,共享堆,不共享栈,线程亦由操作系统调度 # 协程和线程 协程避免了无意义的调度,由此可以提高性能;但同时协程也失去了线程使用多CPU的能力 进程 阅读全文
posted @ 2020-09-15 17:25 进击的pythoner 阅读(717) 评论(0) 推荐(0) 编辑
摘要: 最近想用curl获取到访问某网站的返回状态码,灵机一想,curl好像可以实现.命令如下: curl -s -w "%{http_code}\n" -o /dev/null www.baidu.com -w 也支持其他的选项,如想知道某网站的解析速度,用如下命令实现:curl -o /dev/null 阅读全文
posted @ 2020-09-15 15:57 进击的pythoner 阅读(1668) 评论(0) 推荐(0) 编辑
摘要: As long as you are the owner of the file (or root), you can change the modification time of a file using the touch command: touch filename By default 阅读全文
posted @ 2020-09-15 14:20 进击的pythoner 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 文章来源直接来自linux kernel内核文档 I/O statistics fields Since 2.4.20 (and some versions before, with patches), and 2.5.45, more extensive disk statistics have 阅读全文
posted @ 2020-09-05 17:04 进击的pythoner 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 微服务的概念最早是在 2014 年由 MartinFowler 和 James Lewis 共同提出,他们定义了微服务是由单一应用程序构成的小服务,拥有自己的进程与轻量化处理,服务依业务功能设计,以全自动的方式部署,与其他服务使用 HTTP API 通讯。同时,服务会使用最小规模的集中管理 (例如 阅读全文
posted @ 2020-09-02 10:49 进击的pythoner 阅读(81) 评论(0) 推荐(0) 编辑
摘要: 一直都想知道acquire中block参数的含义,今天查阅相关文档,如下别有一番洞天 Connection and Producer Pools Default Pools Kombu ships with two global pools: one connection pool, and one 阅读全文
posted @ 2020-09-01 16:34 进击的pythoner 阅读(232) 评论(0) 推荐(0) 编辑