Hey guys, quick question about Evilginx and CORS.
I’ve set up my Nginx reverse proxy to pass traffic to Evilginx on port 8080, and I added the typical CORS headers in the Nginx config:
add_header ‘Access-Control-Allow-Origin’ ‘*’;
add_header ‘Access-Control-Allow-Methods’ ‘GET, POST, OPTIONS’;
add_header ‘Access-Control-Allow-Headers’ ‘Content-Type, Authorization’;
But I’m still running into CORS issues when trying to fetch data or load in browsers or scripts.
Has anyone here gotten CORS to work properly with Evilginx?
Do I need to do anything special on the Evilginx side, or is it all handled at the Nginx proxy level?
Appreciate any help you can offer