Robert Merget

Results 28 comments of Robert Merget

strace output static linked: https://gist.github.com/ic0ns/b72ab0e7ba8ab327a299a29dbb939c48 strace output normal openssl: https://gist.github.com/ic0ns/7a27806df72efb9d5f90694be4a83578 I have to admit I'm no expert in debugging such issues.

I did not make any significant DNS related changes to the system. It should be mostly default settings. I tried this today on my machine at home ( also 5.1.3-arch1-1-ARCH...

If i remember correctly IIS also has a very specific fragmentation style. I am not sure how it exactly looks like from the back of my mind, but I think...

> > ## Only session closed but no alert sent > > " Whenever an implementation encounters a fatal error condition, it > SHOULD send an appropriate fatal alert and...

@djc neither the tool nor the paper are currently publicly available, as the paper is not peer reviewed yet. It is not super confidential, but at this point, we would...

Hey, this related to this: https://github.com/tls-attacker/TLS-Attacker/issues/163#issuecomment-2044652202 If you want to change message contents you need to use the ModifiableVariable Interface. I.e - ```setPayloadLength(Modifiable.explicit(50000));```

Without any further details I would guess that this is related to the java version. TLS-Attacker runs on java 11.

TLS-Attacker allows you to do wild things like sending DTLS parameters in a TLS connection to try to confuse the peer. Right now, it seems like you are running these...

TLS-Core is only a Library. Not an executable. When you want to change values in the libraries you have to do it though the code: ``` Config config = Config.createConfig();...