File: zap_config.xml

package info (click to toggle)
o-saft 19.01.19-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,764 kB
  • sloc: perl: 18,248; tcl: 2,857; sh: 2,089; makefile: 1,956; awk: 274; ruby: 75; xml: 38; php: 8
file content (73 lines) | stat: -rw-r--r-- 2,333 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!--
#? NAME
#?      zap_config.xml  -  example configurtation for ZAP Add-on
#?
#? DESCRIPTION
#?      This file contains simple examples to use  O-Saft  from  ZAP's context
#?       menu  "External Program".
#?
#? USAGE
#?      Unfortunately ZAP has no method to  "include"  these settings. So they
#?      must be copied manually into ZAP's  config.xml , which can be found in
#?      $HOME/.ZAP/config.xml  or  your  working directory.
#?      Copy all  <app>..</app>  scopes into the  <apps>  scope there.
#?
#? NOTE
#?      All programs, like o-saft.pl and o-saft.tcl, must be found by the PATH
#?      environment variable, or they must be specified with a full path here.
#?
#? HINT
#?      If .o-saft.pl should be used, it must be located in the same directory
#?      where  o-saft.pl  will be started. ZAP uses the setting in <directory>
#?      for that. If  <directory/>  is empty, o-saft.pl will be started in the
#?      same directory as ZAP itself. Place your .o-saft.pl in that directory.
#?
#? AUTHOR
#?      16-dec-14 Achim Hoffmann
# _____________________________________________________________________________
-->

<config>
<invoke>                                                                       
<confirmRemoveApp>true</confirmRemoveApp>
<apps>

<app><name>O-Saft +info</name>
<directory/>
<command>o-saft.pl</command><parameters>%site% +info --header</parameters>
<output>true</output><note>true</note>
<enabled>true</enabled>
</app>

<app><name>O-Saft +cipher</name>
<directory/>
<command>o-saft.pl</command><parameters>%site% +cipher --header --enabled</parameters>
<output>true</output><note>true</note>
<enabled>true</enabled>
</app>

<app><name>O-Saft +check</name>
<directory/>
<command>o-saft.pl</command><parameters>%site% +check --header --enabled</parameters>
<output>true</output><note>true</note>
<enabled>true</enabled>
</app>

<app><name>O-Saft +vulns</name>
<directory/>
<command>o-saft.pl</command><parameters>%site% +vulns --header --enabled</parameters>
<output>true</output><note>true</note>
<enabled>true</enabled>
</app>

<app><name>O-Saft GUI</name>
<directory/>
<command>o-saft.tcl</command><parameters>%site%</parameters>
<output>true</output><note>false</note>
<enabled>true</enabled>
</app>

</apps>
</invoke>
</config>