ctf-primer icon indicating copy to clipboard operation
ctf-primer copied to clipboard

Textbook with chapters for each usual picoCTF challenge category.

Results 17 ctf-primer issues
Sort by recently updated
recently updated
newest added

Depends on #30 Once primer challenges are detached from primer, all that remains are static pages that can be published out to Pages

enhancement

Having challenges in the Gym instead of separately hosted would allow us to prune some AWS resources and would help introduce people to the Gym. This challenges could be open-sourced...

enhancement

Currently, there are some parts of the Python chapter that use `cnt` as the variable name for a counter variable. I would prefer this to be a single letter such...

enhancement
good first issue
help wanted

@ssabogalp already has a great start on the Primer's Assembly chapter, however, assembly is such a vast a complex topic that there are many more aspects to it that could...

enhancement
help wanted

I have an outline and a start to a Reverse Engineering chapter already, but I would love to see a proposal from someone else passionate about the discipline. This proposal...

enhancement

The blind SQL injection code ```python import requests from string import printable accum = "" for i in range(40): for letter in printable: accum += letter r = requests.post("https://primer.picoctf.org/vuln/web/blindsql.php?&username=WeDontCare&password=' or...

As mention by me in #57. Their is a bug that causes the run to do loop it doesn't need to. I thought this is simple enough that I can...