Questions tagged [webfiltering]

8 questions
0
votes
0 answers

How to restrict filepart size for specific endpoint in WebFluxConfigurer

I have two endpoints that upload/download documents. We set out a rule for upload to be limited to 5MB in file size(see below code) and this is used for customer to upload evidence and supporting documents for their mortgage application. As expected…
0
votes
2 answers

ngrok blocked by Fortinet FortiGuard

I would like to use ngrok for Microsoft Teams app development but it's being blocked by our FortiGuard threat protection and I cannot create a tunnel with the standard command ngrok http 80. What do I tell our FortiGuard admin that needs to be…
0
votes
0 answers

How can I use iptables as a per-user whitelist web filter on Linux?

I'm trying to use iptables to create a web filter that whitelists a list of websites and blacklists everything else on a per-user basis. So one user would have full web access while another would be restricted only to the whitelist. I am able to…
0
votes
0 answers

How can I use OpenDNS to block access to certain websites on certain devices?

I wish block certain websites on a certain device that I use, namely my computer. I am using OpenDNS as a web filtering tool however OpenDNS blocks access to blacklisted websites on all devices connected to my Wi-Fi network. I want to make it so…
0
votes
1 answer

ReactiveFeignClient - how to propagate headers from controller to client without auth

I received X-Forwarded-Host and X-Forwarded-Proto in my controller endpoints, and the endpoint has a reactive pipeline to call a ReactiveFeignClient class. These headers should be propagated to my client requests, but as I see it, it has not. I have…
0
votes
0 answers

Get body in spring reactive weblfux filter

I create a filter to a webflux reactive web to log the request and the response. I can get the path, the headers, method, but can't get the body content. In the request if convert the Flux body to String the server fails, and in the response i don't…
0
votes
1 answer

Change Rememberme-Cookie in a Webfilter

I'm trying to change the Domain and Path of a Cookie in a Webfilter. The Cookie is added to the Response by the Soteria RememberMeInterceptor. This is my Webfilter: @WebFilter(filterName = "DomainCookieFilter", urlPatterns = {"/*"}, …
frank
  • 674
  • 1
  • 3
  • 12
0
votes
0 answers

How to chain different filters for the same url?

Java 8, spring. Say i have this following code @WebFilter(urlPatterns = {"/url1", "/url2"}, description = "Session Checker Filter") public class SessionCheckerFilter implements Filter {} @WebFilter(urlPatterns = {"/url1"}, description = "Auth…
user3552178
  • 1,693
  • 3
  • 20
  • 39