403Webshell
Server IP : 209.209.40.120  /  Your IP : 216.73.217.112
Web Server : Microsoft-IIS/10.0
System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586
User : NEWWWW$ ( 0)
PHP Version : 8.3.30
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/internal/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /Program Files (x86)/Windows Kits/10/Source/10.0.19041.0/ucrt/internal/OutputDebugStringA.cpp
//
// OutputDebugStringA.cpp
//
//      Copyright (c) Microsoft Corporation. All rights reserved.
//
// Definition of __acrt_OutputDebugStringA.
//

#include <corecrt_internal_win32_buffer.h>

void WINAPI __acrt_OutputDebugStringA(
    LPCSTR const text
    )
{
    if (text == nullptr)
    {
        return;
    }
    size_t const text_size = strlen(text) + 1;
    if (text_size == 0)
    {
        return;
    }
    // Use alloca instead of heap, since this code is executed during asserts
    auto text_wide = (wchar_t*)_alloca(text_size * sizeof(wchar_t));
    size_t converted;
    if (mbstowcs_s(&converted, text_wide, text_size, text, text_size - 1) == 0)
    {
        OutputDebugStringW(text_wide);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit