Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Can you tell me what the Enable global object security policy is really doing and what is the real risk of disabling

Guest
Mar 10, 2017 Mar 10, 2017

Can you tell me what the Enable global object security policy is really doing and what is the real risk of disabling

3.8K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Mar 10, 2017 Mar 10, 2017

This policy basically disables the use of a scripting object that is "global", ie accessible to all programs running from all contexts in the application. It can even be used to save information across sessions. Since this object is literal anyone can access anything that is saved in it, even without knowing the name of the items within it.

This can be a security risk in some cases, so you have the option to disable it.

A responsible developer would avoid saving sensitive data into this object, or

...
Translate
Community Expert ,
Mar 10, 2017 Mar 10, 2017
LATEST

This policy basically disables the use of a scripting object that is "global", ie accessible to all programs running from all contexts in the application. It can even be used to save information across sessions. Since this object is literal anyone can access anything that is saved in it, even without knowing the name of the items within it.

This can be a security risk in some cases, so you have the option to disable it.

A responsible developer would avoid saving sensitive data into this object, or make sure to encrypt (or hash, or at least obfuscate) it.

Keep in mind it might cause some scripts not to work correctly if you enable this option...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines