摘要:
题目: Implement a function that receives two IPv4 addresses, and returns the number of addresses between them (including the first one, excluding the la 阅读全文
摘要:
题目: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 阅读全文
摘要:
题目: 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, 阅读全文
摘要:
对于网站木马总重要的就是隐匿性和免杀.在说免杀之前,我想先说说有关于隐匿性的两个小细节. 隐匿性: 1.木马文件的命名 例如你不可能将木马命名为backdoor.php或者muma.php等等,根据网站网页命名的方式决定木马文件的命名 2.上传的木马是否要使用参数加密 使用参数加密的木马对于机器来说 阅读全文
摘要:
1、通过free命令看Linux内存 total:总内存大小。 used:已经使用的内存大小(这里面包含cached和buffers和shared部分)。 free:空闲的内存大小。 shared:进程间共享内存(一般不会用,可以忽略)。 buffers:内存中写完的东西缓存起来,这样快速响应请求, 阅读全文