????

Your IP : 216.73.216.152


Current Path : C:/Windows/System32/en-US/
Upload File :
Current File : C:/Windows/System32/en-US/AuthHost.exe.mui

MZ����@���	�!�L�!This program cannot be run in DOS mode.

$��<߱�R���R���R�U�����R�U�P���R�Rich��R�PEL�!.

PH9@ �*8.rdata�@@.rsrc0 ,@@6#�
T886#�$��8.rdata8x.rdata$zzzdbg �.rsrc$01�!�(.rsrc$02 q��i�8�X�Xd���06/����h��6#���8�P�p�������?��k������0�	H	X	h	x	�	��!���"X��"T�,#���;��T?k�MUI
ERROR.HTML����) �r��t=K~�&L߮�VhD�B��>\����MUIen-USCan't connect to the serviceCopyCutUndoPaste
Select all�00�PP4pp�pp�pp,(p(p��������������������x	��$L�M�t
���������0x�~�XAuthHost

Info

Start

Stop

Error

Warning

 Information

Verbose

,Navigation Start

0Navigation Complete

0Navigation Redirect

4Navigation New Window

0Navigation Delegate

DNavigation New Script Engine

4Navigation Terminate

,Navigation Error

,Security Problem

,Security Manager

Meta Tag

<Microsoft-Windows-WebAuth

 Operational

�AuthHost started at URL: <%1!S!> until matching termination URL: <%2!S!>.

XAuthHost started over at URL: <%1!S!>.

xAuthHost about to navigate (HTTP GET) to URL: <%1!S!>.

xAuthHost about to navigate (HTTP POST) to URL: <%1!S!>.

hAuthHost completed navigation to URL: <%1!S!>.

hAuthHost completed document from URL: <%1!S!>.

�AuthHost redirected to URL: <%1!S!> from URL: <%2!S!> with HttpStatusCode: %3.

�AuthHost about to navigate (new window) to URL: <%1!S!> from URL: <%2!S!>.

�AuthHost about to navigate with delegation to URL: <%1!S!>.

pAuthHost created new script engine at URL: <%1!S!>.

�AuthHost about to launch URL: <%1!S!> in browser from URL: <%2!S!>.

�AuthHost terminated navigation at URL: <%1!S!> matching termination URL: <%2!S!>.

�AuthHost terminated navigation with title: <%1!S!> at URL: <%2!S!> matching termination URL: <%3!S!>.

DNavigation cancelled by user.

�AuthHost terminated navigation with HTTP POST data: <%1!S!> at URL: <%2!S!> matching termination URL: <%3!S!>.

�AuthHost encountered a navigation error at URL: <%1!S!> with StatusCode: %2.

�AuthHost encountered a navigation error at URL: <%1!S!> with HttpStatusCode: %2.

�AuthHost encountered a security problem: %1 and will retry the navigation.

�AuthHost encountered a security problem: %1 and will abort the navigation

lAuthHost allowed UrlAction: %1 for URL: <%2!S!>.

pAuthHost disallowed UrlAction: %1 for URL: <%2!S!>.

|AuthHost used default for UrlAction: %1 for URL: <%2!S!>.

�AuthHost prohibited UrlAction of Java permissions for URL: <%1!S!>.

tAuthHost blocked credential prompt for URL: <%1!S!>.

�AuthHost allowed credential silent logon for URL: <%1!S!>.

|AuthHost allowed credential user prompt for URL: <%1!S!>.

�AuthHost allowed UrlAction for ActiveX object: %1 for URL: <%2!S!>.

�AuthHost disallowed UrlAction for ActiveX object: %1 for URL: <%2!S!>.

�AuthHost allowed UrlAction for ActiveX object: %1 for URL: <%2!S!>.

�AuthHost disallowed UrlAction for ActiveX object: %1 for URL: <%2!S!>.

�AuthHost encountered Meta Tag: mswebdialog-title with content: <%1!S!>.

�AuthHost resolved Meta Tag: mswebdialog-logo to URL: <%1!S!>.

�AuthHost converted Meta Tag: mswebdialog-header-color with content: <%1!S!> to value: %2.

�AuthHost unable to convert Meta Tag: mswebdialog-header-color with content: <%1!S!>.

�AuthHost resolved Meta Tag: mswebdialog-newwindowurl to URL: <%1!S!>.

lAuthHost downloaded logo image from URL: <%1!S!>.

�AuthHost encountered an error downloading logo image from URL: <%1!S!> with Error: %2.

�4VS_VERSION_INFO��
|O
|O?�StringFileInfo�040904B0LCompanyNameMicrosoft CorporationNFileDescriptionMicrosoft AuthHosth$FileVersion10.0.20348.1 (WinBuild.160101.0800)2	InternalNameAuthHost�.LegalCopyright� Microsoft Corporation. All rights reserved.JOriginalFilenameAuthHost.exe.muij%ProductNameMicrosoft� Windows� Operating System>
ProductVersion10.0.20348.1DVarFileInfo$Translation	�<!-- File copied from //depot/<branch>/security/WebAuth/AuthHost/Exe/error.html -->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title>Error</title>
    <meta charset="UTF-8" />
    <meta name="mswebdialog-title" content="{3357C6C4-F2BD-4F41-8095-C8883B855ADD}" />
    <style>
        html, html * {
            margin: 0;
            padding: 0;
        }

        html {
            overflow: hidden;
        }

        div.containerCenter {
            position: absolute;
            direction: ltr; /*localization: change to rtl when needed*/
            top: 50%;
            left: 50%;
            font-family: "Segoe UI Semilight";
            font-size: 12pt;
            margin-right: -50%;
            font-weight: bold; 
            transform: translate(-50%, -50%) 
        }
    </style>
    <script type="text/javascript">
        // Given a hex color returns a RGBA string (in bbggrr format)
        function getRGBAColor(hexValue, opacity) {
            var result = "";
            if (hexValue && hexValue.length === 6) {
                var blue = parseInt(hexValue.substring(0, 2), 16);
                var green = parseInt(hexValue.substring(2, 4), 16);
                var red = parseInt(hexValue.substring(4, 6), 16);

                if (!isNaN(green) && !isNaN(green) && !isNaN(blue)) {
                    // rgba() doesn't work in authhost.exe.
                    result = "rgb(" + red + "," + green + "," + blue + ")";
                }
            }
            return result;
        }

        // Returns a query string parameter value for a given key
        function queryString(key) {
            var location = document.location.search.substring(1, document.location.search.length);
            var value = false;
            var params = location.split("&");
            var length = params.length;
            for (var i = 0; i < params.length; i++) {
                var name = params[i].substring(0, params[i].indexOf("="));
                if (name == key) {
                    value = params[i].substring(params[i].indexOf("=") + 1);
                }
            }
            return (value ? value : "");
        }

        window.onload = function() {
            var foreground = queryString("fgcolor");
            var background = queryString("bgcolor");
            document.body.style.color = getRGBAColor(foreground, 1);
            document.body.style.backgroundColor = getRGBAColor(background, 1);
            document.onselectstart = function () { return false; }; // Disable text selection
        };
    </script>
</head>
<body>
    <div class=containerCenter>
        <p id="error_text">We can't connect to the service you need right now. Check your network connection or try this again later.</p>
    </div>
</body>
</html>
PPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDINGPADDINGXXPADDING