| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 6 months |
| seen | 2 days ago | |
| stats | profile views | 11 |
|
Jan 31 |
asked | Jackson - Wrapping a list of objects with root object |
|
Jan 11 |
comment |
Spring Social and Spring Security : Securing website resources There's an API (just like facebook). myservice.com/doSomething, and there's also a web-profile (dashboard) myservice.com, they both communicate with the same API so you can look at this as 1 web app. |
|
Jan 11 |
revised |
Spring Social and Spring Security : Securing website resources added 90 characters in body |
|
Jan 11 |
asked | Spring Social and Spring Security : Securing website resources |
|
Jan 5 |
asked | Spring-Social Sign-In without Sing-up |
|
Jan 5 |
accepted | Facebook Graph API: Get Events by Venue |
|
Dec 31 |
asked | FQL returns 400 Error on application but works well on browser and API Explorer |
|
Dec 6 |
comment |
Security consequences of disabling CURLOPT_SSL_VERIFYHOST (libcurl/openssl) I have 2 servers (1.1.1.1 and 2.2.2.2), the DNS for example.com contains 2 A records (of those ip addresses). The client randomly choose one of them and connect to the IP address and not the hostname. I would like openSSL to call me when it checks the common name field so i can compare the certificate common name with example.com, if it's okay, i will accept the certificate. I haven't seen that libcurl supports that so i assume i have to write my own implementation. The certificate for example.com is a trusted Verisign cert. |
|
Dec 6 |
awarded | Commentator |
|
Dec 6 |
accepted | Security consequences of disabling CURLOPT_SSL_VERIFYHOST (libcurl/openssl) |
|
Dec 6 |
comment |
Security consequences of disabling CURLOPT_SSL_VERIFYHOST (libcurl/openssl) Thank you for elaborated answer. This lead me to another quick questions: I got a website with a valid SSL certificate https ://www.example.com (cn=www.example.com as it should). When I visit the website via it's IP address, it will show me cert errors (because the cn don't match), removing the SSL_VERIFYHOST will solve it, but will open it up to MiTM attacks. What is the correct solution to handle this? (allow connecting via IP address WITHOUT showing errors). Replacing the entire validation method using CURLOPT_SSL_CTX_FUNCTION only to verify that a specific IP address matches a CN? |
|
Dec 6 |
asked | Security consequences of disabling CURLOPT_SSL_VERIFYHOST (libcurl/openssl) |
|
Dec 1 |
asked | Facebook Graph API: Get Events by Venue |
|
Nov 27 |
revised |
CURLOPT_SSL_CTX_FUNCTION: Get Certificate CN from SSL_CTX added 124 characters in body |
|
Nov 27 |
asked | CURLOPT_SSL_CTX_FUNCTION: Get Certificate CN from SSL_CTX |
|
Nov 10 |
awarded | Tumbleweed |
|
Nov 7 |
comment |
Multiple SELECT on the same field in one statement You Rock. Thanks for the fast Answer! |
|
Nov 7 |
asked | Multiple SELECT on the same field in one statement |
|
Nov 6 |
accepted | Sqlite - SELECT or INSERT and SELECT in one statment |
|
Nov 6 |
comment |
Sqlite - SELECT or INSERT and SELECT in one statment I see, so you suggest insert anyway (worst case it will be ignored) and then select. I was trying to do it in a one liner, but didn't seem to work. Thanks! |