![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
github.com/ThreeToes/tunneller
A small application to make it easier to get to RDS servers in private subnets via EC2 bastion servers
Run make build
, a binary will be produced
in the build
folder
First, configure your AWS ~/.aws/credentials
file. Tunneller
will read this during execution. At this point, it doesn't
support custom credential file locations, so ensure it's
in the correct place.
Tunneller has its own terminal based UI, so it can be run by simply invoking the binary. There are, however a few flags that can be used to skip a few steps:
-profile
- The profile name to use-local-port
- Which local port to bind to, default is 8888-region
- Which AWS region to use-os-user
- SSH Bastion UsernameTunneller uses the ec2-instance-connect
part of the AWS SDK
to upload a public key into the selected EC2 instance and then
does a vanilla SSH tunnel through. The equivalent CLI commands
would be
ssh-keygen -f bastionkey -N ""
aws ec2-instance-connect send-ssh-public-key \
--instance-id $(BASTION_ID) \
--instance-os-user $(BASTION_USER) \
--ssh-public-key file://./bastionkey.pub \
--availability-zone $(BASTION_AZ)
ssh -L -L 8888:$(DB_HOST):$(DB_PORT) ec2-user@$(BASTION_USER)
Most of the connection code is lifted wholesale from here. Thanks for allowing me to be lazy.
FAQs
Unknown package
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.