├── .gitignore
├── 404.html
├── Gemfile
├── _config.yml
├── assets
├── files
│ ├── Cornucopia-scoresheet.pdf
│ ├── Owasp-cornucopia-ecommerce_website-EN.pdf
│ ├── Owasp-requirements-numbering.zip
│ ├── Owasp_cornucopia_printreadyimages-1v03.zip
│ ├── Owasplondon-colinwatson-cornucopia.odp
│ ├── cornucopia-scoresheet-mobileapp.pdf
│ └── ecommerce
│ │ ├── EN
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-0v40.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v00.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v01.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v02.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v03.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v03t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v04.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v04t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v05.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v05t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v10.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v10t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v20.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v20t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-1v21t.docx
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-EN-vInitial.docx
│ │ └── changelog.txt
│ │ └── ES
│ │ ├── OWASP-Cornucopia-Ecommerce_Website-ES-1v20.docx
│ │ └── changelog.txt
└── images
│ ├── Cornucopia-card-authentication-7.png
│ ├── Cornucopia-card-authorization-8.png
│ ├── Cornucopia-card-cornucopia-K.png
│ ├── Cornucopia-card-cryptography-j.png
│ ├── Cornucopia-card-data-A.png
│ ├── Cornucopia-card-joker-a.png
│ ├── Cornucopia-card-session-9.png
│ ├── Cornucopia-header.jpg
│ ├── Cornucopia-pcidss-ecommerce-guidelines-small.jpg
│ ├── Cornucopia-presentation-small.jpg
│ ├── Cornucopia-square-logo-350.jpg
│ ├── OWASP_20th_Anniversary.jpg
│ ├── cornucopia_logo.png
│ └── cornucopia_logo.svg
├── index.md
├── info.md
├── leaders.md
├── readme.md
├── tab_acknowledgements.md
├── tab_cards.md
├── tab_faqs.md
├── tab_play.md
└── tab_roadmap.md
/.gitignore:
--------------------------------------------------------------------------------
1 | __pycache__
2 | env
3 | .vscode
4 | _site/
5 |
--------------------------------------------------------------------------------
/404.html:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | title: 404 - Not Found
4 | layout: col-generic
5 |
6 | ---
7 |
8 |
9 |
10 |
WHOA THAT PAGE CANNOT BE FOUND
11 |
Try the SEARCH function in the main navigation to find something. If you are looking for chapter information, please see Chapters for the correct chapter. For information about OWASP projects see Projects . For common attacks, vulnerabilities, or information about other community-led contributions see Contributed Content .
12 |
13 |
14 |
If all else fails you can search our historical site .
15 |
16 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source 'https://rubygems.org'
2 | group :jekyll_plugins do
3 | gem "github-pages"
4 | end
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | remote_theme: "owasp/www--site-theme@main"
2 | plugins:
3 | - jekyll-include-cache-0.2.0
--------------------------------------------------------------------------------
/assets/files/Cornucopia-scoresheet.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/Cornucopia-scoresheet.pdf
--------------------------------------------------------------------------------
/assets/files/Owasp-cornucopia-ecommerce_website-EN.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/Owasp-cornucopia-ecommerce_website-EN.pdf
--------------------------------------------------------------------------------
/assets/files/Owasp-requirements-numbering.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/Owasp-requirements-numbering.zip
--------------------------------------------------------------------------------
/assets/files/Owasp_cornucopia_printreadyimages-1v03.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/Owasp_cornucopia_printreadyimages-1v03.zip
--------------------------------------------------------------------------------
/assets/files/Owasplondon-colinwatson-cornucopia.odp:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/Owasplondon-colinwatson-cornucopia.odp
--------------------------------------------------------------------------------
/assets/files/cornucopia-scoresheet-mobileapp.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/cornucopia-scoresheet-mobileapp.pdf
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-0v40.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-0v40.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v00.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v00.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v01.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v01.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v02.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v02.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v03.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v03.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v03t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v03t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v04.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v04.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v04t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v04t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v05.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v05.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v05t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v05t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v10.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v10.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v10t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v10t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v20.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v20.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v20t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v20t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v21t.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-1v21t.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-vInitial.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/EN/OWASP-Cornucopia-Ecommerce_Website-EN-vInitial.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/EN/changelog.txt:
--------------------------------------------------------------------------------
1 | # OWASP Cornucopia - Ecommerce Website Edition - EN
2 | # Change Log
3 | ====================================
4 |
5 | ## Unrealeased
6 |
7 |
8 | ## v1.21t - 13 July 2018
9 | - showing content changes highlighted
10 |
11 | ## v1.20 - 29 June 2016
12 |
13 | ## v1.20t - 29 June 2016
14 | - showing content changes highlighted
15 |
16 | ## v1.10 - 31 March 2015
17 |
18 | ## v1.10t - 31 March 2015
19 | - showing content changes highlighted
20 |
21 | ## v1.05 - 21 March 2014
22 |
23 | ## v1.05t - 21 March 2014
24 | - showing content changes highlighted
25 |
26 | ## v1.04 - 21 March 2014
27 |
28 | ## v1.04t - 21 March 2014
29 | - showing content changes highlighted
30 |
31 | ## v1.03 - 18 September 2013
32 |
33 | ## v1.03t - 18 September 2013
34 | - showing content changes highlighted
35 |
36 | ## v1.02 - 14 August 2013
37 |
38 | ## v1.01 - 03 June 2013
39 |
40 | ## v1.00 - 25 February 2013
41 |
42 | ## v0.40 - 25 February 2013
43 |
44 | ## initial - 15 August 2012
45 | - OWASP Cornucopia - Ecommerce Website Edition
46 |
--------------------------------------------------------------------------------
/assets/files/ecommerce/ES/OWASP-Cornucopia-Ecommerce_Website-ES-1v20.docx:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/files/ecommerce/ES/OWASP-Cornucopia-Ecommerce_Website-ES-1v20.docx
--------------------------------------------------------------------------------
/assets/files/ecommerce/ES/changelog.txt:
--------------------------------------------------------------------------------
1 | # OWASP Cornucopia - Ecommerce Website Edition - ES
2 | # Change Log
3 | ====================================
4 |
5 | ## v1.20 - 02 Oct 2020
6 | - translation into Spanish of v1.20 EN
7 |
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-authentication-7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-authentication-7.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-authorization-8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-authorization-8.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-cornucopia-K.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-cornucopia-K.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-cryptography-j.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-cryptography-j.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-data-A.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-data-A.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-joker-a.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-joker-a.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-card-session-9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-card-session-9.png
--------------------------------------------------------------------------------
/assets/images/Cornucopia-header.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-header.jpg
--------------------------------------------------------------------------------
/assets/images/Cornucopia-pcidss-ecommerce-guidelines-small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-pcidss-ecommerce-guidelines-small.jpg
--------------------------------------------------------------------------------
/assets/images/Cornucopia-presentation-small.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-presentation-small.jpg
--------------------------------------------------------------------------------
/assets/images/Cornucopia-square-logo-350.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/Cornucopia-square-logo-350.jpg
--------------------------------------------------------------------------------
/assets/images/OWASP_20th_Anniversary.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/OWASP_20th_Anniversary.jpg
--------------------------------------------------------------------------------
/assets/images/cornucopia_logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/OWASP/www-project-cornucopia/63bd071820098da1bcb4781fe1423865042cd85d/assets/images/cornucopia_logo.png
--------------------------------------------------------------------------------
/assets/images/cornucopia_logo.svg:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
149 |
150 |
151 |
152 |
153 |
154 |
155 |
156 |
157 |
158 |
159 |
160 |
161 |
162 |
163 |
164 |
165 |
166 |
167 |
168 |
169 |
170 |
171 |
172 |
173 |
174 |
175 |
176 |
177 |
178 |
179 |
180 |
181 |
182 |
183 |
184 |
185 |
186 |
187 |
188 |
189 |
190 |
191 |
192 |
193 |
194 |
195 |
196 |
197 |
198 |
199 |
200 |
201 |
202 |
203 |
204 |
205 |
206 |
207 |
208 |
209 |
210 |
211 |
212 |
213 |
214 |
215 |
216 |
217 |
218 |
219 |
220 |
221 |
222 |
223 |
224 |
225 |
226 |
227 |
228 |
229 |
230 |
231 |
232 |
233 |
234 |
235 |
236 |
237 |
238 |
239 |
240 |
241 |
242 |
243 |
244 |
245 |
246 |
247 |
248 |
249 |
250 |
251 |
252 |
253 |
254 |
255 |
256 |
257 |
258 |
259 |
260 |
261 |
262 |
263 |
264 |
265 |
266 |
267 |
268 |
269 |
270 |
271 |
272 |
273 |
274 |
275 |
276 |
277 |
278 |
279 |
280 |
281 |
282 |
283 |
284 |
285 |
286 |
287 |
288 |
289 |
290 |
291 |
292 |
293 |
294 |
295 |
296 |
297 |
298 |
299 |
300 |
--------------------------------------------------------------------------------
/index.md:
--------------------------------------------------------------------------------
1 | ---
2 |
3 | layout: col-sidebar
4 | title: OWASP Cornucopia
5 | site_side: true
6 | tags: cc
7 | project: true
8 | level: 3.5
9 | type: documentation
10 |
11 | ---
12 |
13 | [](https://owasp.org/other_projects/)
14 | [](https://bestpractices.coreinfrastructure.org/projects/7125)
15 | [](https://codeclimate.com/github/OWASP/cornucopia/maintainability)
16 | [](https://codeclimate.com/github/OWASP/cornucopia/test_coverage)
17 |
18 | 
19 |
20 | OWASP Cornucopia is a mechanism in the form of a card game to assist software development teams identify security requirements in Agile, conventional and formal development processes. It is language, platform and technology-agnostic.
21 |
22 | ## Introduction
23 | The idea behind Cornucopia is to help development teams, especially those using Agile methodologies, to identify application security requirements and develop security-based user stories. Although the idea had been waiting for enough time to progress it, the final motivation came when [SAFECode](http://www.safecode.org/) published its [Practical Security Stories and Security Tasks for Agile Development Environments](https://safecode.org/publication/SAFECode_Agile_Dev_Security0712.pdf) in July 2012. Cornucopia was created and first used for developer training in August 2012.
24 |
25 | To start using OWASP Cornucopia or find out more about the game please visit [cornucopia.owasp.org](https://cornucopia.owasp.org/)
26 |
27 | ## About
28 |
29 | To find out more about what OWASP Cornucopia is all about, please read the about section on [cornucopia.owasp.org](https://cornucopia.owasp.org/about)
30 |
31 | ## Licensing
32 |
33 | OWASP Cornucopia is free to use. It is licensed under the [Creative Commons Attribution-ShareAlike 3.0 license](http://creativecommons.org/licenses/by-sa/3.0/), so you can copy, distribute and transmit the work, and you can adapt it, and use it commercially, but all provided that you attribute the work and if you alter, transform, or build upon this work, you may distribute the resulting work only under the same or similar licence to this one.
34 |
35 | © OWASP Foundation
36 |
37 | ## Other Security Gamification
38 |
39 | If you are interested in using gaming for security, also see [Elevation of Privilege: The Threat Modeling Game](https://www.microsoft.com/en-gb/download/details.aspx?id=20303), [Security Cards](http://securitycards.cs.washington.edu/) from the University of Washington, the commercial card game [Control-Alt-Hack](http://www.controlalthack.com/) ([presentation](http://www.youtube.com/watch?v=Kpnvsgiiz8s)), [OWASP Snakes and Ladders](https://owasp.org/www-project-snakes-and-ladders), [OWASP Cumulus](https://owasp.org/www-project-cumulus/), and web application security training tools incorporating gamification such as [OWASP Hackademic Challenges Project](https://owasp.org/www-project-hackademic-challenges), [OWASP Security Shepherd](https://owasp.org/www-project-security-shepherd) and [ITSEC Games](http://itsecgames.blogspot.co.uk/).
40 |
41 | Additionally, Adam Shostack maintains a list of tabletop security games and related resources at [Tabletop Security Games + Cards](https://shostack.org/games.html).
42 |
--------------------------------------------------------------------------------
/info.md:
--------------------------------------------------------------------------------
1 | 
2 |
3 | ### Quick Links
4 | * Website
5 | * [cornucopia.owasp.org](http://cornucopia.owasp.org/)
6 | * How to Play video:
7 | * [Project Team: v1.00](https://youtu.be/i5Y0akWj31k)
8 | * [RBI Version: v1.24](https://youtu.be/XXTPXozIHow)
9 | * OWASP Conferences:
10 | * [OWASP Global AppSec - Lisbon - 2024](https://youtu.be/7ZfJBZBY7Bw)
11 | * Sources and material:
12 | * [Scoresheet (website app)](assets/files/Cornucopia-scoresheet.pdf)
13 | * [Scoresheet (mobile app)](assets/files/cornucopia-scoresheet-mobileapp.pdf)
14 | * [All sources and downloads...](https://github.com/OWASP/cornucopia)
15 |
16 | ### What is Cornucopia?
17 | * OWASP Cornucopia is a card game used to help derive application security requirements during the software development life cycle.
18 | * Listen to the [OWASP 24/7 Podcast](http://trustedsoftwarealliance.com/2014/03/21/the-owasp-cornucopia-project-with-colin-watson/) about Cornucopia.
19 |
20 | ### Project Information
21 | * Production Project
22 | * Documentation
23 | * Builder
24 | * Defender
25 |
26 | ### Presentation
27 | * [](assets/files/Owasplondon-colinwatson-cornucopia.odp)
28 | * The game rules are in the document download. But the OpenOffice [project presentation](assets/files/Owasplondon-colinwatson-cornucopia.odp) includes an animated version of four demonstration rounds. The presentation is recorded [on video](http://youtu.be/Q_LE-8xNXVk).
29 |
30 | ### PCIDSS
31 |
32 | * [](https://www.pcisecuritystandards.org/pdfs/PCI_DSS_v2_eCommerce_Guidelines.pdf)
33 | * OWASP Cornucopia Ecommerce Website Edition was referenced in the [Payment Card Industry Security Standards Council](https://www.pcisecuritystandards.org/) information supplement [PCI DSS E-commerce Guidelines v2](https://www.pcisecuritystandards.org/pdfs/PCI_DSS_v2_eCommerce_Guidelines.pdf), January 2013.
34 |
35 |
36 | ### License
37 |
38 | * [](http://creativecommons.org/licenses/by-sa/3.0/)
39 |
--------------------------------------------------------------------------------
/leaders.md:
--------------------------------------------------------------------------------
1 | ### Leaders
2 |
3 | * [Colin Watson](mailto:colin.watson@owasp.org)
4 | * [Grant Ongers](mailto:grant.ongers@owasp.org)
5 | * [Johan Sydseter](mailto:johan.sydseter@owasp.org)
6 |
7 | ### Core Team
8 |
9 | * [Xavier Godard](mailto:xavier.godard@owasp.org)
10 | * [Jef Meijvis](mailto:jef.meijvis@owasp.org)
11 |
12 | ### Former leaders
13 |
14 | * Dario De Filippis
15 |
--------------------------------------------------------------------------------
/readme.md:
--------------------------------------------------------------------------------
1 | The OWASP home for the Cornucopia project which can be found at: [www-project-cornucopia](https://owasp.org/www-project-cornucopia/).
2 |
3 | For any improvements, make sure to open up an issue or a pull request, and we'll make sure to tend to it!
4 |
--------------------------------------------------------------------------------
/tab_acknowledgements.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Acknowledgements
3 | displaytext: Acknowledgements
4 | layout: null
5 | tab: true
6 | order: 4
7 | tags: cc
8 | ---
9 |
10 | ## Acknowledgements
11 |
12 | ### Volunteers
13 |
14 |
15 |
16 | Cornucopia is developed, maintained, updated and promoted by a worldwide team of volunteers. The contributors to date have been:
17 |
18 | Please see [cornucuopia.owasp.org](https://cornucopia.owasp.org/about#Acknowledgements) for a full list.
19 |
20 | And please let us know if we have missed anyone.
21 |
--------------------------------------------------------------------------------
/tab_cards.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Cards
3 | displaytext: Get the Cards
4 | layout: null
5 | tab: true
6 | order: 1
7 | tags: cc
8 | ---
9 |
10 | ## Get the Cards
11 |
12 |
13 |
14 | The primary source document is a [Word document](https://github.com/OWASP/cornucopia/releases/tag/v2.0.0).
15 |
16 | However, pre-printed card decks may be more useful, or there are links to the source design files for the cards themselves (see links underneath).
17 | You can also choose to play the OWASP Cornucopia Website App Edition and Mobile App Edition online at [copi.owasp.org](https://copi.owasp.org)
18 |
19 | ### Printed
20 |
21 | OWASP no longer has a stock of printed decks.
22 |
23 | OWASP does not endorse or recommend commercial products or services. However, [Agile Stationary](https://agilestationery.co.uk/) offer [large print (v2.0) web app decks](https://agilestationery.com/products/owasp-cornucopia-2-0-website-app-edition-threat-modeling-cards?_pos=2&_psq=cornucipia&_ss=e&_v=1.0) and [large print (v1.0) mobile app decks](https://agilestationery.com/products/owasp-cornucopia-mobile-app-edition-threat-modeling-cards?_pos=3&_psq=cornucip&_ss=e&_v=1.0). They also offer a [croupier](https://croupier.agilestationery.co.uk/) to help you distribute cards to team members. Also, [dotNET lab](https://www.dotnetlab.eu/) sell a [printed deck](https://webshop.dotnetlab.eu/product/cornucopia-card-deck/) which complements their [online reference](https://cornucopia.dotnetlab.eu/cards).
24 |
25 | ### Print your own
26 |
27 | There are many ways to print copies of the card decks yourself:
28 |
29 | 1. Download the free Adobe Illustrator files and get them professionally printed;
30 | 1. Print the Word document onto business card blanks;
31 | 1. Print the Word document onto normal card and cut the cards out individually using the guide; or
32 | 1. Generate your own cards from the free source XML data file in the repository.
33 |
34 | For instructions on printing your own decks, please go to [cornucopia.owasp.org](https://cornucopia.owasp.org/printing)
35 |
36 | ### Source files
37 |
38 | Source code to generate the Word document, PDFs and InDesign files for printing are maintained in our [Github repository](https://github.com/OWASP/cornucopia/releases)
39 |
--------------------------------------------------------------------------------
/tab_faqs.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: FAQs
3 | displaytext: Frequently Asked Questions
4 | layout: null
5 | tab: true
6 | order: 3
7 | tags: cc
8 | ---
9 |
10 | ## Frequently Asked Questions
11 |
12 |
13 |
14 | ### Can I copy or edit the game?
15 | Yes of course. All OWASP materials are free to do with as you like provided you comply with the Creative Commons Attribution-ShareAlike 3.0 license. Perhaps if you create a new version, you might donate it to the OWASP Cornucopia Project?
16 | ### How can I get involved?
17 | Please send ideas or offers of help to the project’s List/Group.
18 | ### How were the attackers’ names chosen?
19 | EoP begins every description with words like "An attacker can...". These have to be phrased as an attack but I was not keen on the anonymous terminology, wanting something more engaging, and therefore used personal names. These can be thought of as external or internal people or aliases for computer systems. But instead of just random names, I thought how they might reflect the OWASP community aspect. Therefore, apart from "Alice and Bob", the original Ecommerce Website Edition used the given (first) names of current and recent OWASP employees and Board members (assigned in no order), and then randomly selected the remaining 50 or so names from the current list of paying individual OWASP members. No name was used more than once, and where people had provided two personal names, we dropped one part to try to ensure no-one can be easily identified. Names were not deliberately allocated to any particular attack, defence or requirement. The cultural and gender mix simply reflects theses sources of names, and is not meant to be world-representative. Some names have been changed over the years to include some more recent project volunteers.
20 | ### Why aren’t there any images on the card faces?
21 | There is quite a lot of text on the cards, and the cross-referencing takes up space too. But it would be great to have additional design elements included.
22 | ### Are the attacks ranked by the number on the card?
23 | Only approximately. The risk will be application and organisation dependent, due to varying security and compliance requirements, so your own severity rating may place the cards in some other order than the numbers on the cards.
24 |
25 |
26 |
27 | ### How long does it take to play a round of cards using the full deck?
28 | This depends upon the amount of discussion and how familiar the players are with application security concepts. But perhaps allow 1.5 to 2.0 hours for 4-6 people.
29 | ### What sort of people should play the game?
30 | Always try to have a mix of roles who can contribute alternative perspectives. But include someone who has a reasonable knowledge of application vulnerability terminology. Otherwise try to include a mix of architects, developers, testers and a relevant project manager or business owner.
31 | ### Who should take notes and record scores?
32 | It is better if that someone else, not playing the game, takes notes about the requirements identified and issues discussed. This could be used as training for a more junior developer, or performed by the project manager. Some organisations have made a recording to review afterwards when the requirements are written up more formally.
33 | ### Should we always use the full deck of cards?
34 | No. A smaller deck is quicker to play. Start your first game with only enough cards for two or three rounds. Always consider removing cards that are not appropriate at all of the target application or function being reviewed. For the first few times people play the game it is also usually better to remove the Aces and the two Jokers. It is also usual to play the game without any trumps suit until people are more familiar with the idea.
35 | ### What should players do when they have an Ace card that says “invented a new X attack”?
36 | The player can make up any attack they think is valid, but must match the suit of the card e.g. data validation and encoding). With players new to the game, it can be better to remove these to begin with.
37 | ### I don’t understand what the attack means on each card - is there more detailed information?
38 | Yes, the card browser on our website has more information on what each card means. The website was created to help players understand the attacks. See [cornucopia.owasp.org](https://cornucopia.owasp.org/cards).
39 |
--------------------------------------------------------------------------------
/tab_play.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Play
3 | displaytext: How to Play
4 | layout: null
5 | tab: true
6 | order: 2
7 | tags: cc
8 | ---
9 |
10 | ## How to Play
11 |
12 | Please visit [cornucopia.owasp.org](https://cornucopia.owasp.org/how-to-play)
13 |
--------------------------------------------------------------------------------
/tab_roadmap.md:
--------------------------------------------------------------------------------
1 | ---
2 | title: Roadmap
3 | displaytext: Road Map and Getting Involved
4 | layout: null
5 | tab: true
6 | order: 5
7 | tags: cc
8 | ---
9 |
10 | ## Road Map
11 |
12 | ### v2.x
13 |
14 | Below is a preliminary summary of our wishes, dreams and aspirations for Cornucopia. If you have suggestions, ideas, please feel free to discuss them on our [email list](https://groups.google.com/a/owasp.org/g/cornucopia-project) or submit them to our [list of issues](https://github.com/OWASP/cornucopia/issues) in our repository.
15 | If you feel like and have the oportunity to help with any of the issues below, do not hesitate to get in touch.
16 |
17 | Ordered alphabeticly and not according to priority.
18 |
19 | - Build the requirement map on the card using OpenCRE for easier maintainence and collaboration. [cornucopia #595](https://github.com/OWASP/cornucopia/issues/595)
20 | - Endpoint per card with more information available on copi. [copi #6](https://github.com/secure-delivery/copi/issues/6)
21 | - Ensure the converter can create print-ready proofs for print-on-demand jobs. [](https://github.com/OWASP/cornucopia/issues/583)
22 | - Include QR codes on the Cornucopia cards. [cornucopia #382](https://github.com/OWASP/cornucopia/issues/382)
23 | - Language review of the existing translations. [cornucopia #596](https://github.com/OWASP/cornucopia/issues/596)
24 | - Migrate the wiki deck to github wiki. [cornucopia #1](https://github.com/OWASP/www-project-cornucopia/issues/1)
25 | - Seek worldwide translators and incorporate additional translations for other languages.
26 |
27 | ## Getting Involved
28 |
29 |
30 |
31 | Involvement in the development and promotion of Cornucopia is actively encouraged! You do not have to be a security expert in order to contribute. Some of the ways you can help are listed below.
32 |
33 | ### Localization
34 |
35 | Are you fluent in another language? Can you help translate Cornucopia into that language? Note this is a very large task due to the number of documents involved, but the strings are now all available in textual data files.
36 |
37 | ### Use and Promote the Cornucopia Card Decks
38 |
39 | Please help raise awareness of Cornucopia by:
40 | * Printing dcks of cards and giving them away
41 | * Using Cornucopia with specifiers, architects, designers, developers, testers and others, in part to train them, but also to solicit feedback on their usability, practicality and appropriateness for their work
42 | * Creating videos about how to play the game
43 | * Developing a mobile app to play the game
44 |
45 | ### Feedback
46 |
47 |
48 |
49 | Please use the friendly project [Google Group](https://groups.google.com/a/owasp.org/forum/#!forum/cornucopia-project) for feedback:
50 |
51 | * What do like?
52 | * What don't you like?
53 | * What cards don't make sense?
54 | * How could the guidance be improved?
55 | * What other decks would you like to see?
56 |
57 | ### Keep the Cards Updated
58 |
59 | As the source referenced documents change, we have to update the decks. You may also find errors and omissions. In the first instance, please send a message to the project's [Google Group](https://groups.google.com/a/owasp.org/forum/#!forum/cornucopia-project) if you have identified errors & omissions, have some time to maintain the source documents, or can help in other ways.
60 |
61 | ### Create a New Deck
62 |
63 | The first deck, Cornucopia Ecommerce Website Edition, has been renamed Cornucopia Website App Edition and is currently available in six languages. There is also a mobile app specific deck called Cornucopia Mobile App Edition available in English only. Do you have an idea for your own application security requirements card deck?
64 |
--------------------------------------------------------------------------------