mu 5.7.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (117) hide show
  1. data/Mu_Gem.html +1591 -0
  2. data/bin/mu +11 -0
  3. data/lib/mu.rb +65 -0
  4. data/lib/mu/api/ddt.rb +233 -0
  5. data/lib/mu/api/homepage.rb +54 -0
  6. data/lib/mu/api/muapi.rb +231 -0
  7. data/lib/mu/api/netconfig.rb +233 -0
  8. data/lib/mu/api/scale.rb +199 -0
  9. data/lib/mu/api/system.rb +40 -0
  10. data/lib/mu/client.rb +31 -0
  11. data/lib/mu/command.rb +28 -0
  12. data/lib/mu/command/api.rb +95 -0
  13. data/lib/mu/command/cmd_appid.rb +486 -0
  14. data/lib/mu/command/cmd_cli.rb +151 -0
  15. data/lib/mu/command/cmd_ddt.rb +449 -0
  16. data/lib/mu/command/cmd_homepage.rb +146 -0
  17. data/lib/mu/command/cmd_muapi.rb +361 -0
  18. data/lib/mu/command/cmd_netconfig.rb +262 -0
  19. data/lib/mu/command/cmd_runscale.rb +533 -0
  20. data/lib/mu/command/cmd_runscenario.rb +258 -0
  21. data/lib/mu/command/cmd_runverify.rb +336 -0
  22. data/lib/mu/command/cmd_scale.rb +333 -0
  23. data/lib/mu/command/cmd_system.rb +127 -0
  24. data/lib/mu/command/curl.rb +246 -0
  25. data/lib/mu/command/help.rb +29 -0
  26. data/lib/mu/curl/error.rb +54 -0
  27. data/lib/mu/curl/verify.rb +137 -0
  28. data/lib/mu/helper.rb +55 -0
  29. data/lib/mu/http_helper.rb +232 -0
  30. data/rdoc/classes/Mu.html +305 -0
  31. data/rdoc/classes/Mu/Client.html +265 -0
  32. data/rdoc/classes/Mu/Command.html +208 -0
  33. data/rdoc/classes/Mu/Command/API.html +524 -0
  34. data/rdoc/classes/Mu/Command/Cmd_appid.html +934 -0
  35. data/rdoc/classes/Mu/Command/Cmd_cli.html +515 -0
  36. data/rdoc/classes/Mu/Command/Cmd_ddt.html +1169 -0
  37. data/rdoc/classes/Mu/Command/Cmd_homepage.html +489 -0
  38. data/rdoc/classes/Mu/Command/Cmd_muapi.html +968 -0
  39. data/rdoc/classes/Mu/Command/Cmd_netconfig.html +743 -0
  40. data/rdoc/classes/Mu/Command/Cmd_runscale.html +970 -0
  41. data/rdoc/classes/Mu/Command/Cmd_runscenario.html +530 -0
  42. data/rdoc/classes/Mu/Command/Cmd_runverify.html +621 -0
  43. data/rdoc/classes/Mu/Command/Cmd_scale.html +939 -0
  44. data/rdoc/classes/Mu/Command/Cmd_system.html +426 -0
  45. data/rdoc/classes/Mu/Command/Curl.html +524 -0
  46. data/rdoc/classes/Mu/Command/Help.html +166 -0
  47. data/rdoc/classes/Mu/Curl.html +116 -0
  48. data/rdoc/classes/Mu/Curl/Error.html +157 -0
  49. data/rdoc/classes/Mu/Curl/Error/Authorize.html +178 -0
  50. data/rdoc/classes/Mu/Curl/Error/Connect.html +149 -0
  51. data/rdoc/classes/Mu/Curl/Error/DNS.html +113 -0
  52. data/rdoc/classes/Mu/Curl/Error/Region.html +160 -0
  53. data/rdoc/classes/Mu/Curl/Error/Status.html +149 -0
  54. data/rdoc/classes/Mu/Curl/Error/Timeout.html +149 -0
  55. data/rdoc/classes/Mu/Curl/Verify.html +282 -0
  56. data/rdoc/classes/Mu/Curl/Verify/Request.html +227 -0
  57. data/rdoc/classes/Mu/Curl/Verify/Response.html +187 -0
  58. data/rdoc/classes/Mu/Curl/Verify/Result.html +188 -0
  59. data/rdoc/classes/Mu/Ddt.html +914 -0
  60. data/rdoc/classes/Mu/Helper.html +308 -0
  61. data/rdoc/classes/Mu/Homepage.html +377 -0
  62. data/rdoc/classes/Mu/HttpHelper.html +639 -0
  63. data/rdoc/classes/Mu/Muapi.html +816 -0
  64. data/rdoc/classes/Mu/Netconfig.html +781 -0
  65. data/rdoc/classes/Mu/Scale.html +832 -0
  66. data/rdoc/classes/Mu/System.html +281 -0
  67. data/rdoc/classes/Object.html +148 -0
  68. data/rdoc/classes/TCTestMu.html +1793 -0
  69. data/rdoc/classes/Test.html +107 -0
  70. data/rdoc/classes/Test/Unit.html +107 -0
  71. data/rdoc/classes/Test/Unit/TestCase.html +113 -0
  72. data/rdoc/created.rid +1 -0
  73. data/rdoc/files/lib/mu/api/ddt_rb.html +101 -0
  74. data/rdoc/files/lib/mu/api/homepage_rb.html +101 -0
  75. data/rdoc/files/lib/mu/api/muapi_rb.html +101 -0
  76. data/rdoc/files/lib/mu/api/netconfig_rb.html +101 -0
  77. data/rdoc/files/lib/mu/api/scale_rb.html +101 -0
  78. data/rdoc/files/lib/mu/api/system_rb.html +101 -0
  79. data/rdoc/files/lib/mu/client_rb.html +101 -0
  80. data/rdoc/files/lib/mu/command/api_rb.html +101 -0
  81. data/rdoc/files/lib/mu/command/cmd_appid_rb.html +119 -0
  82. data/rdoc/files/lib/mu/command/cmd_cli_rb.html +108 -0
  83. data/rdoc/files/lib/mu/command/cmd_ddt_rb.html +117 -0
  84. data/rdoc/files/lib/mu/command/cmd_homepage_rb.html +115 -0
  85. data/rdoc/files/lib/mu/command/cmd_muapi_rb.html +116 -0
  86. data/rdoc/files/lib/mu/command/cmd_netconfig_rb.html +116 -0
  87. data/rdoc/files/lib/mu/command/cmd_runscale_rb.html +119 -0
  88. data/rdoc/files/lib/mu/command/cmd_runscenario_rb.html +115 -0
  89. data/rdoc/files/lib/mu/command/cmd_runverify_rb.html +117 -0
  90. data/rdoc/files/lib/mu/command/cmd_scale_rb.html +115 -0
  91. data/rdoc/files/lib/mu/command/cmd_system_rb.html +116 -0
  92. data/rdoc/files/lib/mu/command/curl_rb.html +101 -0
  93. data/rdoc/files/lib/mu/command/help_rb.html +101 -0
  94. data/rdoc/files/lib/mu/command_rb.html +107 -0
  95. data/rdoc/files/lib/mu/curl/error_rb.html +101 -0
  96. data/rdoc/files/lib/mu/curl/verify_rb.html +101 -0
  97. data/rdoc/files/lib/mu/helper_rb.html +101 -0
  98. data/rdoc/files/lib/mu/http_helper_rb.html +101 -0
  99. data/rdoc/files/lib/mu_rb.html +121 -0
  100. data/rdoc/files/test/helper_rb.html +112 -0
  101. data/rdoc/files/test/tc_test_mu_rb.html +111 -0
  102. data/rdoc/fr_class_index.html +68 -0
  103. data/rdoc/fr_file_index.html +55 -0
  104. data/rdoc/fr_method_index.html +374 -0
  105. data/rdoc/index.html +24 -0
  106. data/rdoc/rdoc-style.css +208 -0
  107. data/test/data/app_id_stats.csv +1 -0
  108. data/test/data/data_cgi.msl +94 -0
  109. data/test/data/data_cgi.xml +322 -0
  110. data/test/data/default_test.csv +3 -0
  111. data/test/data/ftp_with_channel.xml +1643 -0
  112. data/test/data/irc.xml +3837 -0
  113. data/test/data/scale_configuration.json +25 -0
  114. data/test/data/test_data_cgi_error.xml +35 -0
  115. data/test/helper.rb +18 -0
  116. data/test/tc_test_mu.rb +716 -0
  117. metadata +322 -0
@@ -0,0 +1,3 @@
1
+ options,scenario_user_options.data_type,scenario_user_options.data_length,scenario_user_options.data
2
+ defaults,numbers,3,123
3
+ test def,,,
@@ -0,0 +1,1643 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <mu_config version="4.0">
3
+ <templates>
4
+ <scenario name="ftp_with_channel" version="4.5.2.r33816" uuid="379a4cf8-8fe7-4d2d-8f6b-b8c6b71557b4">
5
+ <options>
6
+ <string>
7
+ <description>string</description>
8
+ <id>channel_command</id>
9
+ <name>channel command</name>
10
+ <value>ifconfig</value>
11
+ </string>
12
+ </options>
13
+ <hosts>
14
+ <host>
15
+ <id>host_0</id>
16
+ <role>192.168.30.188 (A1.V4)</role>
17
+ <type>v4</type>
18
+ </host>
19
+ <host>
20
+ <id>host_1</id>
21
+ <role>192.168.30.9 (dell-eth1.V4)</role>
22
+ <type>v4</type>
23
+ </host>
24
+ </hosts>
25
+ <steps>
26
+ <channel>
27
+ <name>channel</name>
28
+ <timeout>5000</timeout>
29
+ </channel>
30
+ <tcp>
31
+ <dst>
32
+ <host>
33
+ <id>host_1</id>
34
+ </host>
35
+ </dst>
36
+ <src>
37
+ <host>
38
+ <id>host_0</id>
39
+ </host>
40
+ </src>
41
+ <name>FTP</name>
42
+ <dst_port>
43
+ <string>
44
+ <value>21</value>
45
+ </string>
46
+ </dst_port>
47
+ <ip_version>v4</ip_version>
48
+ <type>client</type>
49
+ </tcp>
50
+ <tcp_server_send>
51
+ <description>Response: 220 FTP server (Version wu-2.6.0(5)) ready.</description>
52
+ <name>FTP Response Server Send</name>
53
+ <transport>FTP</transport>
54
+ <mutable>true</mutable>
55
+ <payload>
56
+ <line label="File Transfer Protocol (FTP)" name="ftp">
57
+ <terminator>\r\n</terminator>
58
+ <value>
59
+ <dsv>
60
+ <delimiter> </delimiter>
61
+ <elements>
62
+ <integer_field label="Response code: Service ready for new user (220)" name="response_code">
63
+ <base>10</base>
64
+ <value>
65
+ <string>
66
+ <value>220</value>
67
+ </string>
68
+ </value>
69
+ </integer_field>
70
+ <string_field>
71
+ <value>
72
+ <string>
73
+ <value>FTP</value>
74
+ </string>
75
+ </value>
76
+ </string_field>
77
+ <string_field>
78
+ <value>
79
+ <string>
80
+ <value>server</value>
81
+ </string>
82
+ </value>
83
+ </string_field>
84
+ <quote>
85
+ <left_quote>(</left_quote>
86
+ <right_quote>)</right_quote>
87
+ <value>
88
+ <dsv>
89
+ <delimiter> </delimiter>
90
+ <elements>
91
+ <string_field>
92
+ <value>
93
+ <string>
94
+ <value>Version</value>
95
+ </string>
96
+ </value>
97
+ </string_field>
98
+ <dsv>
99
+ <delimiter>.</delimiter>
100
+ <elements>
101
+ <string_field>
102
+ <value>
103
+ <string>
104
+ <value>wu-2</value>
105
+ </string>
106
+ </value>
107
+ </string_field>
108
+ <integer_field>
109
+ <base>10</base>
110
+ <value>
111
+ <string>
112
+ <value>6</value>
113
+ </string>
114
+ </value>
115
+ </integer_field>
116
+ <struct>
117
+ <append_alternates/>
118
+ <elements>
119
+ <integer_field>
120
+ <base>10</base>
121
+ <value>
122
+ <string>
123
+ <value>0</value>
124
+ </string>
125
+ </value>
126
+ </integer_field>
127
+ <quote>
128
+ <left_quote>(</left_quote>
129
+ <right_quote>)</right_quote>
130
+ <value>
131
+ <integer_field>
132
+ <base>10</base>
133
+ <value>
134
+ <string>
135
+ <value>5</value>
136
+ </string>
137
+ </value>
138
+ </integer_field>
139
+ </value>
140
+ </quote>
141
+ </elements>
142
+ </struct>
143
+ </elements>
144
+ </dsv>
145
+ </elements>
146
+ </dsv>
147
+ </value>
148
+ </quote>
149
+ <struct>
150
+ <append_alternates/>
151
+ <elements>
152
+ <string_field>
153
+ <value>
154
+ <string>
155
+ <value>ready</value>
156
+ </string>
157
+ </value>
158
+ </string_field>
159
+ <string_field>
160
+ <value>
161
+ <string>
162
+ <value>.</value>
163
+ </string>
164
+ </value>
165
+ </string_field>
166
+ </elements>
167
+ </struct>
168
+ </elements>
169
+ </dsv>
170
+ </value>
171
+ </line>
172
+ </payload>
173
+ </tcp_server_send>
174
+ <tcp_client_receive>
175
+ <description>Response: 220 FTP server (Version wu-2.6.0(5)) ready.</description>
176
+ <name>FTP Response Client Receive</name>
177
+ <transport>FTP</transport>
178
+ <assertions/>
179
+ <send_action>FTP Response Server Send</send_action>
180
+ <variables/>
181
+ </tcp_client_receive>
182
+ <tcp_client_send>
183
+ <description>Request: USER anonymous</description>
184
+ <name>FTP Request Client Send</name>
185
+ <transport>FTP</transport>
186
+ <mutable>true</mutable>
187
+ <payload>
188
+ <line label="File Transfer Protocol (FTP)" name="ftp">
189
+ <terminator>\r\n</terminator>
190
+ <value>
191
+ <dsv>
192
+ <delimiter> </delimiter>
193
+ <elements>
194
+ <string_field label="Request command: USER" name="request_command">
195
+ <value>
196
+ <string>
197
+ <value>USER</value>
198
+ </string>
199
+ </value>
200
+ </string_field>
201
+ <string_field label="Request arg: anonymous" name="request_arg">
202
+ <value>
203
+ <string>
204
+ <value>anonymous</value>
205
+ </string>
206
+ </value>
207
+ </string_field>
208
+ </elements>
209
+ </dsv>
210
+ </value>
211
+ </line>
212
+ </payload>
213
+ </tcp_client_send>
214
+ <tcp_server_receive>
215
+ <description>Request: USER anonymous</description>
216
+ <name>FTP Request Server Receive</name>
217
+ <transport>FTP</transport>
218
+ <assertions/>
219
+ <send_action>FTP Request Client Send</send_action>
220
+ <variables/>
221
+ </tcp_server_receive>
222
+ <channel_client_send>
223
+ <name>ifconfig</name>
224
+ <transport>channel</transport>
225
+ <mutable>false</mutable>
226
+ <output>IGlmY29uZmln</output>
227
+ <payload>
228
+ <string_field output_length="8" output_offset="0">
229
+ <value>
230
+ <string>
231
+ <value> </value>
232
+ </string>
233
+ </value>
234
+ </string_field>
235
+ <string_field output_length="64" output_offset="8">
236
+ <value>
237
+ <option>
238
+ <id>channel_command</id>
239
+ </option>
240
+ </value>
241
+ </string_field>
242
+ </payload>
243
+ </channel_client_send>
244
+ <channel_client_receive>
245
+ <name>ifconfig (Response)</name>
246
+ <transport>channel</transport>
247
+ <assertions>
248
+ <match>
249
+ <description>was eth0</description>
250
+ <status>none</status>
251
+ <operation>match</operation>
252
+ <pattern>eth0</pattern>
253
+ </match>
254
+ </assertions>
255
+ <input>ZXRoMCAgICAgIExpbmsgZW5jYXA6RXRoZXJuZXQgIEhXYWRkciAwMDoxOTpCOTpGNzo0QjowMgog
256
+ ICAgICAgICAgaW5ldCBhZGRyOjEwLjEwLjMuMTA5ICBCY2FzdDoxMC4xMC43LjI1NSAgTWFzazoy
257
+ NTUuMjU1LjI0OC4wCiAgICAgICAgICBpbmV0NiBhZGRyOiBmZWMwOjExOjoyMTk6YjlmZjpmZWY3
258
+ OjRiMDIvNjQgU2NvcGU6U2l0ZQogICAgICAgICAgaW5ldDYgYWRkcjogMjAwMTo0Mjg6OjIxOTpi
259
+ OWZmOmZlZjc6NGIwMi82NCBTY29wZTpHbG9iYWwKICAgICAgICAgIGluZXQ2IGFkZHI6IDIwMDE6
260
+ NDI6OjIxOTpiOWZmOmZlZjc6NGIwMi82NCBTY29wZTpHbG9iYWwKICAgICAgICAgIGluZXQ2IGFk
261
+ ZHI6IGZlODA6OjIxOTpiOWZmOmZlZjc6NGIwMi82NCBTY29wZTpMaW5rCiAgICAgICAgICBVUCBC
262
+ Uk9BRENBU1QgUlVOTklORyBNVUxUSUNBU1QgIE1UVToxNTAwICBNZXRyaWM6MQogICAgICAgICAg
263
+ UlggcGFja2V0czo1NzkwMzE2IGVycm9yczowIGRyb3BwZWQ6MCBvdmVycnVuczowIGZyYW1lOjAK
264
+ ICAgICAgICAgIFRYIHBhY2tldHM6ODAyNDk2IGVycm9yczowIGRyb3BwZWQ6MCBvdmVycnVuczow
265
+ IGNhcnJpZXI6MAogICAgICAgICAgY29sbGlzaW9uczowIHR4cXVldWVsZW46MTAwMAogICAgICAg
266
+ ICAgUlggYnl0ZXM6MTA4Njc4Njc1NyAoMS4wIEdpQikgIFRYIGJ5dGVzOjI0ODQ3MjgyMSAoMjM2
267
+ LjkgTWlCKQogICAgICAgICAgSW50ZXJydXB0OjE2OQoKZXRoMSAgICAgIExpbmsgZW5jYXA6RXRo
268
+ ZXJuZXQgIEhXYWRkciAwMDoxOTpCOTpGNzo0QjowMwogICAgICAgICAgaW5ldCBhZGRyOjE5Mi4x
269
+ NjguMzAuOSAgQmNhc3Q6MTkyLjE2OC4zMC4yNTUgIE1hc2s6MjU1LjI1NS4yNTUuMAogICAgICAg
270
+ ICAgaW5ldDYgYWRkcjogZmU4MDo6MjE5OmI5ZmY6ZmVmNzo0YjAzLzY0IFNjb3BlOkxpbmsKICAg
271
+ ICAgICAgIFVQIEJST0FEQ0FTVCBSVU5OSU5HIE1VTFRJQ0FTVCAgTVRVOjE1MDAgIE1ldHJpYzox
272
+ CiAgICAgICAgICBSWCBwYWNrZXRzOjUzNDEwMTAgZXJyb3JzOjAgZHJvcHBlZDowIG92ZXJydW5z
273
+ OjAgZnJhbWU6MAogICAgICAgICAgVFggcGFja2V0czoyMjkwNTQ2IGVycm9yczowIGRyb3BwZWQ6
274
+ MCBvdmVycnVuczowIGNhcnJpZXI6MAogICAgICAgICAgY29sbGlzaW9uczowIHR4cXVldWVsZW46
275
+ MTAwMAogICAgICAgICAgUlggYnl0ZXM6MTAyOTI3NzI1MiAoOTgxLjUgTWlCKSAgVFggYnl0ZXM6
276
+ NzM5NTkwNDEwICg3MDUuMyBNaUIpCiAgICAgICAgICBJbnRlcnJ1cHQ6MjA5CgpldGgyICAgICAg
277
+ TGluayBlbmNhcDpFdGhlcm5ldCAgSFdhZGRyIDAwOjE1OjE3OjM1OkMyOkU2CiAgICAgICAgICBp
278
+ bmV0IGFkZHI6MTkyLjE2OC4xNDAuMjU0ICBCY2FzdDoxOTIuMTY4LjE0MC4yNTUgIE1hc2s6MjU1
279
+ LjI1NS4yNTUuMAogICAgICAgICAgaW5ldDYgYWRkcjogZmVjMDoxMTo6MjE1OjE3ZmY6ZmUzNTpj
280
+ MmU2LzY0IFNjb3BlOlNpdGUKICAgICAgICAgIGluZXQ2IGFkZHI6IDIwMDE6NDI4OjoyMTU6MTdm
281
+ ZjpmZTM1OmMyZTYvNjQgU2NvcGU6R2xvYmFsCiAgICAgICAgICBpbmV0NiBhZGRyOiAyMDAxOjQy
282
+ OjoyMTU6MTdmZjpmZTM1OmMyZTYvNjQgU2NvcGU6R2xvYmFsCiAgICAgICAgICBpbmV0NiBhZGRy
283
+ OiBmZTgwOjoyMTU6MTdmZjpmZTM1OmMyZTYvNjQgU2NvcGU6TGluawogICAgICAgICAgVVAgQlJP
284
+ QURDQVNUIFJVTk5JTkcgTVVMVElDQVNUICBNVFU6MTUwMCAgTWV0cmljOjEKICAgICAgICAgIFJY
285
+ IHBhY2tldHM6NDgwNTQzMSBlcnJvcnM6MCBkcm9wcGVkOjAgb3ZlcnJ1bnM6MCBmcmFtZTowCiAg
286
+ ICAgICAgICBUWCBwYWNrZXRzOjEzNjU0IGVycm9yczowIGRyb3BwZWQ6MCBvdmVycnVuczowIGNh
287
+ cnJpZXI6MAogICAgICAgICAgY29sbGlzaW9uczowIHR4cXVldWVsZW46MTAwCiAgICAgICAgICBS
288
+ WCBieXRlczo0MzMyMzQyNTkgKDQxMy4xIE1pQikgIFRYIGJ5dGVzOjE2ODg5MjEgKDEuNiBNaUIp
289
+ CgpldGgzICAgICAgTGluayBlbmNhcDpFdGhlcm5ldCAgSFdhZGRyIDAwOjE1OjE3OjM1OkMyOkU3
290
+ CiAgICAgICAgICBpbmV0IGFkZHI6MTkyLjE2OC40MC45ICBCY2FzdDoxOTIuMTY4LjQwLjI1NSAg
291
+ TWFzazoyNTUuMjU1LjI1NS4wCiAgICAgICAgICBpbmV0NiBhZGRyOiBmZTgwOjoyMTU6MTdmZjpm
292
+ ZTM1OmMyZTcvNjQgU2NvcGU6TGluawogICAgICAgICAgVVAgQlJPQURDQVNUIFJVTk5JTkcgTVVM
293
+ VElDQVNUICBNVFU6MTUwMCAgTWV0cmljOjEKICAgICAgICAgIFJYIHBhY2tldHM6MzYwNDMyIGVy
294
+ cm9yczoxMyBkcm9wcGVkOjAgb3ZlcnJ1bnM6MCBmcmFtZTo3CiAgICAgICAgICBUWCBwYWNrZXRz
295
+ OjQ3Mjg1IGVycm9yczowIGRyb3BwZWQ6MCBvdmVycnVuczowIGNhcnJpZXI6MAogICAgICAgICAg
296
+ Y29sbGlzaW9uczowIHR4cXVldWVsZW46MTAwCiAgICAgICAgICBSWCBieXRlczoyMzQ4Njk2NCAo
297
+ MjIuMyBNaUIpICBUWCBieXRlczoyMzYwNTUwMCAoMjIuNSBNaUIpCgpsbyAgICAgICAgTGluayBl
298
+ bmNhcDpMb2NhbCBMb29wYmFjawogICAgICAgICAgaW5ldCBhZGRyOjEyNy4wLjAuMSAgTWFzazoy
299
+ NTUuMC4wLjAKICAgICAgICAgIGluZXQ2IGFkZHI6IDo6MS8xMjggU2NvcGU6SG9zdAogICAgICAg
300
+ ICAgVVAgTE9PUEJBQ0sgUlVOTklORyAgTVRVOjE2NDM2ICBNZXRyaWM6MQogICAgICAgICAgUlgg
301
+ cGFja2V0czo4NTQ5MDYgZXJyb3JzOjAgZHJvcHBlZDowIG92ZXJydW5zOjAgZnJhbWU6MAogICAg
302
+ ICAgICAgVFggcGFja2V0czo4NTQ5MDYgZXJyb3JzOjAgZHJvcHBlZDowIG92ZXJydW5zOjAgY2Fy
303
+ cmllcjowCiAgICAgICAgICBjb2xsaXNpb25zOjAgdHhxdWV1ZWxlbjowCiAgICAgICAgICBSWCBi
304
+ eXRlczo1NTQ1NDI0NTUgKDUyOC44IE1pQikgIFRYIGJ5dGVzOjU1NDU0MjQ1NSAoNTI4LjggTWlC
305
+ KQoK</input>
306
+ <send_action>ifconfig</send_action>
307
+ <variables/>
308
+ </channel_client_receive>
309
+ <tcp_server_send>
310
+ <description>Response: 331 Guest login ok, send your complete e-mail address as a password.</description>
311
+ <name>FTP Response Server Send 2</name>
312
+ <transport>FTP</transport>
313
+ <mutable>true</mutable>
314
+ <payload>
315
+ <line label="File Transfer Protocol (FTP)" name="ftp">
316
+ <terminator>\r\n</terminator>
317
+ <value>
318
+ <dsv>
319
+ <delimiter>, </delimiter>
320
+ <elements>
321
+ <dsv>
322
+ <delimiter> </delimiter>
323
+ <elements>
324
+ <integer_field label="Response code: User name okay, need password (331)" name="response_code">
325
+ <base>10</base>
326
+ <value>
327
+ <string>
328
+ <value>331</value>
329
+ </string>
330
+ </value>
331
+ </integer_field>
332
+ <string_field>
333
+ <value>
334
+ <string>
335
+ <value>Guest</value>
336
+ </string>
337
+ </value>
338
+ </string_field>
339
+ <string_field>
340
+ <value>
341
+ <string>
342
+ <value>login</value>
343
+ </string>
344
+ </value>
345
+ </string_field>
346
+ <string_field>
347
+ <value>
348
+ <string>
349
+ <value>ok</value>
350
+ </string>
351
+ </value>
352
+ </string_field>
353
+ </elements>
354
+ </dsv>
355
+ <dsv>
356
+ <delimiter> </delimiter>
357
+ <elements>
358
+ <string_field>
359
+ <value>
360
+ <string>
361
+ <value>send</value>
362
+ </string>
363
+ </value>
364
+ </string_field>
365
+ <string_field>
366
+ <value>
367
+ <string>
368
+ <value>your</value>
369
+ </string>
370
+ </value>
371
+ </string_field>
372
+ <string_field>
373
+ <value>
374
+ <string>
375
+ <value>complete</value>
376
+ </string>
377
+ </value>
378
+ </string_field>
379
+ <string_field>
380
+ <value>
381
+ <string>
382
+ <value>e-mail</value>
383
+ </string>
384
+ </value>
385
+ </string_field>
386
+ <string_field>
387
+ <value>
388
+ <string>
389
+ <value>address as a password.</value>
390
+ </string>
391
+ </value>
392
+ </string_field>
393
+ </elements>
394
+ </dsv>
395
+ </elements>
396
+ </dsv>
397
+ </value>
398
+ </line>
399
+ </payload>
400
+ </tcp_server_send>
401
+ <tcp_client_receive>
402
+ <description>Response: 331 Guest login ok, send your complete e-mail address as a password.</description>
403
+ <name>FTP Response Client Receive 2</name>
404
+ <transport>FTP</transport>
405
+ <assertions/>
406
+ <send_action>FTP Response Server Send 2</send_action>
407
+ <variables/>
408
+ </tcp_client_receive>
409
+ <tcp_client_send>
410
+ <description>Request: PASS user@mudynamics.com</description>
411
+ <name>FTP Request Client Send 2</name>
412
+ <transport>FTP</transport>
413
+ <mutable>true</mutable>
414
+ <payload>
415
+ <line label="File Transfer Protocol (FTP)" name="ftp">
416
+ <terminator>\r\n</terminator>
417
+ <value>
418
+ <dsv>
419
+ <delimiter> </delimiter>
420
+ <elements>
421
+ <string_field label="Request command: PASS" name="request_command">
422
+ <value>
423
+ <string>
424
+ <value>PASS</value>
425
+ </string>
426
+ </value>
427
+ </string_field>
428
+ <email label="Request arg: user@mudynamics.com" name="request_arg">
429
+ <domain>
430
+ <string>
431
+ <value>mudynamics.com</value>
432
+ </string>
433
+ </domain>
434
+ <username>
435
+ <string>
436
+ <value>user</value>
437
+ </string>
438
+ </username>
439
+ </email>
440
+ </elements>
441
+ </dsv>
442
+ </value>
443
+ </line>
444
+ </payload>
445
+ </tcp_client_send>
446
+ <tcp_server_receive>
447
+ <description>Request: PASS user@mudynamics.com</description>
448
+ <name>FTP Request Server Receive 2</name>
449
+ <transport>FTP</transport>
450
+ <assertions/>
451
+ <send_action>FTP Request Client Send 2</send_action>
452
+ <variables/>
453
+ </tcp_server_receive>
454
+ <tcp_server_send>
455
+ <description>Response: 230-we have counted 0 bad password attempts</description>
456
+ <name>FTP Response Server Send 3</name>
457
+ <transport>FTP</transport>
458
+ <mutable>true</mutable>
459
+ <payload>
460
+ <line label="230-we have counted 0 bad password attempts\r\n">
461
+ <terminator>\r\n</terminator>
462
+ <value>
463
+ <dsv>
464
+ <delimiter> </delimiter>
465
+ <elements>
466
+ <string_field>
467
+ <value>
468
+ <string>
469
+ <value>230-we</value>
470
+ </string>
471
+ </value>
472
+ </string_field>
473
+ <string_field>
474
+ <value>
475
+ <string>
476
+ <value>have</value>
477
+ </string>
478
+ </value>
479
+ </string_field>
480
+ <string_field>
481
+ <value>
482
+ <string>
483
+ <value>counted</value>
484
+ </string>
485
+ </value>
486
+ </string_field>
487
+ <integer_field>
488
+ <base>10</base>
489
+ <value>
490
+ <string>
491
+ <value>0</value>
492
+ </string>
493
+ </value>
494
+ </integer_field>
495
+ <string_field>
496
+ <value>
497
+ <string>
498
+ <value>bad password attempts</value>
499
+ </string>
500
+ </value>
501
+ </string_field>
502
+ </elements>
503
+ </dsv>
504
+ </value>
505
+ </line>
506
+ <line label="230-Hello User at USER@MUDYNAMICS.COM,\r\n">
507
+ <terminator>\r\n</terminator>
508
+ <value>
509
+ <dsv>
510
+ <delimiter> </delimiter>
511
+ <elements>
512
+ <string_field>
513
+ <value>
514
+ <string>
515
+ <value>230-Hello</value>
516
+ </string>
517
+ </value>
518
+ </string_field>
519
+ <string_field>
520
+ <value>
521
+ <string>
522
+ <value>User</value>
523
+ </string>
524
+ </value>
525
+ </string_field>
526
+ <string_field>
527
+ <value>
528
+ <string>
529
+ <value>at</value>
530
+ </string>
531
+ </value>
532
+ </string_field>
533
+ <struct>
534
+ <append_alternates/>
535
+ <elements>
536
+ <email>
537
+ <domain>
538
+ <string>
539
+ <value>MUDYNAMICS.COM</value>
540
+ </string>
541
+ </domain>
542
+ <username>
543
+ <string>
544
+ <value>USER</value>
545
+ </string>
546
+ </username>
547
+ </email>
548
+ <string_field>
549
+ <value>
550
+ <string>
551
+ <value>,</value>
552
+ </string>
553
+ </value>
554
+ </string_field>
555
+ </elements>
556
+ </struct>
557
+ </elements>
558
+ </dsv>
559
+ </value>
560
+ </line>
561
+ <line label="230-we have users (max 0) logged in in your class at the moment.\r\n">
562
+ <terminator>\r\n</terminator>
563
+ <value>
564
+ <dsv>
565
+ <delimiter> </delimiter>
566
+ <elements>
567
+ <string_field>
568
+ <value>
569
+ <string>
570
+ <value>230-we</value>
571
+ </string>
572
+ </value>
573
+ </string_field>
574
+ <struct>
575
+ <append_alternates/>
576
+ <elements>
577
+ <string_field>
578
+ <value>
579
+ <string>
580
+ <value>have</value>
581
+ </string>
582
+ </value>
583
+ </string_field>
584
+ <string_field>
585
+ <value>
586
+ <string>
587
+ <value> </value>
588
+ </string>
589
+ </value>
590
+ </string_field>
591
+ <string_field>
592
+ <value>
593
+ <string>
594
+ <value>users</value>
595
+ </string>
596
+ </value>
597
+ </string_field>
598
+ </elements>
599
+ </struct>
600
+ <quote>
601
+ <left_quote>(</left_quote>
602
+ <right_quote>)</right_quote>
603
+ <value>
604
+ <dsv>
605
+ <delimiter> </delimiter>
606
+ <elements>
607
+ <string_field>
608
+ <value>
609
+ <string>
610
+ <value>max</value>
611
+ </string>
612
+ </value>
613
+ </string_field>
614
+ <integer_field>
615
+ <base>10</base>
616
+ <value>
617
+ <string>
618
+ <value>0</value>
619
+ </string>
620
+ </value>
621
+ </integer_field>
622
+ </elements>
623
+ </dsv>
624
+ </value>
625
+ </quote>
626
+ <string_field>
627
+ <value>
628
+ <string>
629
+ <value>logged in in your class at the moment.</value>
630
+ </string>
631
+ </value>
632
+ </string_field>
633
+ </elements>
634
+ </dsv>
635
+ </value>
636
+ </line>
637
+ <line label="230-Local time is: Mon Apr 20 10:32:12 -0700 2009\r\n">
638
+ <terminator>\r\n</terminator>
639
+ <value>
640
+ <dsv>
641
+ <delimiter> </delimiter>
642
+ <elements>
643
+ <string_field>
644
+ <value>
645
+ <string>
646
+ <value>230-Local</value>
647
+ </string>
648
+ </value>
649
+ </string_field>
650
+ <string_field>
651
+ <value>
652
+ <string>
653
+ <value>time</value>
654
+ </string>
655
+ </value>
656
+ </string_field>
657
+ <struct>
658
+ <append_alternates/>
659
+ <elements>
660
+ <string_field>
661
+ <value>
662
+ <string>
663
+ <value>is</value>
664
+ </string>
665
+ </value>
666
+ </string_field>
667
+ <string_field>
668
+ <value>
669
+ <string>
670
+ <value>:</value>
671
+ </string>
672
+ </value>
673
+ </string_field>
674
+ </elements>
675
+ </struct>
676
+ <string_field>
677
+ <value>
678
+ <string>
679
+ <value>Mon</value>
680
+ </string>
681
+ </value>
682
+ </string_field>
683
+ <string_field>
684
+ <value>
685
+ <string>
686
+ <value>Apr</value>
687
+ </string>
688
+ </value>
689
+ </string_field>
690
+ <integer_field>
691
+ <base>10</base>
692
+ <value>
693
+ <string>
694
+ <value>20</value>
695
+ </string>
696
+ </value>
697
+ </integer_field>
698
+ <dsv>
699
+ <delimiter>:</delimiter>
700
+ <elements>
701
+ <integer_field>
702
+ <base>10</base>
703
+ <value>
704
+ <string>
705
+ <value>10</value>
706
+ </string>
707
+ </value>
708
+ </integer_field>
709
+ <integer_field>
710
+ <base>10</base>
711
+ <value>
712
+ <string>
713
+ <value>32</value>
714
+ </string>
715
+ </value>
716
+ </integer_field>
717
+ <integer_field>
718
+ <base>10</base>
719
+ <value>
720
+ <string>
721
+ <value>12</value>
722
+ </string>
723
+ </value>
724
+ </integer_field>
725
+ </elements>
726
+ </dsv>
727
+ <struct>
728
+ <append_alternates/>
729
+ <elements>
730
+ <string_field>
731
+ <value>
732
+ <string>
733
+ <value>-</value>
734
+ </string>
735
+ </value>
736
+ </string_field>
737
+ <string_field>
738
+ <value>
739
+ <string>
740
+ <value>0700</value>
741
+ </string>
742
+ </value>
743
+ </string_field>
744
+ </elements>
745
+ </struct>
746
+ <integer_field>
747
+ <base>10</base>
748
+ <value>
749
+ <string>
750
+ <value>2009</value>
751
+ </string>
752
+ </value>
753
+ </integer_field>
754
+ </elements>
755
+ </dsv>
756
+ </value>
757
+ </line>
758
+ <line label="230-All transfers are logged. If you don't like this, disconnect now.\r\n">
759
+ <terminator>\r\n</terminator>
760
+ <value>
761
+ <dsv>
762
+ <delimiter> </delimiter>
763
+ <elements>
764
+ <string_field>
765
+ <value>
766
+ <string>
767
+ <value>230-All</value>
768
+ </string>
769
+ </value>
770
+ </string_field>
771
+ <string_field>
772
+ <value>
773
+ <string>
774
+ <value>transfers</value>
775
+ </string>
776
+ </value>
777
+ </string_field>
778
+ <string_field>
779
+ <value>
780
+ <string>
781
+ <value>are</value>
782
+ </string>
783
+ </value>
784
+ </string_field>
785
+ <struct>
786
+ <append_alternates/>
787
+ <elements>
788
+ <string_field>
789
+ <value>
790
+ <string>
791
+ <value>logged</value>
792
+ </string>
793
+ </value>
794
+ </string_field>
795
+ <string_field>
796
+ <value>
797
+ <string>
798
+ <value>.</value>
799
+ </string>
800
+ </value>
801
+ </string_field>
802
+ </elements>
803
+ </struct>
804
+ <string_field>
805
+ <value>
806
+ <string>
807
+ <value>If</value>
808
+ </string>
809
+ </value>
810
+ </string_field>
811
+ <string_field>
812
+ <value>
813
+ <string>
814
+ <value>you</value>
815
+ </string>
816
+ </value>
817
+ </string_field>
818
+ <struct>
819
+ <append_alternates/>
820
+ <elements>
821
+ <string_field>
822
+ <value>
823
+ <string>
824
+ <value>don</value>
825
+ </string>
826
+ </value>
827
+ </string_field>
828
+ <string_field>
829
+ <value>
830
+ <string>
831
+ <value>'</value>
832
+ </string>
833
+ </value>
834
+ </string_field>
835
+ <string_field>
836
+ <value>
837
+ <string>
838
+ <value>t like this, disconnect now.</value>
839
+ </string>
840
+ </value>
841
+ </string_field>
842
+ </elements>
843
+ </struct>
844
+ </elements>
845
+ </dsv>
846
+ </value>
847
+ </line>
848
+ <line label="230-\r\n">
849
+ <terminator>\r\n</terminator>
850
+ <value>
851
+ <string_field label="230-\r\n">
852
+ <value>
853
+ <string>
854
+ <value>230-</value>
855
+ </string>
856
+ </value>
857
+ </string_field>
858
+ </value>
859
+ </line>
860
+ <line label="230-tar-on-the-fly and gzip-on-the-fly are implemented; to get a whole\r\n">
861
+ <terminator>\r\n</terminator>
862
+ <value>
863
+ <dsv>
864
+ <delimiter>; </delimiter>
865
+ <elements>
866
+ <dsv>
867
+ <delimiter> </delimiter>
868
+ <elements>
869
+ <string_field>
870
+ <value>
871
+ <string>
872
+ <value>230-tar-on-the-fly</value>
873
+ </string>
874
+ </value>
875
+ </string_field>
876
+ <string_field>
877
+ <value>
878
+ <string>
879
+ <value>and</value>
880
+ </string>
881
+ </value>
882
+ </string_field>
883
+ <string_field>
884
+ <value>
885
+ <string>
886
+ <value>gzip-on-the-fly</value>
887
+ </string>
888
+ </value>
889
+ </string_field>
890
+ <string_field>
891
+ <value>
892
+ <string>
893
+ <value>are</value>
894
+ </string>
895
+ </value>
896
+ </string_field>
897
+ <string_field>
898
+ <value>
899
+ <string>
900
+ <value>implemented</value>
901
+ </string>
902
+ </value>
903
+ </string_field>
904
+ </elements>
905
+ </dsv>
906
+ <string_field>
907
+ <value>
908
+ <string>
909
+ <value>to get a whole</value>
910
+ </string>
911
+ </value>
912
+ </string_field>
913
+ </elements>
914
+ </dsv>
915
+ </value>
916
+ </line>
917
+ <line label="230-directory &quot;foo&quot;, &quot;get foo.tar&quot; or &quot;get foo.tar.gz&quot; may be used.\r\n">
918
+ <terminator>\r\n</terminator>
919
+ <value>
920
+ <dsv>
921
+ <delimiter>, </delimiter>
922
+ <elements>
923
+ <dsv>
924
+ <delimiter> </delimiter>
925
+ <elements>
926
+ <string_field>
927
+ <value>
928
+ <string>
929
+ <value>230-directory</value>
930
+ </string>
931
+ </value>
932
+ </string_field>
933
+ <quote>
934
+ <left_quote>"</left_quote>
935
+ <right_quote>"</right_quote>
936
+ <value>
937
+ <string_field>
938
+ <value>
939
+ <string>
940
+ <value>foo</value>
941
+ </string>
942
+ </value>
943
+ </string_field>
944
+ </value>
945
+ </quote>
946
+ </elements>
947
+ </dsv>
948
+ <dsv>
949
+ <delimiter> </delimiter>
950
+ <elements>
951
+ <quote>
952
+ <left_quote>"</left_quote>
953
+ <right_quote>"</right_quote>
954
+ <value>
955
+ <dsv>
956
+ <delimiter> </delimiter>
957
+ <elements>
958
+ <string_field>
959
+ <value>
960
+ <string>
961
+ <value>get</value>
962
+ </string>
963
+ </value>
964
+ </string_field>
965
+ <dsv>
966
+ <delimiter>.</delimiter>
967
+ <elements>
968
+ <string_field>
969
+ <value>
970
+ <string>
971
+ <value>foo</value>
972
+ </string>
973
+ </value>
974
+ </string_field>
975
+ <string_field>
976
+ <value>
977
+ <string>
978
+ <value>tar</value>
979
+ </string>
980
+ </value>
981
+ </string_field>
982
+ </elements>
983
+ </dsv>
984
+ </elements>
985
+ </dsv>
986
+ </value>
987
+ </quote>
988
+ <string_field>
989
+ <value>
990
+ <string>
991
+ <value>or</value>
992
+ </string>
993
+ </value>
994
+ </string_field>
995
+ <quote>
996
+ <left_quote>"</left_quote>
997
+ <right_quote>"</right_quote>
998
+ <value>
999
+ <dsv>
1000
+ <delimiter> </delimiter>
1001
+ <elements>
1002
+ <string_field>
1003
+ <value>
1004
+ <string>
1005
+ <value>get</value>
1006
+ </string>
1007
+ </value>
1008
+ </string_field>
1009
+ <dsv>
1010
+ <delimiter>.</delimiter>
1011
+ <elements>
1012
+ <string_field>
1013
+ <value>
1014
+ <string>
1015
+ <value>foo</value>
1016
+ </string>
1017
+ </value>
1018
+ </string_field>
1019
+ <string_field>
1020
+ <value>
1021
+ <string>
1022
+ <value>tar</value>
1023
+ </string>
1024
+ </value>
1025
+ </string_field>
1026
+ <string_field>
1027
+ <value>
1028
+ <string>
1029
+ <value>gz</value>
1030
+ </string>
1031
+ </value>
1032
+ </string_field>
1033
+ </elements>
1034
+ </dsv>
1035
+ </elements>
1036
+ </dsv>
1037
+ </value>
1038
+ </quote>
1039
+ <string_field>
1040
+ <value>
1041
+ <string>
1042
+ <value>may be used.</value>
1043
+ </string>
1044
+ </value>
1045
+ </string_field>
1046
+ </elements>
1047
+ </dsv>
1048
+ </elements>
1049
+ </dsv>
1050
+ </value>
1051
+ </line>
1052
+ <line label="230-Please use gzip-on-the-fly only if you need it; most files already\r\n">
1053
+ <terminator>\r\n</terminator>
1054
+ <value>
1055
+ <dsv>
1056
+ <delimiter>; </delimiter>
1057
+ <elements>
1058
+ <dsv>
1059
+ <delimiter> </delimiter>
1060
+ <elements>
1061
+ <string_field>
1062
+ <value>
1063
+ <string>
1064
+ <value>230-Please</value>
1065
+ </string>
1066
+ </value>
1067
+ </string_field>
1068
+ <string_field>
1069
+ <value>
1070
+ <string>
1071
+ <value>use</value>
1072
+ </string>
1073
+ </value>
1074
+ </string_field>
1075
+ <string_field>
1076
+ <value>
1077
+ <string>
1078
+ <value>gzip-on-the-fly</value>
1079
+ </string>
1080
+ </value>
1081
+ </string_field>
1082
+ <string_field>
1083
+ <value>
1084
+ <string>
1085
+ <value>only</value>
1086
+ </string>
1087
+ </value>
1088
+ </string_field>
1089
+ <string_field>
1090
+ <value>
1091
+ <string>
1092
+ <value>if</value>
1093
+ </string>
1094
+ </value>
1095
+ </string_field>
1096
+ <string_field>
1097
+ <value>
1098
+ <string>
1099
+ <value>you</value>
1100
+ </string>
1101
+ </value>
1102
+ </string_field>
1103
+ <string_field>
1104
+ <value>
1105
+ <string>
1106
+ <value>need</value>
1107
+ </string>
1108
+ </value>
1109
+ </string_field>
1110
+ <string_field>
1111
+ <value>
1112
+ <string>
1113
+ <value>it</value>
1114
+ </string>
1115
+ </value>
1116
+ </string_field>
1117
+ </elements>
1118
+ </dsv>
1119
+ <string_field>
1120
+ <value>
1121
+ <string>
1122
+ <value>most files already</value>
1123
+ </string>
1124
+ </value>
1125
+ </string_field>
1126
+ </elements>
1127
+ </dsv>
1128
+ </value>
1129
+ </line>
1130
+ <line label="230-are compressed, and I will kill your processes if you waste my\r\n">
1131
+ <terminator>\r\n</terminator>
1132
+ <value>
1133
+ <dsv>
1134
+ <delimiter>, </delimiter>
1135
+ <elements>
1136
+ <dsv>
1137
+ <delimiter> </delimiter>
1138
+ <elements>
1139
+ <string_field>
1140
+ <value>
1141
+ <string>
1142
+ <value>230-are</value>
1143
+ </string>
1144
+ </value>
1145
+ </string_field>
1146
+ <string_field>
1147
+ <value>
1148
+ <string>
1149
+ <value>compressed</value>
1150
+ </string>
1151
+ </value>
1152
+ </string_field>
1153
+ </elements>
1154
+ </dsv>
1155
+ <string_field>
1156
+ <value>
1157
+ <string>
1158
+ <value>and I will kill your processes if you waste my</value>
1159
+ </string>
1160
+ </value>
1161
+ </string_field>
1162
+ </elements>
1163
+ </dsv>
1164
+ </value>
1165
+ </line>
1166
+ <line label="230-ressources.\r\n">
1167
+ <terminator>\r\n</terminator>
1168
+ <value>
1169
+ <struct>
1170
+ <append_alternates/>
1171
+ <elements>
1172
+ <string_field>
1173
+ <value>
1174
+ <string>
1175
+ <value>230-ressources</value>
1176
+ </string>
1177
+ </value>
1178
+ </string_field>
1179
+ <string_field>
1180
+ <value>
1181
+ <string>
1182
+ <value>.</value>
1183
+ </string>
1184
+ </value>
1185
+ </string_field>
1186
+ </elements>
1187
+ </struct>
1188
+ </value>
1189
+ </line>
1190
+ <line label="230-\r\n">
1191
+ <terminator>\r\n</terminator>
1192
+ <value>
1193
+ <string_field label="230-\r\n">
1194
+ <value>
1195
+ <string>
1196
+ <value>230-</value>
1197
+ </string>
1198
+ </value>
1199
+ </string_field>
1200
+ </value>
1201
+ </line>
1202
+ <line label="230-The command &quot;site exec locate pattern&quot; will create a list of all\r\n">
1203
+ <terminator>\r\n</terminator>
1204
+ <value>
1205
+ <dsv>
1206
+ <delimiter> </delimiter>
1207
+ <elements>
1208
+ <string_field>
1209
+ <value>
1210
+ <string>
1211
+ <value>230-The</value>
1212
+ </string>
1213
+ </value>
1214
+ </string_field>
1215
+ <string_field>
1216
+ <value>
1217
+ <string>
1218
+ <value>command</value>
1219
+ </string>
1220
+ </value>
1221
+ </string_field>
1222
+ <quote>
1223
+ <left_quote>"</left_quote>
1224
+ <right_quote>"</right_quote>
1225
+ <value>
1226
+ <dsv>
1227
+ <delimiter> </delimiter>
1228
+ <elements>
1229
+ <string_field>
1230
+ <value>
1231
+ <string>
1232
+ <value>site</value>
1233
+ </string>
1234
+ </value>
1235
+ </string_field>
1236
+ <string_field>
1237
+ <value>
1238
+ <string>
1239
+ <value>exec</value>
1240
+ </string>
1241
+ </value>
1242
+ </string_field>
1243
+ <string_field>
1244
+ <value>
1245
+ <string>
1246
+ <value>locate</value>
1247
+ </string>
1248
+ </value>
1249
+ </string_field>
1250
+ <string_field>
1251
+ <value>
1252
+ <string>
1253
+ <value>pattern</value>
1254
+ </string>
1255
+ </value>
1256
+ </string_field>
1257
+ </elements>
1258
+ </dsv>
1259
+ </value>
1260
+ </quote>
1261
+ <string_field>
1262
+ <value>
1263
+ <string>
1264
+ <value>will create a list of all</value>
1265
+ </string>
1266
+ </value>
1267
+ </string_field>
1268
+ </elements>
1269
+ </dsv>
1270
+ </value>
1271
+ </line>
1272
+ <line label="230-path names containing &quot;pattern&quot;.\r\n">
1273
+ <terminator>\r\n</terminator>
1274
+ <value>
1275
+ <dsv>
1276
+ <delimiter> </delimiter>
1277
+ <elements>
1278
+ <string_field>
1279
+ <value>
1280
+ <string>
1281
+ <value>230-path</value>
1282
+ </string>
1283
+ </value>
1284
+ </string_field>
1285
+ <string_field>
1286
+ <value>
1287
+ <string>
1288
+ <value>names</value>
1289
+ </string>
1290
+ </value>
1291
+ </string_field>
1292
+ <string_field>
1293
+ <value>
1294
+ <string>
1295
+ <value>containing</value>
1296
+ </string>
1297
+ </value>
1298
+ </string_field>
1299
+ <struct>
1300
+ <append_alternates/>
1301
+ <elements>
1302
+ <quote>
1303
+ <left_quote>"</left_quote>
1304
+ <right_quote>"</right_quote>
1305
+ <value>
1306
+ <string_field>
1307
+ <value>
1308
+ <string>
1309
+ <value>pattern</value>
1310
+ </string>
1311
+ </value>
1312
+ </string_field>
1313
+ </value>
1314
+ </quote>
1315
+ <string_field>
1316
+ <value>
1317
+ <string>
1318
+ <value>.</value>
1319
+ </string>
1320
+ </value>
1321
+ </string_field>
1322
+ </elements>
1323
+ </struct>
1324
+ </elements>
1325
+ </dsv>
1326
+ </value>
1327
+ </line>
1328
+ <line label="230-\r\n">
1329
+ <terminator>\r\n</terminator>
1330
+ <value>
1331
+ <string_field label="230-\r\n">
1332
+ <value>
1333
+ <string>
1334
+ <value>230-</value>
1335
+ </string>
1336
+ </value>
1337
+ </string_field>
1338
+ </value>
1339
+ </line>
1340
+ <line label="230 Guest login ok, access restrictions apply.\r\n">
1341
+ <terminator>\r\n</terminator>
1342
+ <value>
1343
+ <dsv>
1344
+ <delimiter> </delimiter>
1345
+ <elements>
1346
+ <integer_field>
1347
+ <base>10</base>
1348
+ <value>
1349
+ <string>
1350
+ <value>230</value>
1351
+ </string>
1352
+ </value>
1353
+ </integer_field>
1354
+ <string_field>
1355
+ <value>
1356
+ <string>
1357
+ <value>Guest login ok, access restrictions apply.</value>
1358
+ </string>
1359
+ </value>
1360
+ </string_field>
1361
+ </elements>
1362
+ </dsv>
1363
+ </value>
1364
+ </line>
1365
+ </payload>
1366
+ </tcp_server_send>
1367
+ <tcp_client_receive>
1368
+ <description>Response: 230-we have counted 0 bad password attempts</description>
1369
+ <name>FTP Response Client Receive 3</name>
1370
+ <transport>FTP</transport>
1371
+ <assertions/>
1372
+ <send_action>FTP Response Server Send 3</send_action>
1373
+ <variables/>
1374
+ </tcp_client_receive>
1375
+ <tcp_client_send>
1376
+ <description>Request: SYST</description>
1377
+ <name>FTP Request Client Send 3</name>
1378
+ <transport>FTP</transport>
1379
+ <mutable>true</mutable>
1380
+ <payload>
1381
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1382
+ <terminator>\r\n</terminator>
1383
+ <value>
1384
+ <string_field label="Request command: SYST" name="request_command">
1385
+ <value>
1386
+ <string>
1387
+ <value>SYST</value>
1388
+ </string>
1389
+ </value>
1390
+ </string_field>
1391
+ </value>
1392
+ </line>
1393
+ </payload>
1394
+ </tcp_client_send>
1395
+ <tcp_server_receive>
1396
+ <description>Request: SYST</description>
1397
+ <name>FTP Request Server Receive 3</name>
1398
+ <transport>FTP</transport>
1399
+ <assertions/>
1400
+ <send_action>FTP Request Client Send 3</send_action>
1401
+ <variables/>
1402
+ </tcp_server_receive>
1403
+ <tcp_server_send>
1404
+ <description>Response: 215 UNIX Type: L8</description>
1405
+ <name>FTP Response Server Send 4</name>
1406
+ <transport>FTP</transport>
1407
+ <mutable>true</mutable>
1408
+ <payload>
1409
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1410
+ <terminator>\r\n</terminator>
1411
+ <value>
1412
+ <dsv>
1413
+ <delimiter> </delimiter>
1414
+ <elements>
1415
+ <integer_field label="Response code: NAME system type (215)" name="response_code">
1416
+ <base>10</base>
1417
+ <value>
1418
+ <string>
1419
+ <value>215</value>
1420
+ </string>
1421
+ </value>
1422
+ </integer_field>
1423
+ <string_field>
1424
+ <value>
1425
+ <string>
1426
+ <value>UNIX</value>
1427
+ </string>
1428
+ </value>
1429
+ </string_field>
1430
+ <struct>
1431
+ <append_alternates/>
1432
+ <elements>
1433
+ <string_field>
1434
+ <value>
1435
+ <string>
1436
+ <value>Type</value>
1437
+ </string>
1438
+ </value>
1439
+ </string_field>
1440
+ <string_field>
1441
+ <value>
1442
+ <string>
1443
+ <value>:</value>
1444
+ </string>
1445
+ </value>
1446
+ </string_field>
1447
+ </elements>
1448
+ </struct>
1449
+ <string_field>
1450
+ <value>
1451
+ <string>
1452
+ <value>L8</value>
1453
+ </string>
1454
+ </value>
1455
+ </string_field>
1456
+ </elements>
1457
+ </dsv>
1458
+ </value>
1459
+ </line>
1460
+ </payload>
1461
+ </tcp_server_send>
1462
+ <tcp_client_receive>
1463
+ <description>Response: 215 UNIX Type: L8</description>
1464
+ <name>FTP Response Client Receive 4</name>
1465
+ <transport>FTP</transport>
1466
+ <assertions/>
1467
+ <send_action>FTP Response Server Send 4</send_action>
1468
+ <variables/>
1469
+ </tcp_client_receive>
1470
+ <tcp_client_send>
1471
+ <description>Request: MKD yoda</description>
1472
+ <name>FTP Request Client Send 4</name>
1473
+ <transport>FTP</transport>
1474
+ <mutable>true</mutable>
1475
+ <payload>
1476
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1477
+ <terminator>\r\n</terminator>
1478
+ <value>
1479
+ <dsv>
1480
+ <delimiter> </delimiter>
1481
+ <elements>
1482
+ <string_field label="Request command: MKD" name="request_command">
1483
+ <value>
1484
+ <string>
1485
+ <value>MKD</value>
1486
+ </string>
1487
+ </value>
1488
+ </string_field>
1489
+ <string_field label="Request arg: yoda" name="request_arg">
1490
+ <value>
1491
+ <string>
1492
+ <value>yoda</value>
1493
+ </string>
1494
+ </value>
1495
+ </string_field>
1496
+ </elements>
1497
+ </dsv>
1498
+ </value>
1499
+ </line>
1500
+ </payload>
1501
+ </tcp_client_send>
1502
+ <tcp_server_receive>
1503
+ <description>Request: MKD yoda</description>
1504
+ <name>FTP Request Server Receive 4</name>
1505
+ <transport>FTP</transport>
1506
+ <assertions/>
1507
+ <send_action>FTP Request Client Send 4</send_action>
1508
+ <variables/>
1509
+ </tcp_server_receive>
1510
+ <tcp_server_send>
1511
+ <description>Response: 257 YODA new directory created.</description>
1512
+ <name>FTP Response Server Send 5</name>
1513
+ <transport>FTP</transport>
1514
+ <mutable>true</mutable>
1515
+ <payload>
1516
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1517
+ <terminator>\r\n</terminator>
1518
+ <value>
1519
+ <dsv>
1520
+ <delimiter> </delimiter>
1521
+ <elements>
1522
+ <integer_field label="Response code: PATHNAME created (257)" name="response_code">
1523
+ <base>10</base>
1524
+ <value>
1525
+ <string>
1526
+ <value>257</value>
1527
+ </string>
1528
+ </value>
1529
+ </integer_field>
1530
+ <string_field>
1531
+ <value>
1532
+ <string>
1533
+ <value>YODA</value>
1534
+ </string>
1535
+ </value>
1536
+ </string_field>
1537
+ <string_field>
1538
+ <value>
1539
+ <string>
1540
+ <value>new directory created.</value>
1541
+ </string>
1542
+ </value>
1543
+ </string_field>
1544
+ </elements>
1545
+ </dsv>
1546
+ </value>
1547
+ </line>
1548
+ </payload>
1549
+ </tcp_server_send>
1550
+ <tcp_client_receive>
1551
+ <description>Response: 257 YODA new directory created.</description>
1552
+ <name>FTP Response Client Receive 5</name>
1553
+ <transport>FTP</transport>
1554
+ <assertions/>
1555
+ <send_action>FTP Response Server Send 5</send_action>
1556
+ <variables/>
1557
+ </tcp_client_receive>
1558
+ <tcp_client_send>
1559
+ <description>Request: QUIT</description>
1560
+ <name>FTP Request Client Send 5</name>
1561
+ <transport>FTP</transport>
1562
+ <mutable>true</mutable>
1563
+ <payload>
1564
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1565
+ <terminator>\r\n</terminator>
1566
+ <value>
1567
+ <string_field label="Request command: QUIT" name="request_command">
1568
+ <value>
1569
+ <string>
1570
+ <value>QUIT</value>
1571
+ </string>
1572
+ </value>
1573
+ </string_field>
1574
+ </value>
1575
+ </line>
1576
+ </payload>
1577
+ </tcp_client_send>
1578
+ <tcp_server_receive>
1579
+ <description>Request: QUIT</description>
1580
+ <name>FTP Request Server Receive 5</name>
1581
+ <transport>FTP</transport>
1582
+ <assertions/>
1583
+ <send_action>FTP Request Client Send 5</send_action>
1584
+ <variables/>
1585
+ </tcp_server_receive>
1586
+ <tcp_server_send>
1587
+ <description>Response: 221 Goodbye.</description>
1588
+ <name>FTP Response Server Send 6</name>
1589
+ <transport>FTP</transport>
1590
+ <mutable>true</mutable>
1591
+ <payload>
1592
+ <line label="File Transfer Protocol (FTP)" name="ftp">
1593
+ <terminator>\r\n</terminator>
1594
+ <value>
1595
+ <dsv>
1596
+ <delimiter> </delimiter>
1597
+ <elements>
1598
+ <integer_field label="Response code: Service closing control connection (221)" name="response_code">
1599
+ <base>10</base>
1600
+ <value>
1601
+ <string>
1602
+ <value>221</value>
1603
+ </string>
1604
+ </value>
1605
+ </integer_field>
1606
+ <struct>
1607
+ <append_alternates/>
1608
+ <elements>
1609
+ <string_field label="Response arg: Goodbye." name="response_arg">
1610
+ <value>
1611
+ <string>
1612
+ <value>Goodbye</value>
1613
+ </string>
1614
+ </value>
1615
+ </string_field>
1616
+ <string_field>
1617
+ <value>
1618
+ <string>
1619
+ <value>.</value>
1620
+ </string>
1621
+ </value>
1622
+ </string_field>
1623
+ </elements>
1624
+ </struct>
1625
+ </elements>
1626
+ </dsv>
1627
+ </value>
1628
+ </line>
1629
+ </payload>
1630
+ </tcp_server_send>
1631
+ <tcp_client_receive>
1632
+ <description>Response: 221 Goodbye.</description>
1633
+ <name>FTP Response Client Receive 6</name>
1634
+ <transport>FTP</transport>
1635
+ <assertions/>
1636
+ <send_action>FTP Response Server Send 6</send_action>
1637
+ <variables/>
1638
+ </tcp_client_receive>
1639
+ </steps>
1640
+ <variables/>
1641
+ </scenario>
1642
+ </templates>
1643
+ </mu_config>