Skip to content

Commit 5703eb4

Browse files
committed
Removed Empty lines from Comments this messed some comments up
1 parent 3ee948f commit 5703eb4

File tree

173 files changed

+115
-420
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

173 files changed

+115
-420
lines changed

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/Attacker.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@
2020
import de.rub.nds.tlsattacker.attacks.config.AttackConfig;
2121

2222
/**
23-
*
24-
*
2523
* @param <Config>
2624
*/
2725
public abstract class Attacker<Config extends AttackConfig> {

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/BleichenbacherAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
* Sends differently formatted PKCS#1 messages to the TLS server and observes
4646
* the server responses. In case there are differences in the server responses,
4747
* it is very likely that it is possible to execute Bleichenbacher attacks.
48-
*
4948
*/
5049
public class BleichenbacherAttacker extends Attacker<BleichenbacherCommandConfig> {
5150

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/Cve20162107Attacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939

4040
/**
4141
* Tests for the availability of the OpenSSL padding oracle (CVE-2016-2107).
42-
*
4342
*/
4443
public class Cve20162107Attacker extends Attacker<Cve20162107CommandConfig> {
4544

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/DtlsPaddingOracleAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
/**
4848
* Tests if the subject can be used as a padding oracle by sending messages with
4949
* invalid MACs or invalid paddings.
50-
*
5150
*/
5251
public class DtlsPaddingOracleAttacker extends Attacker<DtlsPaddingOracleAttackCommandConfig> {
5352

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/HeartbleedAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
/**
3434
* Executes the Heartbeat attack against a server and logs an error in case the
3535
* server responds with a valid heartbeat message.
36-
*
3736
*/
3837
public class HeartbleedAttacker extends Attacker<HeartbleedCommandConfig> {
3938

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/Lucky13Attacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040

4141
/**
4242
* Executes the Lucky13 attack test
43-
*
4443
*/
4544
public class Lucky13Attacker extends Attacker<Lucky13CommandConfig> {
4645

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/PaddingOracleAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
/**
3838
* Executes a padding oracle attack check. It logs an error in case the tested
3939
* server is vulnerable to poodle.
40-
*
4140
*/
4241
public class PaddingOracleAttacker extends Attacker<PaddingOracleCommandConfig> {
4342

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/SniAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@
1515
/**
1616
* Sends different server names in the SNI extension in the ClientHello
1717
* messages.
18-
*
1918
*/
2019
public class SniAttacker extends Attacker<SniTestCommandConfig> {
2120

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/TLSPoodleAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
/**
3636
* Executes a poodle attack. It logs an error in case the tested server is
3737
* vulnerable to poodle.
38-
*
3938
*/
4039
public class TLSPoodleAttacker extends Attacker<TLSPoodleCommandConfig> {
4140

Attacks/src/main/java/de/rub/nds/tlsattacker/attacks/impl/WinshockAttacker.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@
2929
/**
3030
* Allows to execute the Winshock attack, by setting the CertificateVerify
3131
* protocol message properties. I
32-
*
3332
*/
3433
public class WinshockAttacker extends Attacker<WinshockCommandConfig> {
3534

0 commit comments

Comments
 (0)