Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
realityforge-vagrant-windows
Advanced tools
TODO: vagrant rdp && vagrant ps to connect to VM
gem install vagrant-windows
-Enable WinRM
winrm quickconfig -q
winrm set winrm/config/winrs @{MaxMemoryPerShellMB="512"}
winrm set winrm/config @{MaxTimeoutms="1800000"}
winrm set winrm/config/service @{AllowUnencrypted="true"}
winrm set winrm/config/service/auth @{Basic="true"}
Create a vagrant user
Turn off UAC (Msconfig)
Disable complex passwords
Add the following to your Vagrantfile
config.vm.guest = :windows
config.vm.forward_port 3389, 3390, :name => "rdp", :auto => true
config.vm.forward_port 5985, 5985, :name => "winrm", :auto => true
Example:
Vagrant::Config.run do |config|
#The following timeout configuration is option, however if have
#any large remote_file resources in your chef recipes, you may
#experience timeouts (reported as 500 responses)
config.winrm.timeout = 1800 #Set WinRM Timeout in seconds (Default 30)
# Configure base box parameters
config.vm.box = "windows2008r2"
config.vm.box_url = "./windows-2008-r2.box"
config.vm.guest = :windows
config.vm.forward_port 3389, 3390, :name => "rdp", :auto => true
config.vm.forward_port 5985, 5985, :name => "winrm", :auto => true
config.vm.provision :chef_solo do |chef|
chef.add_recipe("your::recipe")
end
end
0.1.1 - Remove extra debug information from command output. 0.1.2 - added virtual box 4.2 support 0.1.3 - added puppet provisioner
FAQs
Unknown package
We found that realityforge-vagrant-windows 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.