adding basic atbash problem
This commit is contained in:
parent
7cffce1cfa
commit
9cfa312780
3 changed files with 13 additions and 0 deletions
1
flip-my-letters/description.md
Normal file
1
flip-my-letters/description.md
Normal file
|
@ -0,0 +1 @@
|
|||
I dropped my alphabet on its head, can you help me reassemble it? `easyctf{r_wlmg_vevm_mvvw_zm_zhxrr_gzyov}`
|
4
flip-my-letters/grader.py
Normal file
4
flip-my-letters/grader.py
Normal file
|
@ -0,0 +1,4 @@
|
|||
def grade(autogen, key):
|
||||
if key.find("i_dont_even_need_an_ascii_table") != -1:
|
||||
return True, "Correct!"
|
||||
return False, "Nope!"
|
8
flip-my-letters/problem.yml
Normal file
8
flip-my-letters/problem.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
author: GenericNickname
|
||||
title: Flip My Letters
|
||||
hint: What happens if you turn the alphabet upside down?
|
||||
category: Cyrptography
|
||||
autogen: false
|
||||
programming: false
|
||||
value: 20
|
||||
files:
|
Loading…
Reference in a new issue