
Product
Rubygems Ecosystem Support Now Generally Available
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
com.github.jkutner:env-keystore
Advanced tools
Creates KeyStore and TrustStore from environment variables
A Java library to create KeyStore and TrustStore objects in memory from environment variables.
Include this library in your application as a Maven depenency:
<dependency>
<groupId>com.github.jkutner</groupId>
<artifactId>env-keystore</artifactId>
<version>0.1.2</version>
</dependency>
Creating a TrustStore requires that the certificate PEM be set as an environment variable.
You pass that environment variable name to the EnvKeyStore.create
method:
KeyStore ts = EnvKeyStore.create("TRUSTED_CERT").keyStore();
You can use the KeyStore like any other. For example, you might invoke a service with the trusted cert:
String tmfAlgorithm = TrustManagerFactory.getDefaultAlgorithm();
TrustManagerFactory tmf = TrustManagerFactory.getInstance(tmfAlgorithm);
tmf.init(ts);
SSLContext sc = SSLContext.getInstance("TLS");
sc.init(null, tmf.getTrustManagers(), new SecureRandom());
HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());
String urlStr = "https://ssl.selfsigned.xyz";
URL url = new URL(urlStr);
HttpsURLConnection con = (HttpsURLConnection)url.openConnection();
con.setDoInput(true);
con.setRequestMethod("GET");
con.getInputStream().close();
Creating a KeyStore requires that the key, certificate and password are all set as environment variables.
You pass the environment variable names to the EnvKeyStore.create
method:
KeyStore ks = EnvKeyStore.create("KEYSTORE_KEY", "KEYSTORE_CERT", "KEYSTORE_PASSWORD").keyStore();
You can use the KeyStore like any other. But you might also want to convert it to an input stream. For example, you might start a Ratpack server:
EnvKeyStore eks = EnvKeyStore.create("KEYSTORE_KEY", "KEYSTORE_CERT", "KEYSTORE_PASSWORD");
RatpackServer.start(s -> s
.serverConfig(c -> {
c.ssl(SSLContexts.sslContext(eks.toInputStream(), eks.password()));
})
.handlers(chain -> chain
.all(ctx -> ctx.render("Hello!"))
)
);
FAQs
Creates KeyStore and TrustStore from environment variables
We found that com.github.jkutner:env-keystore demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket's Rubygems ecosystem support is moving from beta to GA, featuring enhanced security scanning to detect supply chain threats beyond traditional CVEs in your Ruby dependencies.
Research
The Socket Research Team investigates a malicious npm package that appears to be an Advcash integration but triggers a reverse shell during payment success, targeting servers handling transactions.
Security Fundamentals
The Socket Threat Research Team uncovers how threat actors weaponize shell techniques across npm, PyPI, and Go ecosystems to maintain persistence and exfiltrate data.