Re-adding flag generator metadata, accidentally removed in the merge.

(cherry picked from commit 2179f08)
This commit is contained in:
ts
2018-10-12 10:51:19 +01:00
parent 4c4fe0a75e
commit 87b18d398a
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<?xml version="1.0"?>
<generator xmlns="http://www.github/cliffe/SecGen/generator"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.github/cliffe/SecGen/generator">
<name>Concatenated Flag Generator</name>
<author>Thomas Shaw</author>
<module_license>MIT</module_license>
<description>Concatenates the contents of strings_to_join, separated with a space, outputs flag{result}.</description>
<type>flag_generator</type>
<type>concat_flag_generator</type>
<type>local_calculation</type>
<platform>linux</platform>
<platform>windows</platform>
<read_fact>strings_to_join</read_fact>
<default_input into="strings_to_join">
<generator type="random_word_generator"/>
<generator type="random_word_generator"/>
</default_input>
<output_type>generated_strings</output_type>
</generator>

View File

@@ -0,0 +1,21 @@
<?xml version="1.0"?>
<generator xmlns="http://www.github/cliffe/SecGen/generator"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.github/cliffe/SecGen/generator">
<name>Random Words Flag Generator</name>
<author>Z. Cliffe Schreuders</author>
<module_license>MIT</module_license>
<description>Uses a wordlist (Ruby gem + a wordlist) to generate a list of random (mostly English) dictionary words. May include punctuation.</description>
<type>flag_generator</type>
<type>local_calculation</type>
<platform>linux</platform>
<platform>windows</platform>
<reference>https://github.com/sophsec/wordlist</reference>
<reference>http://wordlist.sourceforge.net/</reference>
<output_type>generated_strings</output_type>
</generator>