SpiderEye icon indicating copy to clipboard operation
SpiderEye copied to clipboard

Cross platform .Net Core applications with a webview UI

Results 15 SpiderEye issues
Sort by recently updated
recently updated
newest added

I'm running on Windows 10 19042.630 I have installed the template, when running the application targeting net5.0-windows (With Edge Canary Installed) it throws a "CLR/System.UnauthorizedAccessException" Here is the entire exception...

There is an interesting segment of code in SpiderEye.Bridge.WebviewBridge: ``` public async Task InvokeAsync(string id, object data) { string script = GetInvokeScript(id, data); string? resultJson = await Application.Invoke(() => Webview.ExecuteScriptAsync(script));...

Made an application, created an index.html file in the App folder. and added there loading scripts from outside. Like this one And the application starts to crash into an exception.

Before I start complaining, thank you for writing SpiderEye, you've saved me a bunch of work so far! **Describe the bug** Unable to load video elements that are embedded resources...

**Describe the feature you'd like** Offer one NuGet package, that is [multi-targeted](https://docs.microsoft.com/nuget/create-packages/supporting-multiple-target-frameworks#architecture-specific-folders) and contains the necessary assemblies to support _all_ supported OSs. Then additionally the `Application.Init` API can be simplified...

**Describe the bug** I have created a window of webview follow to simple example of project. I deploy it to raspberry pi 4. It work. I continue navigate webview to...

Hi there I'm starting ina discover phase to include some very dynamic interfaces with user to present and request data from the user. I think this approach is "oldy" but...

**Describe the feature you'd like** I'd love the ability to save cookies and restore them, unless I am missing somthing quite obvious. **Reason for this feature request** I want to...

It seems like the `NSBlock` was garbage collected before the task completed. That's because the method elided the `async`/`await` keywords. For more information see https://blog.stephencleary.com/2016/12/eliding-async-await.html.