
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Ruby FFI bindings to http-parser
gem install http-parser
This gem will compile a local copy of http-parser
require 'rubygems'
require 'http-parser'
#
# Create a shared parser
#
parser = HttpParser::Parser.new do |parser|
parser.on_message_begin do |inst|
puts "message begin"
end
parser.on_message_complete do |inst|
puts "message end"
end
parser.on_url do |inst, data|
puts "url: #{data}"
end
parser.on_header_field do |inst, data|
puts "field: #{data}"
end
parser.on_header_value do |inst, data|
puts "value: #{data}"
end
end
#
# Create state objects to track requests through the parser
#
request = HttpParser::Parser.new_instance do |inst|
inst.type = :request
end
#
# Parse requests
#
parser.parse request, "GET /foo HTTP/1.1\r\n"
sleep 3
parser.parse request, "Host: example.com\r\n"
sleep 3
parser.parse request, "\r\n"
#
# Re-use the memory for another request
#
request.reset!
FAQs
Unknown package
We found that http-parser 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
/Security News
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.