饱满楼房

文章
5
资源
0
加入时间
3年1月7天

为WebGoat添加课程——HTTP Parameter Pollution

WebGoat本身有专门一个课程用来介绍如何添加一个新的课程,但是估计是这个课程长期没有人维护的关系,我再使用WebGoat 5.4试图添加一个课程的时候发现有些细节的地方与WebGoat里面介绍的步骤有些不一致或者是WebGoat里面没有提到的,所以把我的步骤记录下来。 我添加的课程是HTTP参数污染(HTTP Parameter Pollution, HPP)这个漏洞相关的课程。关于这

算法之路四:codeforces 71A

#include<cstdio>#include<iostream>#include<cstring>using namespace std;const int maxn=105;int main(){ int n; cin>>n; while(n--) { char word[maxn]; scanf("%s",word);