本文分类:news发布日期:2024/12/22 15:56:38
相关文章
linux通过抓包工具tcpdump查看80端口访问量情况
方法:
tcpdump -i ens32 -tn dst port 80 -c 10 | awk -F"." {print $1"."$2"."$3"."$4} | sort | uniq -c | sort -nr |head -n 10
#-i:指定端口
#-t:在输出的每一行不打印时间戳
#-nÿ…
建站知识
2024/11/21 20:39:02
pikachu漏洞平台~文件包含漏洞
在PHP程序中使用文件包含的对象可以被前端的用户控制且没有经过过滤或严格的定义,用户可以将其他的文件作为参数带入到PHP代码中解释执行,从而造成敏感信息泄露/程序文件读取/GetShell等危害的漏洞。
0x01文件包含漏洞 连接成功,完毕&#x…
建站知识
2024/12/10 7:20:06
Python | Leetcode Python题解之第318题最大单词长度乘积
题目: 题解:
class Solution:def maxProduct(self, words: List[str]) -> int:masks defaultdict(int)for word in words:mask reduce(lambda a, b: a | (1 << (ord(b) - ord(a))), word, 0)masks[mask] max(masks[mask], len(word))return…
建站知识
2024/12/9 13:18:53
C语言的回调函数(详解qsort函数)
在上一篇文章中我们学习了指针与数组之间的关系,学习了指针数组,数组指针变量,函数指针变量和函数指针数组。那么接下来我们要学习的是一个利用函数指针变量去解决和简化各种问题的回调函数。
一、回调函数
回调函数在编程中是一种很常见的…
建站知识
2024/11/21 20:59:40
Leetcode 3239. Minimum Number of Flips to Make Binary Grid Palindromic I
Leetcode 3239. Minimum Number of Flips to Make Binary Grid Palindromic I 1. 解题思路2. 代码实现 题目链接:3239. Minimum Number of Flips to Make Binary Grid Palindromic I
1. 解题思路
这一题思路上的话就是分别考察一下把所有行都变成回文所需要的fli…
建站知识
2024/11/21 20:13:18
C++ | Leetcode C++题解之第322题零钱兑换
题目: 题解:
class Solution {
public:int coinChange(vector<int>& coins, int amount) {int Max amount 1;vector<int> dp(amount 1, Max);dp[0] 0;for (int i 1; i < amount; i) {for (int j 0; j < (int)coins.size();…
建站知识
2024/11/22 4:50:31
[最短路Floyd],启动!!!
B3647 【模板】Floyd
#include<bits/stdc.h>
#define ll long long
#define fi first
#define se second
#define pb push_back
#define PII pair<int,int >
#define IOS ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
using namespace std;
const int N …
建站知识
2024/12/21 20:47:12