Git Product home page Git Product logo

pdbdownloader's Introduction

PDBDownloader

Download PDB Symbol files for Debugging directly from MSDL Server without Windows Driver Kit and Symbol Checker.

Features

  • This is a standalone program and can be used from external drives.
  • Works with both 32bit and 64bit programs.
  • Just drag and drop a valid PE file onto the PDBDownloader executable.
  • Does not require whole Windows Driver Kit.
  • Does not require any administrator privilege.

Acknowledgment

The PE header reader algorithm is taken from rajkumar-rangaraj/PDB-Downloader repository. Also these articles & links:

License

This project is licensed under GNU Public License v3 or higher.

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.

pdbdownloader's People

Contributors

biswa96 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

pdbdownloader's Issues

Easy way to get URL of PDB file

#include <stdio.h>
#include <stdlib.h>
#include <tchar.h>

#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <shlwapi.h>
#include <wininet.h>
#include <dbghelp.h>

#pragma comment(lib, "shlwapi")
#pragma comment(lib, "dbghelp")

int _tmain(int argc, _TCHAR *argv[])
{
  if (argc > 1)
  {
#if defined(UNICODE) || defined(_UNICODE)
    SYMSRV_INDEX_INFOW sii = { 0 };
    sii.sizeofstruct = sizeof(sii);
    if (SymSrvGetFileIndexInfoW(argv[1], &sii, 0))
#else
    SYMSRV_INDEX_INFO sii = { 0 };
    sii.sizeofstruct = sizeof(sii);
    if (SymSrvGetFileIndexInfo(argv[1], &sii, 0))
#endif
    {
      TCHAR szUrl[INTERNET_MAX_URL_LENGTH];
      wnsprintf(
        szUrl, ARRAYSIZE(szUrl),
        _T("http://msdl.microsoft.com/download/symbols/%s/%08x%04x%04x%02x%02x%02x%02x%02x%02x%02x%02x%x/%s"),
        sii.pdbfile,
        sii.guid.Data1, sii.guid.Data2, sii.guid.Data3,
        sii.guid.Data4[0], sii.guid.Data4[1],
        sii.guid.Data4[2], sii.guid.Data4[3],
        sii.guid.Data4[4], sii.guid.Data4[5],
        sii.guid.Data4[6], sii.guid.Data4[7],
        sii.age, sii.pdbfile);
      _tprintf(_T("URL: %s\n"), szUrl);
    }
  }
  return 0;
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.