
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
github.com/tfkr-ae/marasi
Lua based extension support, three built-in extensions:
The ability to add custom extensions coming soon.
SQLite-based application file format stores:
This library is designed for building web appilcation security proxies.
Basic integration (for full implementation see marasi-app):
// Create proxy with options
proxy, err := marasi.New(
marasi.WithConfigDir("/path/to/config"),
marasi.WithDatabase(repo),
)
// Set up handlers for your application
proxy.WithOptions(
marasi.WithRequestHandler(func(req marasi.ProxyRequest) error {
// Handle Requests in your application
return nil
}),
marasi.WithResponseHandler(func(res marasi.ProxyResponse) error {
// Handle Responses in your application
return nil
}),
marasi.WithLogHandler(func(logItem marasi.Log) error {
// Handle log messages
return nil
}),
marasi.WithInterceptHandler(func(intercepted *marasi.Intercepted) error {
switch intercepted.Type {
case "request":
// Handle Request interception
case "response":
// Handle Response interception
}
return nil
}),
)
// Start proxy server
listener, err := proxy.GetListener("127.0.0.1", "8080")
proxy.Serve(listener)
Use the GitHub Discussion to provide feedback, ask questions or discuss the project.
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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.