-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.xsl
10051 lines (9167 loc) · 352 KB
/
help.xsl
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:gsa="http://openvas.org"
extension-element-prefixes="gsa">
<xsl:output
method="html"
doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"
encoding="UTF-8"/>
<!--
Greenbone Security Assistant
$Id$
Description: Help documents for GSA.
Authors:
Matthew Mundell <[email protected]>
Jan-Oliver Wagner <[email protected]>
Michael Wiegand <[email protected]>
Timo Pollmeier <[email protected]>
Copyright:
Copyright (C) 2009, 2010, 2012-2015 Greenbone Networks GmbH
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<xsl:include href="gsad.xsl"/>
<xsl:template name="availability">
<xsl:param name="command" select="GET_TASKS"/>
<xsl:choose>
<xsl:when test="/envelope/capabilities/help_response/schema/command[name=$command]">
</xsl:when>
<xsl:otherwise>
<p>
<b>Note:</b> This feature is not available with the current OMP Server connection.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="trashcan-availability">
<xsl:choose>
<xsl:when test="gsa:may-get-trash ()">
</xsl:when>
<xsl:otherwise>
<p>
<b>Note:</b> This feature is not available with the current OMP Server connection.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="details-window-line-actions">
<xsl:param name="type"/>
<xsl:param name="name"/>
<xsl:param name="ultimate"/>
<h4>New <xsl:value-of select="$name"/></h4>
<p>
To create a new <xsl:value-of select="$name"/> click the new icon
<img src="/img/new.png" alt="New {$name}" title="New {$name}"/>
which goes to the <a href="new_{$type}.html?token={/envelope/token}">
New <xsl:value-of select="$name"/></a> page.
</p>
<h4>Clone <xsl:value-of select="$name"/></h4>
<p>
To clone a <xsl:value-of select="$name"/> click the clone icon
<img src="/img/clone.png" alt="Clone" title="Clone"/>
which goes to the details page of the clone.
</p>
<h4><xsl:value-of select="$name"/>s</h4>
<p>
Pressing the list icon
<img src="/img/list.png" alt="{$name}s" title="{$name}s"/>
will switch to the
<a href="{$type}s.html?token={/envelope/token}">
<xsl:value-of select="$name"/>s
</a> page.
</p>
<h4>Delete <xsl:value-of select="$name"/></h4>
<p>
Pressing the "Delete <xsl:value-of select="$name"/>" icon
<xsl:choose>
<xsl:when test="$ultimate">
<img src="/img/delete.png" alt="Delete {$name}" title="Delete {$name}"/>
will delete the resource.
</xsl:when>
<xsl:otherwise>
<img src="/img/trashcan.png" alt="Delete {$name}" title="Delete {$name}"/>
will move the resource to the trashcan.
</xsl:otherwise>
</xsl:choose>
</p>
<h4>Edit <xsl:value-of select="$name"/></h4>
<p>
Pressing the "Edit <xsl:value-of select="$name"/>" icon
<img src="/img/edit.png" alt="Edit {$name}" title="Edit {$name}"/>
will switch to an overview of the configuration for this
<xsl:value-of select="$type"/> and allows editing the its properties.
</p>
<h4>Exporting</h4>
<p>
Export the <xsl:value-of select="$name"/> as XML by clicking on the
export icon <img src="/img/download.png" alt="Export" title="Export XML"/>.
</p>
</xsl:template>
<xsl:template name="object-used-by">
<xsl:param name="name"/>
<xsl:param name="used_by"/>
<h3><xsl:value-of select="$used_by"/>s using this <xsl:value-of select="$name"/></h3>
<p>
This table provides an overview of the <xsl:value-of select="$used_by"/>s
that are associated with this <xsl:value-of select="$name"/>.
Details of these <xsl:value-of select="$used_by"/>s can be seen after a
click on the Details
<img src="/img/details.png" alt="Details" title="Details"/> icon.
</p>
</xsl:template>
<xsl:template name="list-window-line-actions">
<xsl:param name="type"/>
<xsl:param name="used_by"/>
<xsl:param name="noclone"/>
<xsl:param name="noedit"/>
<xsl:param name="noexport"/>
<xsl:param name="notrashcan"/>
<xsl:param name="showenable"/>
<a name="actions"></a>
<h3>Actions</h3>
<xsl:choose>
<xsl:when test="$showenable">
<h4>Enable / Disable <xsl:value-of select="$type"/></h4>
<p>
Pressing the enable icon
<img src="/img/enable.png" alt="Enable {$type}" title="Enable {$type}"/>
will set the activity status of the <xsl:value-of select="$type"/> to active
while pressing the disable button
<img src="/img/disable.png" alt="Disable {$type}" title="Disable {$type}"/>
will set it to inactive.
</p>
</xsl:when>
</xsl:choose>
<xsl:choose>
<xsl:when test="$notrashcan">
</xsl:when>
<xsl:otherwise>
<h4>Move <xsl:value-of select="$type"/> to Trashcan</h4>
<p>
Pressing the trashcan icon
<img src="/img/trashcan.png" alt="Move to Trashcan" title="To Trashcan"/>
will move the item to the trashcan and update the list.
</p>
<xsl:choose>
<xsl:when test="$used_by">
<p>
Note that if a <xsl:value-of select="$type"/> is associated with at least one
<xsl:value-of select="$used_by"/>, it is not possible to move it. In this case
the button is greyed out
<img src="/img/trashcan_inactive.png" alt="Move to Trashcan" title="To Trashcan"/>.
</p>
</xsl:when>
</xsl:choose>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$noedit">
</xsl:when>
<xsl:otherwise>
<a name="edit_{gsa:type-string ($type)}"></a>
<h4>Edit <xsl:value-of select="$type"/></h4>
<p>
Pressing the "Edit <xsl:value-of select="$type"/>" icon
<img src="/img/edit.png" alt="Edit {$type}" title="Edit {$type}"/>
will switch to an overview of the configuration for this <xsl:value-of select="$type"/> and
allows editing the <xsl:value-of select="$type"/>'s properties.
</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$noclone">
</xsl:when>
<xsl:otherwise>
<h4>Clone <xsl:value-of select="$type"/></h4>
<p>
Pressing the clone icon
<img src="/img/clone.png" alt="Clone" title="Clone"/>
will create a duplicate of the <xsl:value-of select="$type"/>.
</p>
</xsl:otherwise>
</xsl:choose>
<xsl:choose>
<xsl:when test="$noexport">
</xsl:when>
<xsl:otherwise>
<h4>Export <xsl:value-of select="$type"/></h4>
<p>
Export the <xsl:value-of select="$type"/> as XML by clicking on the
export icon <img src="/img/download.png" alt="Export" title="Export XML"/>.
</p>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<xsl:template name="name-column">
<xsl:param name="type" select="'task'"/>
<xsl:param name="type-name" select="gsa:type-name ($type)"/>
<xsl:param name="comment" select="'comment'"/>
<tr class="odd">
<td>Name</td>
<td>
Shows the name of the <xsl:value-of select="$type-name"/>.
<br/>
<xsl:if test="boolean ($comment)">
If there is a <xsl:value-of select="$comment"/> on the
<xsl:value-of select="$type-name"/>
it is shown in brackets below the name.
</xsl:if>
<div>
The right hand side of this column may contain an icon:
<table style="margin-left: 10px">
<tr>
<td valign="top">
<img src="/img/view_other.png"
border="0"
alt="Global {$type-name}"
title="Global {$type-name}"/>
</td>
<td>
The <xsl:value-of select="$type-name"/> is either owned by
another user, or it is global. A global
<xsl:value-of select="$type-name"/> is accessible by anyone.
</td>
</tr>
</table>
</div>
</td>
</tr>
</xsl:template>
<xsl:template name="filtering">
<a name="filtering"></a>
<h3>Filtering</h3>
<p>
The Filtering section of the window shows how the displayed list has been
selected.
</p>
<p>
Modifying any of the values in the "Filter" field and clicking
the refresh icon <img src="/img/refresh.png" alt="Refresh" title="Refresh"/>
will update the displayed list. The filter syntax is described on the
<a href="/help/powerfilter.html?token={/envelope/token}">powerfilter</a>
page.
</p>
<p>
Entering a name in the second field and clicking
the new icon <img src="/img/new.png" alt="New" title="New"/>
will create a new filter from the filtering currently being applied to the
list.
</p>
<p>
The current filtering can also be changed by
selecting a filter from the dropdown on the right and clicking the refresh
icon <img src="/img/refresh.png" alt="Refresh" title="Refresh"/>.
</p>
<p>
Clicking the list icon <img src="/img/list.png" border="0" alt="Filters"/>
goes to the full list of filters on the
<a href="filters.html?token={/envelope/token}">Filters</a> page.
</p>
</xsl:template>
<xsl:template name="sorting">
<a name="sorting"></a>
<h3>Sorting</h3>
<p>
The sorting of the table can be changed by clicking on a column heading.
The current sort column appears as a keyword in the powerfilter, like
"sort=name" or "sort-reverse=name".
</p>
</xsl:template>
<xsl:template name="hosts_note">
<p>
Note on <b>Hosts</b>:
<ul>
<li>
The hosts parameter is a comma-separated list of values. Each value
can be
<ul>
<li>an IPv4 address (e.g. <tt>192.168.13.1</tt>)</li>
<li>a hostname (e.g. <tt>myhost1.domain</tt>)</li>
<li>an IPv4 address range in long format
(e.g. <tt>192.168.1.116-192.168.1.124</tt>)</li>
<li>an IPv4 address range in short format
(e.g. <tt>192.168.1.116-124</tt>)</li>
<li>an IPv4 address range in CIDR notation
(e.g. <tt>192.168.13.0/24</tt>)</li>
<li>an IPv6 address
(e.g. <tt>fe80::222:64ff:fe76:4cea</tt>).</li>
<li>an IPv6 address range in long format
(e.g. <tt>::12:fe5:fb50-::12:fe6:100</tt>)</li>
<li>an IPv6 address range in short format
(e.g. <tt>::12:fe5:fb50-fb80</tt>)</li>
<li>an IPv6 address range in CIDR notation
(e.g. <tt>fe80::222:64ff:fe76:4cea/120</tt>)</li>
</ul>
These options can be mixed (e.g.
<tt>192.168.13.1, myhost2.domain, fe80::222:64ff:fe76:4cea,
192.168.13.0/24</tt>).
</li>
<li>
The netmask in CIDR notation is limited to 20 for IPv4
and 116 for IPv6 (4095 hosts).
</li>
</ul>
</p>
</xsl:template>
<xsl:template match="help">
<div class="gb_window">
<div class="gb_window_part_left"></div>
<div class="gb_window_part_right"></div>
<xsl:apply-templates mode="help"/>
</div>
</xsl:template>
<xsl:template mode="help" match="*">
<div class="gb_window_part_center">Help: Page Not Found</div>
<div class="gb_window_part_content">
<div style="text-align:left">
<h1>Page Not Found</h1>
<p>
The help page you requested could not be found. If you have followed a
link and got this page, the location of the help page may have changed.
In this case, please use the <a href="contents.html?token={/envelope/token}">table of
contents</a> to navigate to the page you were looking for.
</p>
<p>
We apologize for any inconvenience.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="about.html">
<div class="gb_window_part_center">About GSA</div>
<div class="gb_window_part_content">
<div style="text-align:left">
<table><tr><td valign="top">
<h1>Greenbone Security Assistant</h1>
<h3>Version 6.0.10</h3>
<p>
The Greenbone Security Assistant (GSA) is the web-based graphical
user interface of the Open Vulnerability Assessment System (OpenVAS).
GSA connects to OpenVAS Manager via the OpenVAS Management Protocol (OMP).
By implementing the full feature set of OMP, GSA offers a straight-forward,
yet powerful method to manage network vulnerability scans.
</p>
<p>
Copyright 2009-2016 by <a href="http://www.greenbone.net" target="_blank">Greenbone Networks GmbH</a>
</p>
<p>
License: GNU General Public License version 2 or any later version
(<a href="gplv2.html?token={/envelope/token}">full license text</a>)
</p>
<p>
Contact: For updates, feature proposals and bug reports
contact the <a href="http://www.greenbone.net/company/contact.html" target="_blank">
Greenbone team</a> or visit the <a href="http://www.openvas.org" target="_blank">OpenVAS homepage</a>.
</p>
</td><td valign="top">
<img border="5" src="/img/gsa_splash.png"/>
</td>
</tr></table>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="javascript.html">
<div class="gb_window_part_center">Help: JavaScript</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<h1>JavaScript</h1>
<p>
The JavaScript indicator icon
<img src="/img/indicator_js.png" alt="JavaScript is enabled" title="JavaScript is enabled"/>
is displayed in the page heading when JavaScript is activated in the browser.
</p>
<p>
GSA itself uses JavaScript only for some minor convenience features while all other functions work without any kind of active content.
So, it is safe to disable JavaScript when using GSA if you do not wish to use these features. You will not lose any essential functionality.
</p>
<p>
If JavaScript is enabled it is highly recommended to not visit untrusted web pages
as these could contain JavaScript code trying to run exploits or attacks against
other web services you have currently opened in your browser.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="hosts.html">
<div class="gb_window_part_center">Help: Hosts</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div class="float_right"><a href="/omp?cmd=get_report&type=assets&overrides=1&levels=hm&token={/envelope/token}">Jump to dialog</a></div>
<div style="text-align:left">
<br/>
<h1>Hosts</h1>
<p>
This page provides an overview of all the hosts found in all tasks.
</p>
<a name="filtering"></a>
<h2>Host Filtering</h2>
<p>
The Host Filtering window shows how the hosts of the scan have been
filtered to produce the overview. Modifying any of the values and clicking
the "Apply" button will update the overview.
</p>
<a name="overrides"></a>
<h3>Overrides</h3>
<p>
By default the configured <a href="glossary.html?token={/envelope/token}#override">overrides</a> are applied.
The selection allows to switch to a view without applying overrides.
In the Filtered Hosts table the hosts and the severity counts might change
when switching this selection.
By pressing the refresh
<img src="/img/refresh.png" alt="Refresh" title="Refresh"/> icon a change is confirmed.
</p>
<p>
The selection that is active for the present page is marked with a hook (√).
</p>
<a name="filtered"></a>
<h2>Filtered Hosts</h2>
<p>
The Filtered Hosts window shows all the hosts, filtered
according to the Hosts Filtering window.
</p>
<table class="gbntable">
<tr class="gbntablehead2">
<td>Column</td>
<td>Description</td>
</tr>
<tr class="odd">
<td>IP</td>
<td>
IP address of the host.
</td>
</tr>
<tr>
<td valign="top">
<xsl:call-template name="severity-label">
<xsl:with-param name="level" select="'High'"/>
</xsl:call-template>
</td>
<td>
Number of high results on most recent report.
</td>
</tr>
<tr class="odd">
<td valign="top">
<xsl:call-template name="severity-label">
<xsl:with-param name="level" select="'Medium'"/>
</xsl:call-template>
</td>
<td>
Number of medium results on most recent report.
</td>
</tr>
<tr>
<td valign="top">
<xsl:call-template name="severity-label">
<xsl:with-param name="level" select="'Low'"/>
</xsl:call-template>
</td>
<td>
Number of low results on most recent report.
</td>
</tr>
<tr class="odd">
<td>Last Report</td>
<td>
Link to most recent report.
</td>
</tr>
<tr>
<td>OS</td>
<td>
Icon for detected operating system in most recent report.
</td>
</tr>
<tr class="odd">
<td>Ports</td>
<td>
Number of open ports found in most recent report.
</td>
</tr>
<tr>
<td>Apps</td>
<td>
Number of applications detected in most recent report, according
to CPEs.
</td>
</tr>
<tr class="odd">
<td>Reports</td>
<td>
Number of complete reports that include this host.
</td>
</tr>
<tr>
<td>Distance</td>
<td>
Distance to host from server running the Scanner, according to
most recent report.
</td>
</tr>
<tr>
<td valign="top">Prognosis</td>
<td>
The maximum severity for the host, predicted from what is currently
known about the host. Severity is determined by comparing the
detected applications for this host to a list of vulnerable ones.
Note that the host might be only vulnerable for specific
configurations or combinations of applications.
</td>
</tr>
</table>
<a name="actions"></a>
<h3>Actions</h3>
<h4>Prognostic Report</h4>
<p>
Pressing the
<a href="glossary.html?token={/envelope/token}#prognostic_report">prognostic report</a>
icon
<img src="/img/prognosis.png" alt="Prognostic Report" title="Prognostic Report"/>
will switch to a prognostic report on this host.
</p>
<!--
<a name="overrides"></a>
<h3>Overrides</h3>
<p>
By default the configured <a href="glossary.html?token={/envelope/token}#override">overrides</a> are applied.
The selection allows to switch to a view without applying overrides.
In the table view, severity classes, severity numbers and trend might change
when switching this selection.
By pressing the refresh
<img src="/img/refresh.png" alt="Refresh" title="Refresh"/> icon a change is confirmed.
</p>
<p>
The selection that is active for the present page is marked with a hook (√).
</p>
<p>
Note that leaving this page will reset the overrides selection to apply overrides.
</p>
<a name="actions"></a>
<h3>Actions</h3>
<h4>Details</h4>
<p>
Pressing the details icon <img src="/img/details.png" alt="Details" title="Details"/> will
switch to an overview on all reports for this task.
It is the same action as clicking on the number of reports in the column "Reports: Total".
</p>
-->
<a name="host_details"></a>
<h2>Host Details</h2>
<p>
Provides detailed information about the host.
This includes all the information from the Filtered Hosts table, plus the list of
open ports and the list of applications.
</p>
<a name="scap_missing"></a>
<h2>Warning: SCAP Database Missing</h2>
<p>
This warning dialog occurs when the SCAP database is missing on the OMP server.
</p>
<p>
The prognostic reporting requires the SCAP data. As a result all prognostic
report icons
<img src="/img/prognosis.png" alt="Prognostic Report" title="Prognostic Report"/>
will be greyed out
<img src="/img/prognosis_inactive.png" alt="Prognostic Report" title="Prognostic Report"/>
when the database is missing.
</p>
<p>
The SCAP data is updated during a SCAP data feed sync.
Most likely the data will appear after the next such feed sync.
This is usually taken care of automatically by a periodic
background process.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="agent_details.html">
<div class="gb_window_part_center">Help: Agent Details
</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<xsl:call-template name="availability">
<xsl:with-param name="command" select="'GET_AGENTS'"/>
</xsl:call-template>
<h1>Agents Details</h1>
<p>
Provides detailed information about an
<a href="glossary.html?token={/envelope/token}#agent">Agent</a>.
This includes the Name, creation time, modification time,
comment and installer package trust state and time.
</p>
<xsl:call-template name="details-window-line-actions">
<xsl:with-param name="type" select="'agent'"/>
<xsl:with-param name="name" select="'Agent'"/>
</xsl:call-template>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="agents.html">
<div class="gb_window_part_center">Help: Agents
<a href="/omp?cmd=get_agents&token={/envelope/token}"
title="Agents" style="margin-left:3px;">
<img src="/img/list.png" border="0" alt="Agents"/>
</a>
</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<xsl:call-template name="availability">
<xsl:with-param name="command" select="'GET_AGENTS'"/>
</xsl:call-template>
<h1>Agents</h1>
<p>
This table provides an overview of all configured
<a href="glossary.html?token={/envelope/token}#agent">Agents</a>,
and summarizes the essential aspects of each.
</p>
<table class="gbntable">
<tr class="gbntablehead2">
<td>Column</td>
<td>Description</td>
</tr>
<xsl:call-template name="name-column">
<xsl:with-param name="type" select="'agent'"/>
</xsl:call-template>
<tr class="even">
<td>Trust</td>
<td>
<b>yes</b>: the signature file that was uploaded or that was present
in the Feed proofs that the agent was not compromised at upload
time.
<br/>
<b>no</b>: Signature and agent do not match or signature key is not
trusted.
<br/>
<b>unknown</b>: Any case where trust could not be tested adequately.
</td>
</tr>
</table>
<h3>New Agent</h3>
<p>
To create a new agent click the
new icon <img src="/img/new.png" alt="New Agent" title="New Agent"/> which
goes to the <a href="new_agent.html?token={/envelope/token}">New Agent</a>
page.
</p>
<h3>Exporting</h3>
<p>
Export the current list of agents as XML by clicking on the
export icon <img src="/img/download.png" alt="Export" title="Export XML"/>.
</p>
<xsl:call-template name="filtering"/>
<xsl:call-template name="sorting"/>
<xsl:call-template name="list-window-line-actions">
<xsl:with-param name="type" select="'Agent'"/>
</xsl:call-template>
<h4>Download Installer Package</h4>
<p>
Pressing the "Download Installer Package" icon
<img src="/img/agent.png" alt="Download Installer Package"
title="Download Installer Package"/>
will download an installation of the agent package.
</p>
<h4>Verify Agent</h4>
<p>
Pressing the "Verify Agent" icon
<img src="/img/verify.png" alt="Verify Agent" title="Verify Agent"/>
will verify the trust on the agent installer package.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="new_agent.html">
<div class="gb_window_part_center">Help: New Agent
<a href="/omp?cmd=new_agent&max=-2&token={/envelope/token}">
<img src="/img/new.png" border="0" style="margin-left:3px;"/>
</a>
</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<xsl:call-template name="availability">
<xsl:with-param name="command" select="'CREATE_AGENT'"/>
</xsl:call-template>
<h1>New Agent</h1>
<p>
For creating a new
<a href="glossary.html?token={/envelope/token}#agent">Agent</a>
the dialog offers these entries.
Hit the button "Create Agent" to submit the new agent.
The Agents page will be shown.
</p>
<table class="gbntable">
<tr class="gbntablehead2">
<td></td>
<td>Mandatory</td>
<td>Max Length</td>
<td>Syntax</td>
<td>Example</td>
</tr>
<tr class="odd">
<td>Name</td>
<td>yes</td>
<td>80</td>
<td>Alphanumeric</td>
<td>WinSLAD Base 1.0</td>
</tr>
<tr class="even">
<td>Comment</td>
<td>no</td>
<td>400</td>
<td>Alphanumeric</td>
<td>Base agent for Windows SLAD family.</td>
</tr>
<tr class="odd">
<td>Installer</td>
<td>yes</td>
<td>--</td>
<td>File</td>
<td>/tmp/WinSLAD-Base-1.0.exe</td>
</tr>
<tr class="even">
<td>Installer signature</td>
<td>no</td>
<td>--</td>
<td>File (armored GnuPG detached signature)</td>
<td>/tmp/WinSLAD-Base-1.0.exe</td>
</tr>
</table>
<p>
When a signature file is provided, the agent file will be verified using
this signature at upload time to determine the trust.
</p>
<p>
When no signature file is provided, a suitable signature is searched for
in the NVT Feed. If found, the trust is determined based on this
signature file.
</p>
<h4>Agents</h4>
<p>
Pressing the list icon
<img src="/img/list.png" alt="Agents" title="Agents"/>
will switch to the <a href="agents.html?token={/envelope/token}">Agents</a>
page.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="lsc_credentials.html">
<div class="gb_window_part_center">Help: Credentials
<a href="/omp?cmd=get_lsc_credentials&token={/envelope/token}"
title="Credentials" style="margin-left:3px;">
<img src="/img/list.png" border="0" alt="Credentials"/>
</a>
</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<xsl:call-template name="availability">
<xsl:with-param name="command" select="'GET_LSC_CREDENTIALS'"/>
</xsl:call-template>
<h1>Credentials</h1>
<p>
This table provides an overview of all configured
<a href="glossary.html?token={/envelope/token}#lsc_credential">Credentials</a>.
and summarizes the essential aspects of it.
</p>
<table class="gbntable">
<tr class="gbntablehead2">
<td>Column</td>
<td>Description</td>
</tr>
<xsl:call-template name="name-column">
<xsl:with-param name="type" select="'credential'"/>
</xsl:call-template>
<tr class="even">
<td>Login</td>
<td>Shows the login name that was provided for this credential.</td>
</tr>
</table>
<h3>New Credential</h3>
<p>
To create a new lsc_credential click the
new icon <img src="/img/new.png"
alt="New Credential" title="New Credential"/>
which goes to the
<a href="new_lsc_credential.html?token={/envelope/token}">New Credential</a>
page.
</p>
<h3>Exporting</h3>
<p>
Export the current list of lsc_credentials as XML by clicking on the
export icon <img src="/img/download.png" alt="Export" title="Export XML"/>.
</p>
<xsl:call-template name="filtering"/>
<xsl:call-template name="sorting"/>
<xsl:call-template name="list-window-line-actions">
<xsl:with-param name="type" select="'Credential'"/>
</xsl:call-template>
<h4>Download RPM Package</h4>
<p>
Pressing the RPM icon
<img src="/img/rpm.png" alt="Download RPM Package" title="Download RPM Package"/>
will download a ".rpm" installation package.
</p>
<p>
With installing this package on a RPM-based systems (e.g. SUSE, RedHat, Fedora, CentOS)
a low privileged user account is created on that target system to allow
the scan engine to access the system retrieve information about installed software
and other product information. De-installation of the package will disable the access.
</p>
<h4>Download Debian Package</h4>
<p>
Pressing the Debian icon
<img src="/img/deb.png" alt="Download Debian Package" title="Download Debian Package"/>
will download a ".deb" installation package.
</p>
<p>
With installing this package on a dpkg-based systems (e.g. Debian, Ubuntu)
a privileged user account is created on that target system to allow
the scan engine to access the system retrieve information about installed software
and other product information. De-installation of the package will disable the access.
</p>
<h4>Download Exe Package</h4>
<p>
Pressing the Exe icon
<img src="/img/exe.png" alt="Download Exe Package" title="Download Exe Package"/>
will download a ".exe" installation package.
</p>
<p>
With installing this package on a Windows systems (e.g. XP, 2003)
a low privileged user account is created on that target system to allow
the scan engine to access the system retrieve information about installed software
and other product information. De-installation of the package will disable the access.
</p>
<h4>Download Public Key</h4>
<p>
Pressing the public key icon
<img src="/img/key.png" alt="Download Public Key" title="Download Public Key"/>
will download a SSH Public Key in ASCII form.
</p>
<p>
This key corresponds to the keys
used for RPM and Debian packages (not for Exe-Packages).
The key file is intended to support expert users to prepare targets systems for
local security checks on their own (i.e. without the provided RPM/Debian
packages).
</p>
<p>
Note that depending on the method that was chosen to specify a password
(manually or autogenerated), some actions might not be available.
Specifically, when the password was supplied manually, just the Delete,
Edit, Clone and Export actions are available.
</p>
</div>
</div>
</xsl:template>
<xsl:template mode="help" match="new_lsc_credential.html">
<div class="gb_window_part_center">Help: New Credential
<a href="/omp?cmd=new_lsc_credential&max=-2&token={/envelope/token}">
<img src="/img/new.png" border="0" style="margin-left:3px;"/>
</a>
</div>
<div class="gb_window_part_content">
<div style="float:left;"><a href="/help/contents.html?token={/envelope/token}">Help Contents</a></div>
<div style="text-align:left">
<br/>
<xsl:call-template name="availability">
<xsl:with-param name="command" select="'CREATE_LSC_CREDENTIAL'"/>
</xsl:call-template>
<p>
Credentials for local security checks are required to allow
<a href="glossary.html?token={/envelope/token}#nvt">NVTs</a> to log into target systems
for the purpose of locally check there e.g. for the presence
of all vendor security patches.
</p>
<h1>New Credential</h1>
<p>
For creating a new
<a href="glossary.html?token={/envelope/token}#lsc_credential">Credential</a>
the dialog offers these entries.
Hit the button "Create Credential" to submit the new lsc_credential.
The Credentials page will be shown.
</p>
<table class="gbntable">
<tr class="gbntablehead2">
<td></td>
<td>Mandatory</td>
<td>Max Length</td>