bandit icon indicating copy to clipboard operation
bandit copied to clipboard

Bandit is a pure Elixir HTTP server for Plug & WebSock applications

Results 31 bandit issues
Sort by recently updated
recently updated
newest added

HI. I have a phoenix app running on docker at aws (behind a aws load balance) receiving 30k req/min and when I move from cowboy to bandit, it start to...

### Environment Elixir version: 1.16.2 Phoenix version: 1.7.12 Phoenix LiveView version: 0.20.14 Bandit version: 1.5.2 Thousand Island version: 1.3.5 Operating system: iOS 17.0.3 Browser: Safari ### Actual behavior I open...

This might be a "undefined behavior, you're using it wrong", but it's sufficiently weird that I want to check. We've been using `cowboy2` for a bit and started to use...

This PR adds optional support for native implementation of some functions for bandit. Some functions like websocket masking, and UTF8 validation can use more efficient native implementations which can speed...

I recently tried running a Bandit-based Phoenix application with H2C, behind an AWS Application Load Balancer. In this mode, I would almost never receive a full response, even for static...

In my phoenix app which uses Bandit, I'm using bling to process stripe webhooks and the stripe cli to forward webhooks to my local server. Some of the webhook requests...

As expected, the `[:bandit, :request, :start]` event happens when a request starts, the `[:bandit, :request, :exception]` event happens when the request raises, and `[:bandit, :request, :stop]` happens when the request...

If you make a project as per: https://hexdocs.pm/plug/readme.html https://hexdocs.pm/bandit/Bandit.html You can get: ``` #==================== #PLUG MODULE FOR BANDIT #==================== defmodule MyPlug do import Plug.Conn def init(options) do # initialize options...

Potential alternative to #398 . Proof of concept still. Haven't yet tested how compatible is with earlier elixir/otp versions. This moves to do something "similar" to what plug_cowboy does in...

Supersedes #396. - Telementry events - Also emit span for throw - Also emit span for exit - Logger - Lets logger handlers know about the original crash reason when...