Reference: https://www.adobe.com/devnet-docs/acrobatetk/tools/AppSec/javascript.html
There are a growing number of vulnerabilities in Adobe Software, and if new releases are released, we do not want or limit the conditions to be updated, and for security we can turn off Adobereader JavaScript functionality.
1, manual shutdown JavaScript function method:
Open the Adobereader software, and in edit >> preferences, navigate to JavaScript and turn off JavaScript by ticking the "Enable Acrobat JavaScript" on the right.
2, registry off JavaScript function method (take AdobeReader9.4 as an example)
①. Start >> run >> enter regedit to open the Registry Editor,
②. Navigate to "[Hkey_current_user\software\adobe\acrobat Reader\9.0\jsprefs]" and find "Benablejs" =dword on the right:00000001" , modified to "Benablejs" =dword:00000000".
3, stored as "reg" file, import into the registry method
You can modify the registry in the "2" method, make the file to ". reg" as the suffix name, and then double-click Run to import into the registry.
Windows Registry Editor Version 5.00
[Hkey_current_user\software\adobe\acrobat Reader\9.0\jsprefs]
"Benablejs" =dword:00000000
Copy the red section above into Notepad and save it as "Disabledadobereaderjs.reg".
4. How to disable JavaScript functionality for other Adobe software in the registry
Refer to the following method to disable JavaScript for other adobe software using the registry
[hkcu\software\adobe\< product name >\< version number >\jsprefs]
"Benablejs" =dword:00000000
Note: The product name and version number can be found in the registry on the computer where the product is installed
5, with batch processing can achieve automated processing
①. Create a new "Disabledadobereaderjs.bat", Notepad open, copy the following two lines of red font.
@echo off
regedit/s Disabledadobereaderjs.reg
②. Single-machine environment, you can put "Disabledadobereaderjs.bat" and "Disabledadobereaderjs.reg" in the boot-up item.
③. In a domain environment, you can add the above two files to the domain computer startup script by modifying the domain policy, enabling the domain environment to uniformly disable the Adobe software JavaScript script to run.
This article is from the "Water Curtain Blog" blog, please be sure to keep this source http://3chou.blog.51cto.com/4578419/1855131
Registry disable JavaScript scripts for Adobe Software to run