I assume it's in winhttp.dll somewhere, but I can't find any reference to it by dumping the DLL using bindump. Anyone have any suggestions on how I can find the vtable index of a method?
How to look up vtable index of a method on the IWinHttpRequest interface?
423 views Asked by Craig At
1
There are 1 answers
Related Questions in DLL
- How to find a sequence of bytes on the target program from my injected dll?
- .lib not generated when building DLL project using template class
- The file "spng.dll" is not founded in my Visual Studio's project and i get an error
- Handling Memory Allocation and Pointers in Electron between Node.js and C++ DLL
- Multi level project reference using dll
- Wix MSI Project Harvesting Error Message 'dll is not running' on Build
- Windows Custom Credential Provider is not displaying tile on logon for all users in a pc
- How can I verbosely track the whole process of calling a function?
- Is dll static var shared between threads that load the same dll?
- JNR-FFI - Callback Pointer crash
- How can I patch a function call to a Windows DLL (e.g. kernel32 LoadLibrary)? Is this even possible?
- PyInstaller with PyQt5 Generates "DLL load failed" Error for QtPrintSupport
- What happens if I link two different libraries providing the same symbols in Visual Studio?
- how to test .dll on Linux
- PHP FFI - How to free memory created by FFI::new("void*[2]", false, true)
Related Questions in VTABLE
- Calling a C++ virtual method from Rust throws an Access violation error even after it executed successfully
- How to pass closure to dyn trait object
- sizeof CRTP class implementing an interface
- Virtual method table of non-pointer object?
- Is static dispatch "almost always" faster than boxed dyn trait dispatch?
- Question regarding vtables and lookups in code versions
- Wrong vtable inside the overloaded operator function when using std::set:insert
- std::bind behaves differently when passed a pointer vs reference
- How does polymorphism with multiple inheritance work in assembly?
- How vtable and vptr is working when virtual method is called from non-virtual method
- I've written Python code that usually works, but an occasional error pops up unexpectedly and then disappears upon rerunning
- C++ polymorphism not working with ESP-IDF
- How to compare groups using a t.test in `vtable::sumtable`?
- If a derived class has a method with a signature that is exactly the same as signature from a method in the base class, does it generate a vtable?
- Is it correct to state that calling virtual method through child doesn't use vtable?
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
The information is in the IDL file,
httprequest.idl.From this you can read off the method indices. It's a bit tricky because you first have to count the method indices of the base interface
IDispatch.You can remove the tedium by using the
offsetofmacro.