Socket
Socket
Sign inDemoInstall

django-xss-shield

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

    django-xss-shield

A Shield to protect against xss


Maintainers
1

Readme

Badges

MIT License

XSS Shield

The primary objective of xss shield is to find the possible xss attack and block the request or return None. As xss is one the most common bug in web applications security researchers a finding ways to prevent it and hackers are creating more advanced payloads. most modern frameworks prevents xss by escaping special characters but still xss can be found. as react and djangos jinja2 tamplate engine does escapes the special characters but injecting user inputs in href attr {{ }} can be possible to exploit xss.

Usages

You can use the shield as a middleware by adding it into the settings.py middleware list

MIDDLEWARE = [

'shield.middleware.XssShieldMiddleware',

]

Or you can use it as filter to where you want to senitize

{% load shield_tag %}

it has two filters one to senitize the value for not injecting as javascript: or data: URI variables

{{ data|protect }}

The other process bruteforcess through a list of event handlers which is possible to lead into xss

{{ data|bruter }} Thats much simple it is :)

FAQs


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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc