The most secure setting of virtual host (1)

  

1. How to make asp script run with system permission?

Modify the virtual directory corresponding to your asp script, and change "application protection" to " ;low"....

2. How to prevent asp trojan?

Asp trojan based on FileSystemObject component

cacls %systemroot%\\system32\\scrrun.dll /e /d guests //Forbidden guests use

regsvr32 scrrun.dll /u /s //delete

Asp Trojan based on shell.application component

cacls %systemroot% \\system32\\shell32.dll /e /d guests //But the guest use

regsvr32 shell32.dll /u /s //delete

3. How to encrypt asp files?

Free download from Microsoft to sce10chs.exe run directly to complete the installation process.

After the installation is complete, the screnc.exe file will be generated, which is a command tool that runs on DOS PROMAPT.

Run screnc - l vbscript source.asp destination.asp

Generate a new file containing cipher text ASP script destination.asp

Open it with Notepad and see """ Within, regardless of whether it is annotated, it becomes an unreadable ciphertext

but cannot encrypt Chinese.

4. How to extract urlscan from IISLockdown?

iislockd.exe /q /c /t:c:\\urlscan

5. How to prevent Content-Location header Exposed the internal IP address of the web server?

Execute

cscript c:\\inetpub\\adminscripts\\adsutil.vbs set w3svc/UseHostName True

Finally need to restart iis < Br>

6. How to solve HTTP500 internal error?

Iis http500 internal error most of the reasons

Mainly due to the iwam account password is not synchronized.

We can solve the problem by synchronizing the password of the iwam_myserver account in the com+ application.

Execute

cscript c:\\inetpub\\adminscripts\\synciwam.vbs -v

Copyright © Windows knowledge All Rights Reserved