Freezes program while injecting -> waiting for URL URI response
See original GitHub issueHey I am using your Library and trying ot inject a dll doing it the following way:
var process = Process.GetProcessesByName(ProcessName)[0];
var dllFilePath = Path.GetTempPath() + DllName + ".dll";
var flags = MappingFlags.None;
var mapper = new LibraryMapper(process, dllFilePath, flags);
mapper.MapLibrary();
Somehow the injector freezes while injecting, and I traced it down to this function in SymbolHandler.cs:
using var response = await httpClient.GetAsync(new Uri($"https://msdl.microsoft.com/download/symbols/{pdbData.Path}/{pdbData.Guid:N}{pdbData.Age}/{pdbData.Path}"));
I kept waiting for a few minutes but nothing happened, I guess it waits for a response but can’t reach the url?
The first 2 requests worked, then it just freezed the program.
Issue Analytics
- State:
- Created 2 years ago
- Comments:7 (4 by maintainers)
Top Results From Across the Web
vb.net - How to wait for get request without freezing client
I have a simple button which sends a get request to retrieve a txt file on my website. Problem is it freezes the...
Read more >net/url: don't parse ';' as a separator in query string [freeze ...
net/url: don't parse ';' as a separator in query string [freeze ... I create a program to detect attack such as SQL Injection,...
Read more >ExecuteScriptAsync blocking forever after several ...
i want to say around 8 calls and then it can freeze. the JavaScript executes, but the await never returns. when it breaks,...
Read more >Insert from URL is freezing - Claris Community
The script has been running fine for almost 2 years. Recently it has started to freeze FileMaker when placing the order. I suspected...
Read more >Web API Fuzz Testing
This section shows you how to configure API fuzzing using an OpenAPI Specification to provide information about the target API to test. OpenAPI...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Is this issue still relevant? I still can’t replicate any of these issues (and pipeline doesn’t seem to have issue either.)
Hey I changed the download and now this is working:
Somehow I get another 2 errors now:
and
Just in case the download code wasn’t working correctly, I downloaded the pdb manually and placed it inside the Dependencies folder -> Same result.