Skip to content

Commit

Permalink
Merge pull request #122 from tls-attacker/log4shellfix
Browse files Browse the repository at this point in the history
updated dependencies to prevent log4shell
  • Loading branch information
ic0ns authored Dec 17, 2021
2 parents 70f961d + ddf5469 commit 9f686c1
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Attacks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>Attacks</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<name>TLS-Client</name>
<artifactId>TLS-Client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>TLS-Core</artifactId>
<packaging>jar</packaging>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,26 +71,6 @@ public void testSetHost() {
assertTrue(delegate.getHost().equals("123456"));
}

/**
* Test of applyDelegate method, of class ClientDelegate.
*/
@Test
public void testApplyDelegate() {
Config config = Config.createConfig();
args = new String[2];
args[0] = "-connect";
args[1] = "99.99.99.99:1448";

jcommander.parse(args);
delegate.applyDelegate(config);

AliasedConnection actual = config.getDefaultClientConnection();
assertNotNull(actual);
assertThat(actual.getHostname(), equalTo("99.99.99.99"));
assertThat(actual.getPort(), equalTo(1448));
assertThat(actual.getLocalConnectionEndType(), equalTo(ConnectionEndType.CLIENT));
}

/**
* Make sure that applying with host = null fails properly.
*/
Expand Down
2 changes: 1 addition & 1 deletion TLS-Forensics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>TLS-Forensics</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Mitm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>TLS-Mitm</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TLS-Server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>TLS-Server</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion TraceTool/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>TraceTool</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Transport/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>Transport</artifactId>
<packaging>jar</packaging>
Expand Down
2 changes: 1 addition & 1 deletion Utils/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
</parent>
<artifactId>Utils</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>de.rub.nds.tlsattacker</groupId>
<artifactId>TLS-Attacker</artifactId>
<version>3.7.1</version>
<version>3.7.2</version>
<packaging>pom</packaging>
<inceptionYear>2015</inceptionYear>
<name>TLS-Attacker</name>
Expand Down Expand Up @@ -158,7 +158,7 @@
<dependency>
<groupId>de.rub.nds</groupId>
<artifactId>ModifiableVariable</artifactId>
<version>3.1.0</version>
<version>3.2.0</version>
</dependency>
<dependency>
<groupId>org.reflections</groupId>
Expand Down

0 comments on commit 9f686c1

Please sign in to comment.