owaspbwa tickets
owaspbwa tickets
来源 https://sourceforge.net/p/owaspbwa/tickets/
192 SQL Injection in pic_id parameter Peruggia High
191 1 AWStats Medium
190 GetBoo reflected XSS in http://owaspbwa/getboo/psearch.php GetBoo Medium
34 CSRF to change password and e-mail CSRF Yazd Medium
33 Lack of access controls Peruggia Medium
32 Reflected XSS Peruggia Medium
31 Local File Inclusion Peruggia Medium
30 SQL Injection Login Bypass Peruggia High
29 Directory Traversal Peruggia Medium
28 INSERT SQL Inection OWASP Vicnum High
27 AppSensor viewProfile lack of access control OWASP AppSensor Demo Application Medium
26 GetBoo Email Forgotten Password SQL injection GetBoo High
25 GetBoo Email Forgotten Password SQL injection GetBoo High
24 GetBoo stored XSS XSS, stored, cross, site, scripting GetBoo Medium
23 Vanilla SQL Injection OWASP Vicnum Medium
22 Remote PHP Injection (CVE-2007-5423) TikiWiki High
21 Cross-site scripting (XSS) vulnerability in tiki-featured_link.php (CVE-2006-5703) XSS TikiWiki Medium
20 Directory traversal in tiki-listmovies.php (CVE-2007-6528) TikiWiki Medium
19 XSS vulnerability in tiki-special_chars.php (CVE-2007-6526) XSS TikiWiki Medium
18 CVE-2008-1047 XSS TikiWiki Medium
15 Reflected XSS in http://owaspbwa/yazd/bay/account.jsp Yazd Medium
14 Reflected XSS in http://owaspbwa/yazd/bay/post.jsp Yazd Medium
13 Reflected XSS in http://owaspbwa/gtd-php/editList.php GTD-PHP Medium
12 Reflected XSS in http://owaspbwa/gtd-php/editChecklist.php GTD-PHP Medium
11 Internal Path Disclosure AWStats _Low
10 Open Redirect AWStats _Low
9 Malicious File Execution WordPress High
8 SQL Injection WordPress High
7 SQL Injection WordPress High
6 Command Injection WordPress High
5 Reflected XSS in http://owaspbwa/mono/simple-reflected-xss.aspx Simple ASP.NET Forms Medium
4 Reflected XSS in http://owaspbwa/vicnum/vicnum5.php OWASP Vicnum Medium
3 State Manipulation OWASP Vicnum High
2 Reflected XSS in http://owaspbwa/mandiant-struts-form-vulnerable/submitname.do Mandiant Struts Forms Medium
1 Reflected XSS in http://owaspbwa/vicnum/cgi-bin/vicnum1.pl
owaspbwa tickets的更多相关文章
- POJ2828 Buy Tickets[树状数组第k小值 倒序]
Buy Tickets Time Limit: 4000MS Memory Limit: 65536K Total Submissions: 19012 Accepted: 9442 Desc ...
- ACM: FZU 2112 Tickets - 欧拉回路 - 并查集
FZU 2112 Tickets Time Limit:3000MS Memory Limit:32768KB 64bit IO Format:%I64d & %I64u P ...
- Tickets——H
H. Tickets Jesus, what a great movie! Thousands of people are rushing to the cinema. However, this i ...
- POJ 2828 Buy Tickets(线段树 树状数组/单点更新)
题目链接: 传送门 Buy Tickets Time Limit: 4000MS Memory Limit: 65536K Description Railway tickets were d ...
- 【poj2828】Buy Tickets
Description Railway tickets were difficult to buy around the Lunar New Year in China, so we must get ...
- [poj2828] Buy Tickets (线段树)
线段树 Description Railway tickets were difficult to buy around the Lunar New Year in China, so we must ...
- POJ 2828 Buy Tickets
Description Railway tickets were difficult to buy around the Lunar New Year in China, so we must get ...
- Buy Tickets(线段树)
Buy Tickets Time Limit:4000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64u Submit ...
- 【poj2828】Buy Tickets 线段树 插队问题
[poj2828]Buy Tickets Description Railway tickets were difficult to buy around the Lunar New Year in ...
随机推荐
- nginx的RPM包制作案例
使用nginx-1.12.2版本的源码软件,生成对应的RPM包软件,具体如下: - 软件名称为nginx - 软件版本为1.12.2 - RPM软件包可以查询描述信息 - RPM软件包可以安装及卸载 ...
- python基础——对时间进行加减
在datetime模块中有一个timedelta这个方法,它代表两个datetime之间的时间差.. In [42]: datetime.datetime.now().strftime('%Y-%m- ...
- 1145. Hashing - Average Search Time (25)
The task of this problem is simple: insert a sequence of distinct positive integers into a hash tabl ...
- 【串线篇】spring boot配置文件加载位置
springboot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件 (1)–file:./config/ ...
- CF1009F Dominant Indices 长链剖分
题目传送门 https://codeforces.com/contest/1009/problem/F 题解 长链剖分的板子吧. 令 \(dp[x][i]\) 表示 \(x\) 的子树中的深度为 \( ...
- django 使用ORM插入数据,提示Cannot assign "1": "B" must be a "Projectconfig" instance.
这是因为使用了外键导致的, 如果使用了外键,先实例化外键查询,然后再插入的表里面放入实例化后的外键连接
- Test 6.24 T2 集合
问题描述 有一个可重集合,一开始只有一个元素 0. 你可以进行若干轮操作,每轮你需要对集合中每个元素 x 执行以下三种操作之一: 将 x 变为 x+1; 选择两个非负整数 y,z 满足 y+z=x , ...
- WinForm、WPF、ASP.NET窗口生命周期
https://blog.csdn.net/s_521_h/article/details/73826928
- 如何配置报表服务器扩展部署(Reporting Services 配置)
Reporting Services 支持扩展部署模式.该模式允许运行共享单个报表服务器数据库的多个报表服务器实例. 若要创建扩展部署,请使用安装程序和 Reporting Services 配置工具 ...
- JavaScript .filter() 方法全解析
.filter是一个内置的数组迭代方法,它接受一个"谓词(译者注: 指代一个过滤条件的函数)",该"谓词"针对每个值进行调用,并返回一个符合该条件(" ...