当前位置:首页 > 2020年9月22日

测试xss公鸡

root6年前 (2020-09-22)linux1374
<script type="text/javascript">alert(123)</script>...

ssh自动添加hostkey到know_hosts

root6年前 (2020-09-22)linux1681
有时后端daemon或者脚本在执行ssh连接时,会遇到以下提示:The authenticity of host 'git.sws.com (10.42.1.88)' can't be establishe...

How to remotely monitor hosts over Telnet and SSH [Tutorial]

root6年前 (2020-09-22)linux1713
python ssh登录服务器In this tutorial, you will learn how to carry out basic configurations on a server with Telnet and SSH co...

python ssh 登录服务器

root6年前 (2020-09-22)linux1615
import paramikossh = paramiko.SSHClient()ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())ssh.connect('192.1...

一行 Python 实现并行化 -- 日常多线程操作的新思路

root6年前 (2020-09-22)linux1566
一行 Python 实现并行化 -- 日常多线程操作的新思路
Python 在程序并行化方面多少有些声名狼藉。撇开技术上的问题,例如线程的实现和 GIL1,我觉得错误的教学指导才是主要问题。常见的经典 Python 多线程、多进程教程多显得偏“重”。而且往往隔靴搔痒,没有深入探讨日常工作中最有用的内容...

Python 字符ASCII与数字之间的转化

root6年前 (2020-09-22)编码1621
Python 用到了一个将一个数字转化为  对应ASCII  的地方。。。 结果习惯性的用了  ‘a’+1 之类的  或者int('a')   , 直接报错==后来查了查才知...