Skip to content

Commit fba8e4c

Browse files
authored
Fix some syntax errors
1 parent 89c876c commit fba8e4c

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mitm/README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -61,11 +61,11 @@ By default, when using the MITM module with LittleProxy, the CA Root Certificate
6161

6262
// save the newly-generated Root Certificate and Private Key -- the .cer file can be imported
6363
// directly into a browser
64-
rootCertificateGenerator.saveRootCertificateAsPemFile(new File("/tmp/certificate.cer");
65-
rootCertificateGenerator.savePrivateKeyAsPemFile(new File("/tmp/private-key.pem", "password");
64+
rootCertificateGenerator.saveRootCertificateAsPemFile(new File("/tmp/certificate.cer"));
65+
rootCertificateGenerator.savePrivateKeyAsPemFile(new File("/tmp/private-key.pem"), "password");
6666

6767
// or save the certificate and private key as a PKCS12 keystore, for later use
68-
rootCertificateGenerator.saveRootCertificateAndKey("PKCS12", new File("/tmp/keystore.p12",
68+
rootCertificateGenerator.saveRootCertificateAndKey("PKCS12", new File("/tmp/keystore.p12"),
6969
"privateKeyAlias", "password");
7070

7171
// tell the ImpersonatingMitmManager use the RootCertificateGenerator we just configured
@@ -161,4 +161,4 @@ significant performance benefits. The MITM module itself requires no additional
161161
See Netty's OpenSSL instructions for details: http://netty.io/wiki/requirements-for-4.x.html#tls-with-openssl
162162

163163
## Acknowledgements
164-
The MITM module would not have been possible without the efforts of Frank Ganske, the Zed Attack Proxy, and Brad Hill. Thank you for all your excellent work!
164+
The MITM module would not have been possible without the efforts of Frank Ganske, the Zed Attack Proxy, and Brad Hill. Thank you for all your excellent work!

0 commit comments

Comments
 (0)