
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).
A modern markdown-to-HTML converter designed for research blog posts with support for tables, code references, and beautiful styling.
pip install babbl
babbl render document.md
babbl build ./docs --output-dir ./public
babbl render document.md --css custom.css --toc
from babbl import BabblParser, HTMLRenderer
parser = BabblParser()
renderer = HTMLRenderer()
with open("document.md", "r") as f:
content = f.read()
document = parser.parse(content)
html = renderer.html(document, metadata={})
Reference code from files using simple syntax:
#function_name
[Description](path/to/file.py#function_name)
[Line 15](path/to/file.py#L15)
[Lines 10-20](path/to/file.py#L10-L20)
Standard markdown table syntax:
| Header 1 | Header 2 | Header 3 |
|----------|----------|----------|
| Cell 1 | Cell 2 | Cell 3 |
| Cell 4 | Cell 5 | Cell 6 |
YAML metadata at the beginning of files:
---
title: "My Document"
author: "Author Name"
date: "2024-01-01"
---
# Content starts here
babbl render
Render a single markdown file to HTML.
Options:
--output, -o
: Output file path--css
: Custom CSS file--toc
: Generate table of contents--base-path
: Base path for code referencesbabbl build
Build multiple markdown files in a directory.
Options:
--output-dir, -o
: Output directory--pattern
: File pattern (default: *.md
)--recursive, -r
: Process subdirectories--css
: Custom CSS file--toc
: Generate table of contents--base-path
: Base path for code referencesMIT License
FAQs
Turn markdown into beautiful research blog posts
We found that babbl demonstrated a healthy version release cadence and project activity because the last version was released less than 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.