Skip to content

Commit 80eaa71

Browse files
committed
add notice
1 parent e7b7a6a commit 80eaa71

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
# Reversing Challenges List
2+
3+
If there is no writeup about reversing tasks of past CTF and you need, please make the issue.
4+
5+
過去のCTFのrev問でwriteupが無かったり,日本語のwriteupがほしい場合にissueを立ててくれれば出来るだけ解いて日本語のwriteupを書いていこうと思います.
6+
27
## Baby
38
* [Sharif University CTF 2016 : dMd](Baby/Sharif_University_CTF_2016_dMd/README.md)
49
* [Sharif University CTF 2016 : SRM](Baby/Sharif_University_CTF_2016_SRM/README.md)

gen_files.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,12 @@ def escape_path(s):
77

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

1217
criterions = conf['criterions']
1318
problems = conf['problems']

0 commit comments

Comments
 (0)