Skip to content

Commit

Permalink
Update README.md files
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Apr 8, 2024
1 parent 2997781 commit 7a0efce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Filter/Proxy/HTTP/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,14 @@ if(requestResponse.request().isInScope()
// Put your typical filters here, this one doesn't actually filter anything
return true;

```
## [Detect101SwitchingProtocols.bambda](https://github.com/PortSwigger/bambdas/blob/main/Filter/Proxy/HTTP/Detect101SwitchingProtocols.bambda)
### Bambda Script to Detect "101 Switching Protocols" in HTTP Response
#### Author: Tur24Tur / BugBountyzip (https://github.com/BugBountyzip)
```java
// Ensure there is a response and check if the status code is 101
return requestResponse.hasResponse() && requestResponse.response().statusCode() == 101;

```
## [DetectSuspiciousJSFunctions.bambda](https://github.com/PortSwigger/bambdas/blob/main/Filter/Proxy/HTTP/DetectSuspiciousJSFunctions.bambda)
### Bambda Script to Detect and Highlight Suspicious JavaScript Functions
Expand Down

0 comments on commit 7a0efce

Please sign in to comment.