Hide Referer on Firefox

Hello,

Just open your Firefox configuration about:config and set the value of network.http.sendRefererHeader to 0.

AC.

Posted in Basic Technical, Nonsense Stuff, Security | Tagged , , , , , | Comments Off on Hide Referer on Firefox

Hide your Referer with Free URL Redirection (Redirect Flaw)

Hello,

Today killing some time I collected some “free url redirection services”, so in the case that you want to hide your referer to post links on your blog, some forum, or whereever you want,  you could try it:

http://canalonline.vodafone.es/cpar/do/sso/go?type=1&destination=https://www.google.com
http://www.fileheaven.com/download.aspx?id=20805&p=&url=http%3a%2f%2fgoogle.com
http://www.datumconnect.co.nz/ra.asp?m=1&p=&url=http://www.google.com
http://www.segundamano.es/redir?s=modificar&url=http://google.com

The best of all is that these services are 100% AD free 😉

AC.

Posted in Basic Technical, Nonsense Stuff, Security | Tagged , , , , , , , | Comments Off on Hide your Referer with Free URL Redirection (Redirect Flaw)

Adobe Flash Player APSB10-26 Vulnerability

Hello,

I thought that the Windows OS (Any Version) was the software that needs the biggest amount of updates almost every week, but now on I am not sure of that, the flash player is almost winning this place!

AC.

Posted in Nonsense Stuff, Security | Tagged , , , | Comments Off on Adobe Flash Player APSB10-26 Vulnerability

Share Cookies Between Subdomains on .NET

Hello,

Here is quick tip:

If you use the simplest way to write a cookie on ASP.NET:
Response.Cookies.Set(New HttpCookie("TestCookie", "TestData"))
It will be only readable by the subdomain that you used to write the cookie…

If you want the cookie to be read by any subdomain (of the current site) you have to prepend a “.” before the domain value on the cookie…
Example:
Dim cookie As New HttpCookie("ActivePremiumUser", "ItsActive")
cookie.Domain = ".domain.com"
Response.Cookies.Set(cookie)

AC.

Posted in .Net Coding, Basic Technical | Tagged , , , , , | Comments Off on Share Cookies Between Subdomains on .NET

Strict-Transport-Security

Hello,

A very nice way to force HTTPS on all the pages of your site is adding the following header to the server responses on your site:
Strict-Transport-Security=max-age=31536000;

So after that if some user access some page of your site as HTTPS, it will stay as HTTPS on all the site, even if they type just “HTTP”.

http://lists.w3.org/Archives/Public/www-archive/2009Sep/att-0051/draft-hodges-strict-transport-sec-05.plain.html

The only (little) problem is that this is not yet implemented on any browser (without the need of additional plugins)…

AC.

Posted in Learned Today, Medium Technical | Tagged , , , , , | Comments Off on Strict-Transport-Security

Hello World

Hello bots and random users,

For now on, this will be my nonsense blog for technical stuffs…

AC.

Posted in Nonsense Stuff | Tagged , | Comments Off on Hello World