// Sample Flooder By th0ufeer@nimbuzz.Com
//join Kerala8@cnc For More Infos
using agsXMPP;
using agsXMPP.protocol.client;
using agsXMPP.Xml.Dom;
using kbsimpleflooder.Properties;
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Windows.Forms;
namespace singleidcaptcha
{
public class Form1 : Form
{
private XmppClientConnection tofy;
private Random random = new Random();
public Form1()
{
this.InitializeComponent();
}
private void login-button_Click(object sender, EventArgs e)
{
this.tofy = new XmppClientConnection
{
Server = "nimbuzz.com",
ConnectServer = "o.nimbuzz.com",
Port = 5222
};
this.tofy.Open(this.username.Text, this.password.Text, "th0ufeer-here-Nimbuzz_Symbian" + random.Next(0, 999999));
this.tofy.OnLogin += new ObjectHandler(this.kbzLogin);
this.tofy.OnAuthError += new XmppElementHandler(this.kbzfailed);
this.tofy.OnClose += new ObjectHandler(this.kbzdc);
this.tofy.OnMessage += new MessageHandler(this.kbzOnMessage);
}
private void kbzLogin(object sender)
{
if (base.InvokeRequired)
{
base.BeginInvoke(new ObjectHandler(this.kbzLogin), new object[]
{
sender
});
}
else
{
this.username.BackColor = Color.Green;
tofy.status("Online Via KBZ Flooder");
}
}
private void kbzfailed(object sender, Element e)
{
if (base.InvokeRequired)
{
base.BeginInvoke(new XmppElementHandler(this.kbzfailed), new object[]
{
sender,
e
});
}
else
{
this.username.BackColor = Color.Red;
}
}
private void kbzdc(object sender)
{
if (base.InvokeRequired)
{
base.BeginInvoke(new ObjectHandler(this.kbzdc), new object[]
{
sender
});
}
else
{
this.username.BackColor = Color.Yellow;
}
}
private void kbzOnMessage(object sender, agsXMPP.protocol.client.Message msg)
{
if (base.InvokeRequired)
{
base.BeginInvoke(new MessageHandler(this.kbzOnMessage), new object[]
{
sender,
msg
});
}
else if (msg.Type == MessageType.groupchat)
{
if (msg.From.Resource == "admin" && roomname.Text.Contains("kerala8")!=true)
{
this.pictureBox1.Load(msg.Body.Replace("Enter the right answer to start chatting. ", ""));
}
}
}
private void joinroombutton_Click(object sender, EventArgs e)
{
this.tofy.Send(" ");
}
private void send-to-roombutton_Click(object sender, EventArgs e) {
this.tofy.Send(""+this.captchaanswer.Text+
}
for (int j = 1; j <= 20; j++)
{
this.tofy.Send("",
this.floodmsg.Text,
}
this.tofy.Send(" ");
}
private void logoutbutton_Click(object sender, EventArgs e)
{
this.tofy.Close();
}
private void Form1_Load(object sender, EventArgs e)
{
MessageBox.Show("KBZ TEAM Simple Captcha Flooder Coded By th0ufeer@nimbuzz.com\n\n\nThanx For Using Our Tools\nvisit www.kbzteam.forums1.net For Our Latest Tools");
Process.Start("http://www.kbzteam.forums1.net/");
}
}
}
No comments:
Post a Comment