142 |
|
|
143 |
|
print $sock "LASTMODIFIED\n"; |
144 |
|
$response = <$sock>; |
145 |
< |
if (!$response) { |
146 |
< |
print "The i-scream server did not return anything for the LASTMODIFIED command.\n"; |
145 |
> |
if (!$response || $response eq "ERROR\n") { |
146 |
> |
print "The i-scream server did not provide the LASTMODIFIED value.\n"; |
147 |
|
close($sock); |
148 |
|
wait_then_retry(); |
149 |
|
next; |
150 |
|
} |
151 |
< |
chop $response; |
151 |
> |
chomp $response; |
152 |
|
$last_modified = $response; |
153 |
|
|
154 |
|
print "Config last modified: ". (scalar localtime $last_modified/1000) . "\n"; |
155 |
|
|
156 |
|
print $sock "FILELIST\n"; |
157 |
|
$response = <$sock>; |
158 |
< |
if (!$response) { |
158 |
> |
if (!$response || $response eq "ERROR\n") { |
159 |
|
print "The i-scream server did not provide a configuration file list.\n"; |
160 |
|
close($sock); |
161 |
|
wait_then_retry(); |
162 |
|
next; |
163 |
|
} |
164 |
< |
chop $response; |
164 |
> |
chomp $response; |
165 |
|
$file_list = $response; |
166 |
|
|
167 |
|
print "File list obtained: $file_list\n"; |
168 |
|
|
169 |
|
print $sock "FQDN\n"; |
170 |
|
$response = <$sock>; |
171 |
< |
if (!$response) { |
171 |
> |
if (!$response || $response eq "ERROR\n") { |
172 |
|
print "The i-scream server did not tell us our FQDN.\n"; |
173 |
|
close($sock); |
174 |
|
wait_then_retry(); |
175 |
|
next; |
176 |
|
} |
177 |
< |
chop $response; |
177 |
> |
chomp $response; |
178 |
|
$fqdn = $response; |
179 |
|
|
180 |
|
print "FQDN returned: $fqdn\n"; |
181 |
|
|
182 |
|
print $sock "UDPUpdateTime\n"; |
183 |
|
$response = <$sock>; |
184 |
< |
if (!$response) { |
184 |
> |
if (!$response || $response eq "ERROR\n") { |
185 |
|
print "The i-scream server did not give us a UDPUpdateTime.\n"; |
186 |
|
close($sock); |
187 |
|
wait_then_retry(); |
188 |
|
next; |
189 |
|
} |
190 |
< |
chop $response; |
190 |
> |
chomp $response; |
191 |
|
$udp_update_time = $response; |
192 |
|
|
193 |
|
print $sock "TCPUpdateTime\n"; |
194 |
|
$response = <$sock>; |
195 |
< |
if (!$response) { |
195 |
> |
if (!$response || $response eq "ERROR\n") { |
196 |
|
print "The i-scream server did not give us a TCPUpdateTime.\n"; |
197 |
|
close($sock); |
198 |
|
wait_then_retry(); |
199 |
|
next; |
200 |
|
} |
201 |
< |
chop $response; |
201 |
> |
chomp $response; |
202 |
|
$tcp_update_time = $response; |
203 |
|
|
204 |
|
print "UDP packet period: $udp_update_time seconds.\nTCP heartbeat period: $tcp_update_time seconds.\n"; |
222 |
|
wait_then_retry(); |
223 |
|
next; |
224 |
|
} |
225 |
< |
chop $response; |
226 |
< |
$response =~ /^(.*);(.*);(.*)/; |
225 |
> |
chomp $response; |
226 |
|
if ($response eq "ERROR") { |
227 |
|
print "There are no active configured filters for your host.\n"; |
228 |
|
close($sock); |
229 |
|
wait_then_retry(); |
230 |
|
next; |
231 |
|
} |
232 |
+ |
$response =~ /^(.*);(.*);(.*)/; |
233 |
|
($filter_addr, $udp_port, $tcp_port) = ($1, $2, $3); |
234 |
|
unless (defined($filter_addr) && defined($udp_port) && defined($tcp_port)) { |
235 |
|
print "Failed: Filter address response from server did not make sense: $response\n"; |