-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.xml
More file actions
61 lines (55 loc) · 1.97 KB
/
example.xml
File metadata and controls
61 lines (55 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<?xml version="1.0"?>
<hackerbot xmlns="http://www.github/cliffe/SecGen/hackerbotz"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.github/cliffe/SecGen/hackerbot">
<name>Scenario</name>
<description></description>
<channel>secchat</channel>
<bot>
<name>bot1</name>
<!--The overall prompt to be used for the bot-->
<prompt>
Reply happily to the user message
{usr_in}
</prompt>
<!--How the bot should represent itself-->
<expression></expression>
<!--This is the task for the bot-->
<task></task>
<!--The task it needs to achieve that the user can exploit-->
<protects></protects>
<!--Allows Private messages between other bots-->
<pm_bots></pm_bots>
<!-- Start in public chat, This allows a bot to initially talk in public-->
<SIP></SIP>
</bot>
<bot>
<!--Unique names-->
<name>bot2</name>
<!--The overall prompt to be used for the bot-->
<prompt>
Reply angrily to the user message
{usr_in}
</prompt>
<!--How the bot should represent itself-->
<expression></expression>
<!--This is the task for the bot-->
<task></task>
<!--The task it needs to achieve that the user can exploit-->
<protects></protects>
<!--Allows Private messages between other bots-->
<pm_bots></pm_bots>
<!-- Start in public chat, This allows a bot to initially talk in public-->
<SIP></SIP>
</bot>
<conversation>
<!--The participants-->
<bots>bot1|bot2</bots>
<!-- Current name -->
<name>Exchange private</name>
<!-- The amount of messages to exchange -->
<chain_length>10</chain_length>
<!-- control conversation when element exposed in chat -->
<expose></expose>
</conversation>
</hackerbot>