Jump to content

Recommended Posts

Posted

IIS 4.0 and 5.0 Fix Information:

http://support.microsoft.com/default.aspx?scid=kb;en-us;274149

Remediation for IIS 6.x:

http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/0d49cbc8-10e1-4fa8-ba61-

c34e524a3ae6.mspx?mfr=true

http://msdn2.microsoft.com/en-us/library/ms998310.aspx

Require SSL for an Authentication Cookie (IIS 7):

http://technet.microsoft.com/en-us/library/cc771633(WS.10).aspx

AnonymousIdentificationSection Class [iIS 7]:

http://msdn.microsoft.com/en-us/library/ms689482.aspx

Use the following links to remediate this issue on an Apache server:

http://search.cpan.org/~jkrasnoo/ApacheCookieEncrypted-0.03/Encrypted.pm

http://hc.apache.org/httpclient-3.x/apidocs/org/apache/commons/httpclient/class-use/Cookie.html

 

I never heard of secure cookies. Can you send a link regarding it?

Posted

Encrypt the contents of the header using encryption agreed upon between server administration and the clients. Or, more simply, you may encrypt server-browser exchanges with the SSL security switch in the cookie header. This feature, the SECURE attribute, allows you to limit the cookies' use to a secure channel (such as SSL). To enable this feature, set SECURE to TRUE. You can go a step further by installing an SSL certificate on your Apache server. Then your cookie exchanges will be SSL-encrypted.

Posted

In other words I need mark uni_gui_session_id with Secure attribute like this:

Set-Cookie: LSID=DQAAAK…Eaem_vYg; Domain=docs.foo.com; Path=/accounts; Expires=Wed, 13-Jan-2021 22:23:01 GMT; Secure; HttpOnly

 

 

is possible?

Posted

in unit ExtUtils exist a function with a secure attribute:

function TExtUtilCookiesSingleton.SetJS(Name, Value: String; Expires: TExtObject = nil; Path: String = ''; Domain: String = ''; Secure: Boolean =false): TExtFunction;

 

 

I'll look at the issue.

  • Administrators
Posted

TUniGUICookies.SetCookie() eveloded into:

 

procedure TUniGUICookies.SetCookie(const ACookieName, AValue: string; AExpires: TDateTime=0.0; ASecure: Boolean=False; AHTTPOnly:Boolean=False; const APath:string='/' );

I haven't tested it though.

 

This will be available in next build.

Posted

Thank you very much would be great if I could set secure attribute also to the session_ id cookie

 

TUniGUICookies.SetCookie() eveloded into:

 

procedure TUniGUICookies.SetCookie(const ACookieName, AValue: string; AExpires: TDateTime=0.0; ASecure: Boolean=False; AHTTPOnly:Boolean=False; const APath:string='/' );

I haven't tested it though.

 

This will be available in next build.

Posted

you know that something almost absurd, but I'm making as the application is for a bank and must meet certain safety criteria

 

Why is it needed?

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...