org.bouncycastle.jsse.provider.ImpersonateProvTlsClientProtocol Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of impersonator Show documentation
Show all versions of impersonator Show documentation
Spoof TLS/JA3/JA4 and HTTP/2 fingerprints in Java
The newest version!
package org.bouncycastle.jsse.provider;
import com.github.zhkl0228.impersonator.Impersonator;
import org.bouncycastle.tls.TlsSession;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
class ImpersonateProvTlsClientProtocol extends ProvTlsClientProtocol {
private final Impersonator impersonator;
ImpersonateProvTlsClientProtocol(InputStream input, OutputStream output, Closeable closeable, Impersonator impersonator) {
super(input, output, closeable);
this.impersonator = impersonator;
}
@Override
protected boolean establishSession(TlsSession sessionToResume) {
try {
impersonator.onEstablishSession(clientExtensions);
} catch (IOException e) {
throw new IllegalStateException("establishSession", e);
}
return super.establishSession(sessionToResume);
}
@Override
protected void sendClientHelloMessage() throws IOException {
try {
impersonator.onSendClientHelloMessage(clientExtensions);
} catch (IOException e) {
throw new IllegalStateException("sendClientHelloMessage", e);
}
super.sendClientHelloMessage();
}
}