Skip to content

Commit

Permalink
add notice
Browse files Browse the repository at this point in the history
  • Loading branch information
N4NU committed Jul 3, 2019
1 parent e7b7a6a commit 80eaa71
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# Reversing Challenges List

If there is no writeup about reversing tasks of past CTF and you need, please make the issue.

過去のCTFのrev問でwriteupが無かったり,日本語のwriteupがほしい場合にissueを立ててくれれば出来るだけ解いて日本語のwriteupを書いていこうと思います.

## Baby
* [Sharif University CTF 2016 : dMd](Baby/Sharif_University_CTF_2016_dMd/README.md)
* [Sharif University CTF 2016 : SRM](Baby/Sharif_University_CTF_2016_SRM/README.md)
Expand Down
7 changes: 6 additions & 1 deletion gen_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ def escape_path(s):

def gen_main_readme(conf):
f = open('README.md', 'w')
f.write("# Reversing Challenges List\n")

f.write("# Reversing Challenges List\n\n")
msg = ''
msg += 'If there is no writeup about reversing tasks of past CTF and you need, please make the issue.\n\n'
msg += '過去のCTFのrev問でwriteupが無かったり,日本語のwriteupがほしい場合にissueを立ててくれれば出来るだけ解いて日本語のwriteupを書いていこうと思います.\n\n'
f.write(msg)

criterions = conf['criterions']
problems = conf['problems']
Expand Down

0 comments on commit 80eaa71

Please sign in to comment.