Vadim Smirnov

Forum Replies Created

Viewing 15 posts - 1,156 through 1,170 (of 1,506 total)
  • Author
    Posts
  • in reply to: Verify digital signature of an executable file #6227
    Vadim Smirnov
    Keymaster

      If you look inside sigcheck.exe you will find that it works through wintrust.dll exported functions.

      .text:00402260 sub_402260      proc near               ; CODE XREF: _wmain:loc_402016p
      .text:00402260                 mov     al, byte_425860
      .text:00402265                 push    ebx
      .text:00402266                 test    al, al
      .text:00402268                 push    esi
      .text:00402269                 jnz     loc_402339
      .text:0040226F                 mov     ebx, ds:LoadLibraryW
      .text:00402275                 push    offset aWintrust_dll ; "Wintrust.dll"
      .text:0040227A                 mov     byte_425860, 1
      .text:00402281                 call    ebx ; LoadLibraryW
      .text:00402283                 mov     esi, eax
      .text:00402285                 test    esi, esi
      .text:00402287                 jnz     short loc_40228E
      .text:00402289                 pop     esi
      .text:0040228A                 xor     al, al
      .text:0040228C                 pop     ebx
      .text:0040228D                 retn
      .text:0040228E ;
      <hr class="bbcode_rule" />
      .text:0040228E
      .text:0040228E loc_40228E:                             ; CODE XREF: sub_402260+27j
      .text:0040228E                 push    edi
      .text:0040228F                 mov     edi, ds:GetProcAddress
      .text:00402295                 push    offset aWinverifytrust ; "WinVerifyTrust"
      .text:0040229A                 push    esi             ; hModule
      .text:0040229B                 call    edi ; GetProcAddress
      .text:0040229D                 push    offset aWthelpergetpro ; "WTHelperGetProvSignerFromChain"
      .text:004022A2                 push    esi             ; hModule
      .text:004022A3                 mov     WinVerifyTrustPtr, eax
      .text:004022A8                 call    edi ; GetProcAddress
      .text:004022AA                 push    offset aWthelperprovda ; "WTHelperProvDataFromStateData"
      .text:004022AF                 push    esi             ; hModule
      .text:004022B0                 mov     dword_425834, eax
      .text:004022B5                 call    edi ; GetProcAddress
      .text:004022B7                 push    offset aCryptcatadminr ; "CryptCATAdminReleaseContext"
      .text:004022BC                 push    esi             ; hModule
      .text:004022BD                 mov     dword_425838, eax
      .text:004022C2                 call    edi ; GetProcAddress
      .text:004022C4                 push    offset aCryptcatadmi_0 ; "CryptCATAdminReleaseCatalogContext"
      .text:004022C9                 push    esi             ; hModule
      .text:004022CA                 mov     dword_42583C, eax
      .text:004022CF                 call    edi ; GetProcAddress
      .text:004022D1                 push    offset aCryptcatcatalo ; "CryptCATCatalogInfoFromContext"
      .text:004022D6                 push    esi             ; hModule
      .text:004022D7                 mov     dword_42585C, eax
      .text:004022DC                 call    edi ; GetProcAddress
      .text:004022DE                 push    offset aCryptcatadmine ; "CryptCATAdminEnumCatalogFromHash"
      .text:004022E3                 push    esi             ; hModule
      .text:004022E4                 mov     dword_425854, eax
      .text:004022E9                 call    edi ; GetProcAddress
      .text:004022EB                 push    offset aCryptcatadminc ; "CryptCATAdminCalcHashFromFileHandle"
      .text:004022F0                 push    esi             ; hModule
      .text:004022F1                 mov     dword_425848, eax
      .text:004022F6                 call    edi ; GetProcAddress
      .text:004022F8                 push    offset aCryptcatadmina ; "CryptCATAdminAcquireContext"
      .text:004022FD                 push    esi             ; hModule
      .text:004022FE                 mov     dword_425840, eax
      .text:00402303                 call    edi ; GetProcAddress
      .text:00402305                 push    offset aCryptcatadmi_1 ; "CryptCATAdminAddCatalog"
      .text:0040230A                 push    esi             ; hModule
      .text:0040230B                 mov     dword_42584C, eax
      .text:00402310                 call    edi ; GetProcAddress
      .text:00402312                 push    offset aWinverifytrust ; "WinVerifyTrust"
      .text:00402317                 push    esi             ; hModule
      .text:00402318                 mov     dword_425844, eax
      .text:0040231D                 call    edi ; GetProcAddress
      .text:0040231F                 push    offset aCertnametostrw ; "CertNameToStrW"
      .text:00402324                 push    offset aCrypt32_dll ; "crypt32.dll"
      .text:00402329                 mov     WinVerifyTrustPtr, eax
      .text:0040232E                 call    ebx ; LoadLibraryW
      .text:00402330                 push    eax             ; hModule
      .text:00402331                 call    edi ; GetProcAddress
      .text:00402333                 mov     dword_425858, eax
      .text:00402338                 pop     edi
      .text:00402339
      .text:00402339 loc_402339:                             ; CODE XREF: sub_402260+9j
      .text:00402339                 mov     ecx, dword_42584C
      .text:0040233F                 xor     eax, eax
      .text:00402341                 test    ecx, ecx
      .text:00402343                 pop     esi
      .text:00402344                 pop     ebx
      .text:00402345                 setnz   al
      .text:00402348                 retn
      .text:00402348 sub_402260      endp

      WinVerifyTrust is called with WINTRUST_ACTION_GENERIC_VERIFY_V2 action ID.

      A piece of code which demonstrates usage of WinVerifyTrust can be found in the Platform SDK samples (vertrust.cpp):

      <br />
      /////////////////////////////////////////////////////////////////////////////<br />
      // IsFileTrusted<br />
      //<br />
      itvEnum IsFileTrusted(LPCWSTR lpwFile, HWND hwndParent, DWORD dwUIChoice, bool *pfIsSigned, PCCERT_CONTEXT *ppcSigner)<br />
      {<br />
      char szDebugOutput[MAX_STR_LENGTH] = {0};<br />
      <br />
      itvEnum itv = itvUnTrusted;<br />
      <br />
      if (pfIsSigned)<br />
      *pfIsSigned = false;<br />
      if (ppcSigner)<br />
      *ppcSigner  = 0;<br />
      <br />
      GUID guidAction = WINTRUST_ACTION_GENERIC_VERIFY_V2;<br />
      <br />
      WINTRUST_FILE_INFO sWintrustFileInfo;<br />
      WINTRUST_DATA      sWintrustData;<br />
      HRESULT            hr;<br />
      <br />
      memset((void*)&sWintrustFileInfo, 0x00, sizeof(WINTRUST_FILE_INFO)); // zero out<br />
      memset((void*)&sWintrustData, 0x00, sizeof(WINTRUST_DATA)); // zero out<br />
      <br />
      sWintrustFileInfo.cbStruct = sizeof(WINTRUST_FILE_INFO);<br />
      sWintrustFileInfo.pcwszFilePath = lpwFile;<br />
      sWintrustFileInfo.hFile = NULL;<br />
      <br />
      sWintrustData.cbStruct            = sizeof(WINTRUST_DATA);<br />
      sWintrustData.dwUIChoice          = dwUIChoice;<br />
      sWintrustData.fdwRevocationChecks = WTD_REVOKE_NONE;<br />
      sWintrustData.dwUnionChoice       = WTD_CHOICE_FILE;<br />
      sWintrustData.pFile               = &sWintrustFileInfo;<br />
      sWintrustData.dwStateAction       = (ppcSigner) ? WTD_STATEACTION_VERIFY : 0;<br />
      <br />
      HMODULE hWinTrust = LoadLibrary(WINTRUST_DLL);<br />
      if (!hWinTrust)<br />
      {<br />
      // WinTrust is unavailable on the machine<br />
      return itvWintrustNotOnMachine;<br />
      }<br />
      PFnWinVerifyTrust pfnWinVerifyTrust = (PFnWinVerifyTrust)GetProcAddress(hWinTrust, WINTRUSTAPI_WinVerifyTrust);<br />
      PFnWTHelperProvDataFromStateData pfnWTHelperProvDataFromStateData= (PFnWTHelperProvDataFromStateData)GetProcAddress(hWinTrust, WINTRUSTAPI_WTHelperProvDataFromStateData);<br />
      PFnWTHelperGetProvSignerFromChain pfnWTHelperGetProvSignerFromChain = (PFnWTHelperGetProvSignerFromChain)GetProcAddress(hWinTrust, WINTRUSTAPI_WTHelperGetProvSignerFromChain);<br />
      PFnWTHelperGetProvCertFromChain pfnWTHelperGetProvCertFromChain = (PFnWTHelperGetProvCertFromChain)GetProcAddress(hWinTrust, WINTRUSTAPI_WTHelperGetProvCertFromChain);<br />
      if (!pfnWinVerifyTrust || !pfnWTHelperProvDataFromStateData || !pfnWTHelperGetProvSignerFromChain || !pfnWTHelperGetProvCertFromChain)<br />
      {<br />
      // WinTrust is unavailable on the machine<br />
      FreeLibrary(hWinTrust);<br />
      return itvWintrustNotOnMachine;<br />
      }<br />
      <br />
      hr = pfnWinVerifyTrust(/* UI Window Handle */ (dwUIChoice == WTD_UI_NONE) ? (HWND)INVALID_HANDLE_VALUE : hwndParent, &guidAction, &sWintrustData);<br />
      DebugMsg("[WVT] WVT returned 0x%Xn", hr);<br />
      <br />
      itv = (TRUST_E_PROVIDER_UNKNOWN == hr) ? itvWintrustNotOnMachine : ((S_OK == hr) ? itvTrusted : itvUnTrusted);<br />
      <br />
      if (itvWintrustNotOnMachine == itv)<br />
      {<br />
      // release state data<br />
      sWintrustData.dwUIChoice = WTD_UI_NONE;<br />
      sWintrustData.dwStateAction = WTD_STATEACTION_CLOSE;<br />
      pfnWinVerifyTrust((HWND)INVALID_HANDLE_VALUE, &guidAction, &sWintrustData);<br />
      <br />
      FreeLibrary(hWinTrust);<br />
      return itv; // return immediately<br />
      }<br />
      <br />
      if (pfIsSigned)<br />
      *pfIsSigned = (TRUST_E_NOSIGNATURE == hr) ? false : true;<br />
      <br />
      if (TRUST_E_NOSIGNATURE == hr)<br />
      {<br />
      // release state data<br />
      sWintrustData.dwUIChoice = WTD_UI_NONE;<br />
      sWintrustData.dwStateAction = WTD_STATEACTION_CLOSE;<br />
      pfnWinVerifyTrust((HWND)INVALID_HANDLE_VALUE, &guidAction, &sWintrustData);<br />
      <br />
      FreeLibrary(hWinTrust);<br />
      return itv;<br />
      }<br />
      <br />
      if (ppcSigner)<br />
      {<br />
      CRYPT_PROVIDER_DATA const *psProvData     = NULL;<br />
      CRYPT_PROVIDER_SGNR       *psProvSigner   = NULL;<br />
      CRYPT_PROVIDER_CERT       *psProvCert     = NULL;<br />
      <br />
      // grab the provider data<br />
      psProvData = pfnWTHelperProvDataFromStateData(sWintrustData.hWVTStateData);<br />
      if (psProvData)<br />
      {<br />
      // grab the signer data from the CRYPT_PROV_DATA<br />
      psProvSigner = pfnWTHelperGetProvSignerFromChain((PCRYPT_PROVIDER_DATA)psProvData, 0 /*first signer*/, FALSE /* not a counter signer */, 0);<br />
      if (psProvSigner)<br />
      {<br />
      // grab the signer cert from CRYPT_PROV_SGNR (pos 0 = signer cert; pos csCertChain-1 = root cert)<br />
      psProvCert = pfnWTHelperGetProvCertFromChain(psProvSigner, 0);<br />
      }<br />
      }<br />
      <br />
      if (!psProvCert)<br />
      {<br />
      // some failure in obtaining the signer cert data<br />
      *ppcSigner = 0;<br />
      }<br />
      else<br />
      {<br />
      // duplicate the cert<br />
      HMODULE hCrypt32 = LoadLibrary(CRYPT32_DLL);<br />
      if (hCrypt32)<br />
      {<br />
      PFnCertDuplicateCertificateContext pfnCertDuplicateCertificateContext = (PFnCertDuplicateCertificateContext)GetProcAddress(hCrypt32, CRYPTOAPI_CertDuplicateCertificateContext);<br />
      if (pfnCertDuplicateCertificateContext)<br />
      *ppcSigner = pfnCertDuplicateCertificateContext(psProvCert->pCert);<br />
      FreeLibrary(hCrypt32);<br />
      }<br />
      }<br />
      <br />
      // release state data<br />
      sWintrustData.dwUIChoice = WTD_UI_NONE;<br />
      sWintrustData.dwStateAction = WTD_STATEACTION_CLOSE;<br />
      pfnWinVerifyTrust((HWND)INVALID_HANDLE_VALUE, &guidAction, &sWintrustData);<br />
      }<br />
      <br />
      FreeLibrary(hWinTrust);<br />
      return itv;<br />
      }<br />
      

      Hope it helps…

      in reply to: WinpkFilter news/updates. #5507
      Vadim Smirnov
      Keymaster

        WinpkFilter 3.0.2 released. This service release includes:

        1. Few changes in API DLL required for Windows Vista support
        2. Installation scripts are updated to properly install drivers on Windows Vista

        Important note:
        For Windows Vista and later versions of the Windows family of operating systems, kernel-mode software must have a digital signature to load on x64-based computer systems. WinpkFilter drivers are not signed and in order to test them on Vista x64 you should press F8 during system boot and choose Disable Driver Signature Enforcement option. For the commercial software you’d have to obtain Code Signing certificate from Verysign.

        If you are eligible for a free update, please send the following details to [email protected] to receive an update instruction:

        1. Your order ID.
        2. An approximate date of purchasing.

        in reply to: Downloading file (NDIS IM) #6222
        Vadim Smirnov
        Keymaster

          Вот типовой HTTP GET пакет. Где искать URL видно вполне наглядно. Детали смотри в спецификации HTTP.


          00000000 00 15 E9 76 C3 A0 00 16 E6 5C CA A8 08 00 45 00 ...v.........E.
          00000010 03 66 3C C2 40 00 80 06 9E A3 C0 A8 01 65 40 FB .f<[email protected]@.
          00000020 19 24 43 FF 00 50 D1 1A 24 E5 1D 0E F2 A5 50 18 .$C..P..$.....P.
          00000030 FF FF 1F 85 00 00 47 45 54 20 2F 20 48 54 54 50 ......GET./.HTTP
          00000040 2F 31 2E 31 0D 0A 48 6F 73 74 3A 20 77 77 77 2E /1.1..Host:.www.
          00000050 6E 74 6B 65 72 6E 65 6C 2E 63 6F 6D 0D 0A 55 73 ntkernel.com..Us
          00000060 65 72 2D 41 67 65 6E 74 3A 20 4D 6F 7A 69 6C 6C er-Agent:.Mozill
          00000070 61 2F 35 2E 30 20 28 57 69 6E 64 6F 77 73 3B 20 a/5.0.(Windows;.
          00000080 55 3B 20 57 69 6E 64 6F 77 73 20 4E 54 20 35 2E U;.Windows.NT.5.
          00000090 31 3B 20 72 75 3B 20 72 76 3A 31 2E 38 2E 31 2E 1;.ru;.rv:1.8.1.
          000000A0 33 29 20 47 65 63 6B 6F 2F 32 30 30 37 30 33 30 3).Gecko/2007030
          000000B0 39 20 46 69 72 65 66 6F 78 2F 32 2E 30 2E 30 2E 9.Firefox/2.0.0.
          000000C0 33 0D 0A 41 63 63 65 70 74 3A 20 74 65 78 74 2F 3..Accept:.text/
          000000D0 78 6D 6C 2C 61 70 70 6C 69 63 61 74 69 6F 6E 2F xml,application/
          000000E0 78 6D 6C 2C 61 70 70 6C 69 63 61 74 69 6F 6E 2F xml,application/
          000000F0 78 68 74 6D 6C 2B 78 6D 6C 2C 74 65 78 74 2F 68 xhtml+xml,text/h
          00000100 74 6D 6C 3B 71 3D 30 2E 39 2C 74 65 78 74 2F 70 tml;q=0.9,text/p
          00000110 6C 61 69 6E 3B 71 3D 30 2E 38 2C 69 6D 61 67 65 lain;q=0.8,image
          00000120 2F 70 6E 67 2C 2A 2F 2A 3B 71 3D 30 2E 35 0D 0A /png,*/*;q=0.5..
          00000130 41 63 63 65 70 74 2D 4C 61 6E 67 75 61 67 65 3A Accept-Language:
          00000140 20 72 75 2D 72 75 2C 72 75 3B 71 3D 30 2E 38 2C .ru-ru,ru;q=0.8,
          00000150 65 6E 2D 75 73 3B 71 3D 30 2E 35 2C 65 6E 3B 71 en-us;q=0.5,en;q
          00000160 3D 30 2E 33 0D 0A 41 63 63 65 70 74 2D 45 6E 63 =0.3..Accept-Enc
          00000170 6F 64 69 6E 67 3A 20 67 7A 69 70 2C 64 65 66 6C oding:.gzip,defl
          00000180 61 74 65 0D 0A 41 63 63 65 70 74 2D 43 68 61 72 ate..Accept-Char
          00000190 73 65 74 3A 20 77 69 6E 64 6F 77 73 2D 31 32 35 set:.windows-125
          000001A0 31 2C 75 74 66 2D 38 3B 71 3D 30 2E 37 2C 2A 3B 1,utf-8;q=0.7,*;
          000001B0 71 3D 30 2E 37 0D 0A 4B 65 65 70 2D 41 6C 69 76 q=0.7..Keep-Aliv
          000001C0 65 3A 20 33 30 30 0D 0A 43 6F 6E 6E 65 63 74 69 e:.300..Connecti
          000001D0 6F 6E 3A 20 6B 65 65 70 2D 61 6C 69 76 65 0D 0A on:.keep-alive..
          ...
          in reply to: Downloading file (NDIS IM) #6220
          Vadim Smirnov
          Keymaster

            Изначально я понял задачу несколько по другому: нужно сохранить копию некого файла, который другое приложение скачивает. Если речь о том чтобы из IM драйвера скачать файл по HTTP, то придется реализовать TCP/IP стек + HTTP протокол. Вместо реализации собственного TCP/IP можно использовать TDI оригинального стека, но HTTP писать придется по любому.

            in reply to: Downloading file (NDIS IM) #6218
            Vadim Smirnov
            Keymaster

              Весь сетевой трафик идет через IM драйвер, в том числе пойдут и данные скачиваемого файла. Правда построить файл из данных пакетов будет не просто, придется пропарсить TCP/HTTP заголовки и выделить данные принадлежащие файлу. По поводу парсинга заголовков копай в сторону сетвых сниферов в исходниках…

              in reply to: Using WinpkFilter to modify the payload of TCP/IP packets #6214
              Vadim Smirnov
              Keymaster

                IP fragmentation does not cares about upper protocols, so only first fragment of the fragmented TCP packet has a TCP header. You should buffer fragments by IP ID, not by TCP sequence number and so on…

                I would advise to look through some good book devoted TCP/IP protocols before trying to implement something like this. You definitely need better understanding of the networking basics. I would recommend Richard Stevens books (TCP/IP Illustrated), but ofc this is not the only option.

                in reply to: Does WinPkFilter contain any IPSec or crypto code? #6217
                Vadim Smirnov
                Keymaster

                  I gather the answer is “no”. WinpkFilter is just a way to enable me to easily add such code. True??

                  Yes, thats right.

                  Vadim Smirnov
                  Keymaster

                    Well, WinpkFilter was designed mainly for packet filtering solutions but not for spoofing. Interface functions for sending packets are designed as non-blocking for better performance and sending packets through the WinpkFilter at the rate above the network bandwidth causes packet loss (this caused by network limits, not the WinpkFilter internal queue size). Basically you can change your application to send packets on some fixed realistic rate to avoid packet loss. This can be implemented with a waitable periodic timer, which callback routine would calculate time passed since last fireup and how many data should be passed during this time at the given rate. Then send calculated amount of data on the network and requeue the timer. Such approach will allow you to send packets on the network at a given rate which should be chosen below the real network bandwidth.

                    Vadim Smirnov
                    Keymaster

                      payload

                      Correct for TCP packet, for UDP an example it would be

                      payload

                      and so on…

                      Is this ethernet checksum (http://folk.uio.no/od/tcp-ip-intro/subsection3_2_3.html) something which I need to care about (in addition to the length / checksum fields in the other headers)? Or is this computed automatically?

                      It is hardware checksum and you won’t even see it on NDIS level.

                      in reply to: Using WinpkFilter to modify the payload of TCP/IP packets #6210
                      Vadim Smirnov
                      Keymaster

                        Unfortunately it is not so easy, as there may be many ethernet packets for each TCP/IP packet.

                        Well, yes, IP packet can be fragmented and you may have to gather all fragments before processing the packet. However, fragmented IP packets are rather rare in modern networks, also these packets are recommended to be blocked by firewalls. Basically, I don’t think you will ever meet fragmented TCP packet, but it is still possible to generate fragmented ICMP or UDP packets.

                        Can I implement this with WinpkFilter? Is there a better way?
                        Am I missing something in the walkthrough provided above?
                        How do I buffer multiple ethernet packets and (after processing) send them to their intended destination using WinpkFilter? I know how it works for one packet at a time, but what about multiple?

                        In general the approach is correct. Sending multiply packets does not differ from sending a single one.

                        in reply to: Where is the packet from #6200
                        Vadim Smirnov
                        Keymaster

                          Basically TDI is above NDIS, but some events logged by TDI filter upon completion, an example in case of sending an outgoing packet TDI filter will pass this packet to NDIS, get the return status and log it after this. So you got packet from NDIS before than from TDI.

                          in reply to: CISCO VPN + NetFirewall = copmuter freeze in 5min #6209
                          Vadim Smirnov
                          Keymaster

                            Well, the problem is that Cisco VPN client is also utilizes NDIS hooking approach to making network filter driver. As soon as there is no standard for these drivers conflicts are always possible. We will check if we can do anything about it, thanks for reporting.

                            in reply to: Where is the packet from #6196
                            Vadim Smirnov
                            Keymaster

                              i take a look at your TDI driver, but it can only monitor ip packets or block packets which match a rule….i want to decide it self…if the packet can pass the TDI-System

                              is it possible to tunnel packets like your NDIS driver…..

                              Possible but the driver should be changed for this.

                              can you help me to find a solution to attach a packet to his process ??

                              Another option is a Layered Service Provider (LSP), you can read more in MSDN.

                              in reply to: Where is the packet from #6194
                              Vadim Smirnov
                              Keymaster

                                @ulli-um wrote:

                                hi,
                                what is the reason for the most desktop firewalls to add a combination of NDIS and TDI ?
                                To get the proccess id which is the packet from??

                                Yes, thats right.

                                in reply to: Where is the packet from #6192
                                Vadim Smirnov
                                Keymaster

                                  You can find the TDI filtering solution here http://www.ntkernel.com/w&p.php?id=8

                                  Packets can’t bypass NDIS layer, but if you want an application context you need something like TDI filter. Most of the desktop firewalls on the marker is a combination of NDIS and TDI/LSP filters.

                                Viewing 15 posts - 1,156 through 1,170 (of 1,506 total)