
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).
jinja2-highlight ################
A simple Jinja2 extension that uses Pygments to highlight code blocks.
.. image:: https://travis-ci.org/tlatsas/jinja2-highlight.svg?branch=master :target: https://travis-ci.org/tlatsas/jinja2-highlight
Github: https://github.com/tlatsas/jinja2-highlight
Pypi: http://pypi.python.org/pypi/jinja2-highlight
::
{% highlight 'language' %}
your-awesome-code-here
{% endhighlight %}
Replace language
with the appropriate Pygments lexer short name: http://pygments.org/docs/lexers/
Line numbering can be turned on using lineno='inline'
or lineno='table'
depending on the style of line numbering you want (as per Pygment's documentation: http://pygments.org/docs/formatters/#HtmlFormatter)
::
{% highlight 'language', lineno='inline' %}
your-awesome-code-here
{% endhighlight %}
This can also be used without a language setting
::
{% highlight lineno='table' %}
your-awesome-code-here
{% endhighlight %}
By default Pygments renders the code block inside a div with the class 'highlight', if you want to change the name you can set the environment variable jinja2_highlight_cssclass
to the class name you would like.
In jinja this can be done after you've created your environment; ::
env = Environment(extensions=['jinja2_highlight.HighlightExtension'])
# Set the css class name to 'codehilite'
env.extend(jinja2_highlight_cssclass = 'codehilite')
In Flask this can be done with the following (after creating your app): ::
app.jinja_env.extend(jinja2_highlight_cssclass = 'codehilite')
See the example at: https://github.com/tlatsas/jinja2-highlight/tree/master/examples/flask
FAQs
Jinja2 extension to highlight source code using Pygments
We found that jinja2-highlight 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.