424 out of 455 rated this helpful - Rate this topic

Registering an Application to a URL Protocol

Updated: April 2011

The About Asynchronous Pluggable Protocols article describes how to develop handlers for URL protocols. In some cases, it may be desirable to invoke another application to handle a custom protocol. To do so, register the existing application as a URL Protocol handler. After the application has successfully launched, it can use command-line parameters to retrieve the URL that launched it. These settings apply to protocol handlers launched from within Windows Internet Explorer and from Windows Explorer using the Run... command (Windows logo key+R).

security note Security Alert  Applications that handle URL protocols must consider how to respond to malicious data. Because handler applications can receive data from untrusted sources, the URL and other parameter values passed to the application may contain malicious data that attempts to exploit the handling application.

This topic contains the following sections:

Registering the Application Handling the Custom Protocol

To register an application to handle a particular URL protocol, add a new key, along with the appropriate subkeys and values, to HKEY_CLASSES_ROOT. The root key must match the protocol scheme that is being added. For instance, to add an "alert:" protocol, add an alert key to HKEY_CLASSES_ROOT, as follows:

HKEY_CLASSES_ROOT
     alert
          URL Protocol = ""

Under this new key, the URL Protocol string value indicates that this key declares a custom protocol handler. Without this key, the handler application will not launch. The value should be an empty string.

Keys should also be added for DefaultIcon and shell. The Default string value of the DefaultIcon key must be the file name to use as an icon for this new URL protocol. The string takes the form "path, iconindex" with a maximum length of MAX_PATH. The name of the first key under the shell key should be an action verb, such as open. Under this key, a command key or a DDEEXEC key indicate how the handler should be invoked. The values under the command and DDEEXEC keys describe how to launch the application handling the new protocol.

Finally, the Default string value should contain the display name of the new protocol. The following example shows how to register an application, alert.exe in this case, to handle the alert protocol.

HKEY_CLASSES_ROOT
     alert
          (Default) = "URL:Alert Protocol"
          URL Protocol = ""
          DefaultIcon
               (Default) = "alert.exe,1"
          shell
               open
                    command
                         (Default) = "C:\Program Files\Alert\alert.exe" "%1"

When a user clicks a link registered to your custom URL protocol, Internet Explorer launches the registered URL protocol handler. If the specified open command specified in the registry contains a %1 parameter, Internet Explorer passes the URI to the registered protocol handler application.

Launching the Handler

By adding the above settings to the registry, navigating to URLs such as alert:Hello%20World would cause an attempt to launch alert.exe with the complete URL on the command line. Internet Explorer decodes the URL, but the Windows Run... command does not. If a URL contains spaces, it may be split across more than one argument on the command line.

For example, if the link above is followed through Internet Explorer, the command line would be:


"C:\Program Files\Alert\alert.exe" "alert:Hello World"

If this link is followed through Windows Explorer, the Windows Run command, or some other application, the command line would be:


"C:\Program Files\Alert\alert.exe" "alert:Hello%20World"

Because Internet Explorer will decode all percent-encoded octets in the URL before passing the URL to ShellExecute, URLs such as alert:%3F? will be given to the alert application protocol handler as alert:??. The handler won't know that the first question mark was percent-encoded. To avoid this issue, application protocol handlers and their associated URL scheme must not rely on encoding. If encoding is necessary, protocol handlers should use another type of encoding that is compatible with URL syntax, such as Base64 encoding. Double percent-encoding is not a perfect solution either; if the application protocol URL isn't processed by Internet Explorer, it will not be decoded.

When ShellExecute executes the application protocol handler with the URL on the command line, any non-encoded spaces, quotes, and slashes in the URL will be interpreted as part of the command line. This means that if you use C/C++'s argc and argv to determine the arguments passed to your application, the URL may be broken across multiple parameters. To mitigate this issue:

  • Avoid spaces, quotes, or backslashes in your URL
  • Quote the %1 in the registration ("%1" as written in the 'alert' example registration)

However, avoidance doesn't completely solve the problem of quotes in the URL or a backslash at the end of the URL.

Internet Explorer 9. An application protocol handler can disable URL percent decoding by adding the UseOriginalUrlEncoding setting to the registration for the protocol. When this setting is set to (DWORD) 1, the command line is not percent decoded by Internet Explorer when passed to the protocol handler.

Warning  The use (or lack) of URL percent encoding does not protect a protocol handler from malicious input. Care must be taken to properly validate input from untrusted sources.

Security Issues

As noted above, the URL that is passed to an application protocol handler might be broken across multiple parameters. Malicious parties could use additional quotation marks or backslash characters to pass additional command-line parameters. For this reason, application protocol handlers should assume that any parameters on the command line could come from malicious parties, and carefully validate them. Applications that could initiate dangerous actions based on external data must first confirm those actions with the user. In addition, handling applications should be tested with URLs that are overly long or contain unexpected (or undesirable) character sequences.

For more information, please see Writing Secure Code.

Example Protocol Handler

The following sample code contains a simple C# console application demonstrating one way to implement a protocol handler for the alert protocol.


using System;
using System.Collections.Generic;
using System.Text;

namespace Alert
{
  class Program
  {
    static string ProcessInput(string s)
    {
       // TODO Verify and validate the input 
       // string as appropriate for your application.
       return s;
    }

    static void Main(string[] args)
    {
      Console.WriteLine("Alert.exe invoked with the following parameters.\r\n");
      Console.WriteLine("Raw command-line: \n\t" + Environment.CommandLine);

      Console.WriteLine("\n\nArguments:\n");
      foreach (string s in args)
      {
        Console.WriteLine("\t" + ProcessInput(s));
      }
      Console.WriteLine("\nPress any key to continue...");
      Console.ReadKey();
    }
  }
}

When invoked with the URL alert:"Hello%20World" (note extra quotes) from Internet Explorer, the program responds with:


Alert.exe invoked with the following parameters.

Raw command-line:
        "C:\Program Files\Alert\alert.exe" "alert:"Hello World""


Arguments:

        alert:Hello
        World

Press any key to continue...

Related Topics

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ
Can we register multiple application by using the same prefix and allow users select an app to run
Dear All, I've created a URL protocol for my app successfully. Because my app uses URL prefix "vnc://", this may conflict with other VNCs if they also register URL protocol too. Can we have a way to register multiple application by using the same prefix and allow users select an app to run? Thanks, Stephen
Some Executables Disabled
In Windows 7 / IE 9, c:\windows\system32\cmd.exe cannot be invoked as the handler. In my case, I was trying to pass the URI to a batch file, so my command was "c:\windows\system32\cmd.exe /c c:\mystuff\foohandler.bat "%1"". I was able to work around this by making a copy of cmd.exe. My command became "c:\mystuff\foohandler_cmd.exe /c c:\mystuff\foohandler.bat "%1"", which worked. I don't know if this restriction comes from Windows 7 or IE9, and I would not be surprised if other command processors, like cscript.exe, are likewise disabled.
How to remove "Open Application - Security Warning" window in IE
I have registered a URL protocol, and it works well. But when i invoke my appliction in the web page, ie open a security warning dialog. So how to remove "Open Application - Security Warning" window in IE with codes. Thanks.
write as a service?
Hi;

Is there a way to write a protocol handler as a service?

thanks - dave
Working DIR?
Hello.

Q: Is there a way to set the Working Directory for the program in the registry when launched from url?
How to warn a user on a computer on which URL protocol is not registered?

I have registered a URL protocol along with the application installation, and it works flawlessly on both IE and firefox. The problem is that on a computer on which the application is not installation( neither is the URL protocol registered), and the user clicks the URL link. I would like the IE to open a javascript windows, or a web page, or something else, to give the user a choice to install the application.

Q: How to do that?

A: Sadly, there's no way to do this directly (e.g. no window.navigator.supportsProtocol() method). You could register in the VersionVector and use Conditional Comments in IE to detect the presence of your handler.


IE only?
Q: Will this work on IE only, or will it be invoked for all apps using HTTP such as firefox/Chrome etc?
A: All major browsers on Windows will pick up Application Protocols registered in this way.
path to exe dynamically?
Is there no way to dynamically set the path to the .exe file that the setup project will generate? I can only specify the absolute path there, but what if the user changes that directory during install time?
Automated protocol handlers from Ruby
I've turned that sample app into a simple wrapper for Ruby script, see the details and compiled app here http://github.com/dolzenko/windows_protocol_handlers
Custom URL works, but how to make it clickable?
I wonder, is there a way to have this custom URL highlighted by applications like Outlook Express, Outlook, Windows Messenger, and such? I mean, if you receive an email and view it in OE, and the email has a URL, OE will highlight the URL and make it clickable even though this is plain text. So I wonder, is the list of what it recognizes as URL hardcoded, or it takes it somehow from the system? same with Outlook etc. I created custom URL and it worked OK from Start menu, but Outlook did not highlight it.

==================

Try converting the custom URL with tinyurl.com. It will return an http protocol URL and will forward to your custom URL (making it clickable in Outlook, etc).
-Donavon
Blank IE window again
Following up on an earlier question: we have protected mode disabled for the local intranet zone for IE 7 on Vista. If you click on a mailto: URL on a page on our local intranet, IE opens up a separate window for the mailto: URL which displays an "Internet Explorer cannot display the web page" error. Several seconds later Outlook opens up a new email window as expected. Is there any way to prevent this second IE window from opening? The problem seems to be that IE insists on opening the mailto: URL in the Internet zone even though the page hosting it is in the local intranet zone.
URL decoding
URL Decoding is performed by IE, but not by the Windows Shell. So you get different results when putting alert:hello%20world in IE’s address bar vs. in START > Run.
  • 6/20/2008
  • Dee
Internet Explorer 6 Return an Error

So far this works great on IE7 using the "command" key, however for some reason it does not work in IE6. I'm getting an "Invalid Systax Error" when I click on the link from within the browser. Everything works great if I type the URL on the "START > Run..." window. I'm not sure if the "DDEEXEC" key is required by IE6 though. If so, please can you provide an example?

Tool for regestering URL protocols

I have built a small tool for regestering URL protocols: http://www.codeplex.com/CustomURL


This tool will help you register URL protocols and lauch a specific application when a URL is executed. This tool is free and open source.

Blank IE Window

This works great except that an IE window is left open showing the URI that was invoked. Is there any way (e.g. a value in the registry, EditFlags perhaps) to make this window close or not appear in the first place?

=> The problem with the blank IE window may be related to the zone where the page that hosts the link is located. If you test a html page form the file system (file://... ) try to host the page in IIS instead (so that it is http://...) - this worked for me.