
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
vagrant-hypervnet is a Vagrant plugin which extends Hyper-V provider implementing networks creation and configuration.
$ vagrant plugin install vagrant-hypervnet
Vagrant.configure("2") do |config|
# installs OpenSSH Server (Windows Capability) and inserts vagrant ssh key on windows guests
config.hypervnet.install_ssh_server = true
# installs MSYS2 and rsync on windows guests
config.hypervnet.install_rsync = true
# enablee synced_folder synchronization before provision
config.hypervnet.folder_sync_on_provision = true
# Hyper-V switch connected to vagrant management interface
config.hypervnet.default_switch = "Default Switch"
# Hyper-V internal network: a new switch is created if can't find an existent switch with the specified subnet (192.168.100.100/24)
config.vm.network :private_network, ip: "192.168.100.101", netmask: "255.255.255.0"
# Hyper-V internal network: a new switch is created if can't find an existent switch whith the specified name ("my-internal-network")
config.vm.network :private_network, ip: "192.168.102.101", netmask: "255.255.255.0" hyperv__bridge: "my-internal-network"
# Hyper-V private network: a new switch is created if can't find an existent switch whith the specified name ("my-private-network")
config.vm.network :private_network, ip: "192.168.101.101", netmask: "255.255.255.0" hyperv__private: "my-private-network"
# Hyper-V external network: the existent switch whith the specified name ("my-external-network") is connected to this vm adapter
config.vm.network :public_network, ip: "192.168.102.101", netmask: "255.255.255.0" hyperv__bridge: "my-external-network"
# rsync synched folder
config.vm.synced_folder ".", "/vagrant", type: "rsync", rsync__exclude: ".git"
end
install_ssh_server
(Boolean, default: true
): installs OpenSSH Server (Windows Capability) and inserts vagrant ssh key on windows guests.install_rsync
(Boolean, default: true
): installs MSYS2 and rsync on windows guests if an rsync synced folder is defined .folder_sync_on_provision
(Boolean, default: true
): if enabled invokes synced folders synchronization before provision.default_switch
(String, default: Default Switch
): Hyper-V switch connected to interface used by vagrant to communicate with the vm.$ vagrant init
$ vagrant up --provider=hyperv
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that vagrant-hypervnet demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.