10 Mar 2017 Yasaklandı #1 Titanic T Banlı Üye Katılım 1 Eki 2016 Mesajlar 1,521 Tepki puanı 334 Yaş 32 9 HİZMET YILI private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { //http://www.url.com/member.php?action=login if ((textBox1->Text->IsNullOrWhiteSpace(textBox1->Text)) && (textBox1->Text->IsNullOrWhiteSpace(textBox2->Text))) { MessageBox::Show("Please fill in your credentials!", "url - Loader", MessageBoxButtons::OK, MessageBoxIcon::Error); } else { HttpWebRequest^ httpWebRequest = nullptr; HttpWebResponse^ httpWebResponse = nullptr; Stream^ stream = nullptr; StreamReader^ streamReader = nullptr; array<Byte>^ postBytes = nullptr; CookieContainer^ cookieContainer = gcnew CookieContainer(); String^ sPostData = "username=" + textBox1->Text + "&password=" + textBox2->Text + "&remember=yes&submit=Login&action=do_login&url=http://url.com/member.php?action=login"; String^ sFinalData = nullptr; try { httpWebRequest = (HttpWebRequest^)WebRequest::Create("http://www.url.com/"); httpWebRequest->Method = "POST"; httpWebRequest->ContentType = "application/x-www-form-urlencoded"; postBytes = Encoding::UTF8->GetBytes(sPostData); httpWebRequest->ContentLength = postBytes->Length; httpWebRequest->CookieContainer = cookieContainer; stream = httpWebRequest->GetRequestStream(); stream->Write(postBytes, 0, postBytes->Length); stream->Close(); stream = nullptr; httpWebResponse = (HttpWebResponse^)httpWebRequest->GetResponse(); streamReader = gcnew StreamReader(httpWebResponse->GetResponseStream(), Encoding::ASCII); sFinalData = streamReader->ReadToEnd(); if (sFinalData->Contains("member.php?action=logout")) { MessageBox::Show("Login successful!", "", MessageBoxButtons::OK, MessageBoxIcon::Information); } else { MessageBox::Show("Login unsuccessful! Please check your credentials!", "", MessageBoxButtons::OK, MessageBoxIcon::Error); } } catch (Exception^ exception) { } }
private: System::Void button1_Click(System::Object^ sender, System::EventArgs^ e) { //http://www.url.com/member.php?action=login if ((textBox1->Text->IsNullOrWhiteSpace(textBox1->Text)) && (textBox1->Text->IsNullOrWhiteSpace(textBox2->Text))) { MessageBox::Show("Please fill in your credentials!", "url - Loader", MessageBoxButtons::OK, MessageBoxIcon::Error); } else { HttpWebRequest^ httpWebRequest = nullptr; HttpWebResponse^ httpWebResponse = nullptr; Stream^ stream = nullptr; StreamReader^ streamReader = nullptr; array<Byte>^ postBytes = nullptr; CookieContainer^ cookieContainer = gcnew CookieContainer(); String^ sPostData = "username=" + textBox1->Text + "&password=" + textBox2->Text + "&remember=yes&submit=Login&action=do_login&url=http://url.com/member.php?action=login"; String^ sFinalData = nullptr; try { httpWebRequest = (HttpWebRequest^)WebRequest::Create("http://www.url.com/"); httpWebRequest->Method = "POST"; httpWebRequest->ContentType = "application/x-www-form-urlencoded"; postBytes = Encoding::UTF8->GetBytes(sPostData); httpWebRequest->ContentLength = postBytes->Length; httpWebRequest->CookieContainer = cookieContainer; stream = httpWebRequest->GetRequestStream(); stream->Write(postBytes, 0, postBytes->Length); stream->Close(); stream = nullptr; httpWebResponse = (HttpWebResponse^)httpWebRequest->GetResponse(); streamReader = gcnew StreamReader(httpWebResponse->GetResponseStream(), Encoding::ASCII); sFinalData = streamReader->ReadToEnd(); if (sFinalData->Contains("member.php?action=logout")) { MessageBox::Show("Login successful!", "", MessageBoxButtons::OK, MessageBoxIcon::Information); } else { MessageBox::Show("Login unsuccessful! Please check your credentials!", "", MessageBoxButtons::OK, MessageBoxIcon::Error); } } catch (Exception^ exception) { } }
10 Mar 2017 #2 hackerSahti H Süper Üye Katılım 5 Eki 2016 Mesajlar 1,307 Çözümler 3 Tepki puanı 34 Ödüller 8 Yaş 28 9 HİZMET YILI Full Copy + Paste ?
10 Mar 2017 Yasaklandı #3 oneono O Seçkin Üye Katılım 7 Ara 2016 Mesajlar 312 Tepki puanı 6 Yaş 24 9 HİZMET YILI full alıntı herhalde
7 Haz 2017 #4 serhatorucsss S Üye Katılım 7 Haz 2017 Mesajlar 21 Tepki puanı 0 Yaş 38 8 HİZMET YILI Teşekkürler.
13 Haz 2017 #5 ByPsychopath B Üye Katılım 13 Haz 2017 Mesajlar 20 Tepki puanı 0 Yaş 25 8 HİZMET YILI İşime yarıyacak Eyw bro .
30 Tem 2017 #6 #Mustafa M Banlı Üye Katılım 22 Tem 2017 Mesajlar 129 Tepki puanı 10 Yaş 28 8 HİZMET YILI Bende Bunu arıyordum işte <3 eyw