Jump to content

Add security headers


bbm

Recommended Posts

Hi

Is there a way to add additional security headers in the response?

I had a security check. A few things were criticized. Examples for this are:
- Strict Transport Security
- Content Security Policy
- X-Frame Options
- .....

 

Best regards

Link to comment
Share on other sites

40 minutes ago, bbm said:

Hi

Is there a way to add additional security headers in the response?

I had a security check. A few things were criticized. Examples for this are:
- Strict Transport Security
- Content Security Policy
- X-Frame Options
- .....

 

Best regards

hello, I made topic for securing: 

there are many useful things, like:

procedure TUniServerModule.UniGUIServerModuleHTTPCommand(
  ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo;
  var Handled: Boolean);
begin
  AResponseInfo.CustomHeaders.AddValue('X-Frame-Options', 'DENY');
end;
 

 

Link to comment
Share on other sites

42 minutes ago, bbm said:

- .....

Can you tell me what else they want from the security check ?

To enhance our protection capabilities. I applied (tried) some recommendations from the security experts, but not all of them have a verified result.

Naturally, I expanded on the topic with some additional attempts at defense and principles.

I will be grateful if you upload the result of successfully used protection methods in the topic so that other colleagues can also use them.

Link to comment
Share on other sites

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...