-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpom.xml
74 lines (67 loc) · 2.78 KB
/
pom.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>de.fraunhofer.iem</groupId>
<artifactId>swan</artifactId>
<packaging>pom</packaging>
<version>3.3.1</version>
<name>SWAN</name>
<description>SWAN uses fully automated machine-learning approaches to classify Java methods into security-relevant
methods (SRM) and software vulnerabilities categories.
The methods are classified into the following security-relevant method categories sources, sinks, sanitizers and
authentication. For the software vulnerability classes,
the following Common Weakness Enumeration (CWE) vulnerabilities are supported: OS Command Injection, Cross-site
Scripting, SQL Injection, Missing Authentication, Open Redirect, Missing Authorisation, and Incorrect
Authorisation.
SWAN detects methods from the provided source code and outputs a list of methods that can be used to configure
static analysis tools.
</description>
<url>https://github.com/secure-software-engineering/swan</url>
<licenses>
<license>
<name>BSD 3-Clause License</name>
<url>https://opensource.org/licenses/BSD-3-Clause</url>
<distribution>repo</distribution>
</license>
</licenses>
<developers>
<developer>
<id>piskachev</id>
<name>Goran Piskachev</name>
<email>[email protected]</email>
</developer>
<developer>
<id>nguyen</id>
<name>Lisa Nguyen</name>
<email>[email protected]</email>
</developer>
<developer>
<id>johnson</id>
<name>Oshando Johnson</name>
<email>[email protected]</email>
</developer>
<developer>
<id>budde</id>
<name>Ingo Budde</name>
<email>[email protected]</email>
</developer>
<developer>
<id>bodden</id>
<name>Eric Bodden</name>
<email>[email protected]</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
</properties>
<modules>
<module>training-data-jars</module>
<module>coverage-doclet</module>
<module>xml-doclet</module>
<module>ml2plan-model-selection</module>
<module>swan-cmd</module>
</modules>
</project>