摘要: 题目: Implement a function that receives two IPv4 addresses, and returns the number of addresses between them (including the first one, excluding the la 阅读全文
posted @ 2021-04-14 17:13 请叫我德华 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 题目:Write a function, which takes a non-negative integer (seconds) as input and returns the time in a human-readable format (HH:MM:SS) HH = hours, padd 阅读全文
posted @ 2021-04-14 13:59 请叫我德华 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 题目: Write an algorithm that takes an array and moves all of the zeros to the end, preserving the order of the other elements. move_zeros([1, 0, 1, 2, 阅读全文
posted @ 2021-04-14 10:47 请叫我德华 阅读(100) 评论(0) 推荐(0) 编辑
摘要: 对于网站木马总重要的就是隐匿性和免杀.在说免杀之前,我想先说说有关于隐匿性的两个小细节. 隐匿性: 1.木马文件的命名 例如你不可能将木马命名为backdoor.php或者muma.php等等,根据网站网页命名的方式决定木马文件的命名 2.上传的木马是否要使用参数加密 使用参数加密的木马对于机器来说 阅读全文
posted @ 2021-04-14 10:39 请叫我德华 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 1、通过free命令看Linux内存 total:总内存大小。 used:已经使用的内存大小(这里面包含cached和buffers和shared部分)。 free:空闲的内存大小。 shared:进程间共享内存(一般不会用,可以忽略)。 buffers:内存中写完的东西缓存起来,这样快速响应请求, 阅读全文
posted @ 2021-04-14 10:34 请叫我德华 阅读(312) 评论(0) 推荐(0) 编辑
摘要: rpm安装包下载地址: http://www.rpmfind.net/linux/rpm2html/search.php?query=telnet&submit=Search+...&system=&arch= 下载的安装包对应的版本如下(根据自己的centos版本进行选择): telnet:tel 阅读全文
posted @ 2021-03-08 16:49 请叫我德华 阅读(2094) 评论(0) 推荐(0) 编辑
摘要: 给定一个整数数组 nums 和一个整数目标值 target,请你在该数组中找出 和为目标值 的那 两个 整数,并返回它们的数组下标。 你可以假设每种输入只会对应一个答案。但是,数组中同一个元素不能使用两遍。 你可以按任意顺序返回答案。 个人答案: class Solution: def twoSum 阅读全文
posted @ 2021-02-08 23:12 请叫我德华 阅读(34) 评论(0) 推荐(0) 编辑