Welcome! Log In Create A New Profile

Advanced

My site is vulnerable to the SSL FREAK attacks.

April 13, 2015 03:50AM
my site is vulnerable to the SSL FREAK attacks.

i have a setting problem.

my setting is....
I want all request "http" --> "https"
But, some location is "https" --> "http".
ALL Location : https
/companyBrand.do : http only


What's problem?

---------------------------------------------------------------------------------------------------

map $request_uri $example_org_preferred_proto {
default "https";
~^/mobile/rsvPayOnlyResult2.do "http";
~^/kor/cartel.do "http";
}

server {
listen 443 ssl;
listen 80;
server_name www.test.com;

charset utf-8;

#ssl on;
ssl_certificate D:/nginx-1.7.10/ssl/cert.pem;
ssl_certificate_key D:/nginx-1.7.10/ssl/nopasswd.pem;
ssl_verify_client off;

ssl_session_timeout 5m;

ssl_protocols SSLv3 TLSv1;
ssl_ciphers AES256-SHA:HIGH:!EXPORT:!eNULL:!ADH:RC4+RSA;
ssl_prefer_server_ciphers on;

error_page 400 /error/error.html;
error_page 403 /error/error.html;
error_page 404 /error/error.html;

if ($scheme != $example_org_preferred_proto) {
return 301 $example_org_preferred_proto://$server_name$request_uri;
}

location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_buffering off;
proxy_connect_timeout 60;
proxy_read_timeout 60;
proxy_pass http://wwwtestcom;
proxy_ssl_session_reuse off;
}
}
Subject Author Posted

My site is vulnerable to the SSL FREAK attacks.

jinwon42 April 13, 2015 03:50AM

Re: My site is vulnerable to the SSL FREAK attacks.

itpp2012 April 13, 2015 07:10AM

Re: My site is vulnerable to the SSL FREAK attacks.

jinwon42 April 13, 2015 09:28PM

Re: My site is vulnerable to the SSL FREAK attacks.

dewanggaba April 13, 2015 10:26PM

Re: My site is vulnerable to the SSL FREAK attacks.

jinwon42 April 14, 2015 01:59AM

RE: My site is vulnerable to the SSL FREAK attacks.

Lukas Tribus April 14, 2015 03:34AM

Re: RE: My site is vulnerable to the SSL FREAK attacks.

jinwon42 April 14, 2015 04:26AM

RE: My site is vulnerable to the SSL FREAK attacks.

Lukas Tribus April 14, 2015 05:12AM

Re: RE: My site is vulnerable to the SSL FREAK attacks.

jinwon42 April 14, 2015 05:39AM

RE: My site is vulnerable to the SSL FREAK attacks.

Lukas Tribus April 14, 2015 05:56AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 238
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready