Exemplo n.º 1
0
        private void btnProceed_Click(object sender, EventArgs e)
        {
            string         inj = "";
            __HTTTPAttack_ h   = new __HTTTPAttack_();

            if (checkBoxGet.Checked)
            {
                h.ParameterizeGET(textBox1.Text);
                foreach (StrBool s in this.Get_Pars)
                {
                    if (s.statue_)
                    {
                        h.AddGetparameter(s.string_, s.string_ + inj);
                    }
                }
                h.GET_XSSER();
                MessageBox.Show(h.GetXsserSummary());
                if (h.Succeeded)
                {
                    this.setNotification("Succeeeded");
                }
            }
            else
            {
                // post
            }
        }