Jump to content
YOUR-AD-HERE
HOSTING
TOOLS

Locked HMA Proxy Grabber 2.0


dEEpEst

Recommended Posts

  • 1 month later...

Re: HMA Proxy Grabber 2.0

 

lets see what u can make

[HIDE-THANKS]

[spoiler=source]using System;

using System.ComponentModel;

using System.Drawing;

using System.IO;

using System.Net;

using System.Text.RegularExpressions;

using System.Windows.Forms;

 

namespace hma

{

public class Form1 : Form

{

private IContainer components;

private WebBrowser webBrowser1;

private Button button1;

private TextBox textBox2;

private Label label1;

private CheckBox checkBox1;

private CheckBox checkBox2;

private CheckBox checkBox3;

private CheckBox checkBox4;

private CheckBox checkBox5;

private CheckBox checkBox6;

private CheckBox checkBox7;

private CheckBox checkBox8;

private CheckBox checkBox9;

private Label label2;

private Label label3;

private Label label4;

private Label label5;

private CheckBox checkBox10;

private CheckBox checkBox11;

private CheckBox checkBox12;

private CheckBox checkBox13;

private CheckBox checkBox14;

private CheckBox checkBox15;

private Button button2;

private SaveFileDialog saveFileDialog1;

private Button button3;

private TextBox txtFTPAddress;

private TextBox txtUsername;

private TextBox txtPassword;

private TextBox txtFilePath;

private Label label7;

private Label label8;

private Label label9;

private TextBox textBox3;

private Label label10;

private Label label11;

private ComboBox comboBox1;

private TabControl tabControl1;

private TabPage tabPage1;

private TextBox textBox1;

private TabPage tabPage2;

private TabPage tabPage3;

 

public Form1()

{

this.InitializeComponent();

}

 

public static string[] GetStringInBetween(string strBegin, string strEnd, string strSource, bool includeBegin, bool includeEnd)

{

string[] strArray = new string[2]

{

"",

""

};

int num = strSource.IndexOf(strBegin);

if (num != -1)

{

if (includeBegin)

num -= strBegin.Length;

strSource = strSource.Substring(num + strBegin.Length);

int length = strSource.IndexOf(strEnd);

if (length != -1)

{

if (includeEnd)

length += strEnd.Length;

strArray[0] = strSource.Substring(0, length);

if (length + strEnd.Length < strSource.Length)

strArray[1] = strSource.Substring(length + strEnd.Length);

}

}

else

strArray[1] = strSource;

return strArray;

}

 

private void Form1_Load(object sender, EventArgs e)

{

}

 

private void button1_Click(object sender, EventArgs e)

{

this.webBrowser1.Navigate("http://hidemyass.com/proxy-list/");

while (this.webBrowser1.ReadyState != WebBrowserReadyState.Complete)

Application.DoEvents();

if (!string.IsNullOrEmpty(this.textBox2.Text))

{

this.webBrowser1.Document.GetElementById("allPorts").SetAttribute("checked", (string) null);

this.webBrowser1.Document.GetElementById("ports").SetAttribute("value", this.textBox2.Text);

}

HtmlElementCollection elementsByTagName1 = this.webBrowser1.Document.GetElementsByTagName("input");

HtmlElementCollection elementsByTagName2 = this.webBrowser1.Document.GetElementsByTagName("select");

HtmlElementCollection elementsByTagName3 = this.webBrowser1.Document.GetElementsByTagName("option");

elementsByTagName1[0].SetAttribute("checked", (string) null);

for (int index = 0; index < elementsByTagName3.Count - 10; ++index)

{

HtmlElement htmlElement = elementsByTagName3[index];

htmlElement.SetAttribute("selected", (string) null);

if (htmlElement.GetAttribute("value") == this.comboBox1.Text)

htmlElement.SetAttribute("selected", "selected");

}

elementsByTagName2[3].SetAttribute("value", "3");

if (!this.checkBox1.Checked)

elementsByTagName1[3].SetAttribute("checked", (string) null);

if (!this.checkBox2.Checked)

elementsByTagName1[4].SetAttribute("checked", (string) null);

if (!this.checkBox3.Checked)

elementsByTagName1[5].SetAttribute("checked", (string) null);

if (!this.checkBox5.Checked)

elementsByTagName1[6].SetAttribute("checked", (string) null);

if (!this.checkBox6.Checked)

elementsByTagName1[7].SetAttribute("checked", (string) null);

if (!this.checkBox7.Checked)

elementsByTagName1[8].SetAttribute("checked", (string) null);

if (!this.checkBox8.Checked)

elementsByTagName1[9].SetAttribute("checked", (string) null);

if (!this.checkBox9.Checked)

elementsByTagName1[10].SetAttribute("checked", (string) null);

if (!this.checkBox4.Checked)

elementsByTagName1[11].SetAttribute("checked", (string) null);

if (!this.checkBox10.Checked)

elementsByTagName1[12].SetAttribute("checked", (string) null);

if (!this.checkBox11.Checked)

elementsByTagName1[13].SetAttribute("checked", (string) null);

if (!this.checkBox12.Checked)

elementsByTagName1[14].SetAttribute("checked", (string) null);

if (!this.checkBox13.Checked)

elementsByTagName1[15].SetAttribute("checked", (string) null);

if (!this.checkBox14.Checked)

elementsByTagName1[16].SetAttribute("checked", (string) null);

if (!this.checkBox15.Checked)

elementsByTagName1[17].SetAttribute("checked", (string) null);

this.webBrowser1.Document.GetElementById("updateresults").InvokeMember("Click");

this.webBrowser1.DocumentCompleted += new WebBrowserDocumentCompletedEventHandler(this.getProxies);

}

 

private void getProxies(object sender, WebBrowserDocumentCompletedEventArgs e)

{

string input = Form1.GetStringInBetween("

", "", this.webBrowser1.Document.Body.InnerHtml, false, false)[0];

Regex regex1 = new Regex("([^>])[0-9]*[.][0-9]*[.][0-9]*[.][0-9]*([^<])", RegexOptions.IgnoreCase);

Regex regex2 = new Regex("

[^>]([0-9]{1,5})", RegexOptions.IgnoreCase);

MatchCollection matchCollection1 = regex1.Matches(input);

MatchCollection matchCollection2 = regex2.Matches(input);

for (int index = 0; index < matchCollection1.Count; ++index)

this.textBox1.Text = this.textBox1.Text.Insert(0, matchCollection1[index].ToString() + matchCollection2[index].ToString().Replace("

", ":").Replace("", "") + Environment.NewLine);

}

 

private void button2_Click(object sender, EventArgs e)

{

int num = (int) this.saveFileDialog1.ShowDialog();

}

 

private void saveFileDialog1_FileOk_1(object sender, CancelEventArgs e)

{

string fileName = this.saveFileDialog1.FileName;

StreamWriter streamWriter = new StreamWriter(fileName);

streamWriter.Write(this.textBox1.Text);

streamWriter.Close();

this.button3.Enabled = true;

this.txtFilePath.Text = fileName;

}

 

private void uploadFile(string FTPAddress, string filePath, string username, string password)

{

FtpWebRequest ftpWebRequest = (FtpWebRequest) WebRequest.Create(FTPAddress + this.textBox3.Text + Path.GetFileName(filePath));

ftpWebRequest.Method = "STOR";

ftpWebRequest.Credentials = (ICredentials) new NetworkCredential(username, password);

ftpWebRequest.UsePassive = true;

ftpWebRequest.UseBinary = true;

ftpWebRequest.KeepAlive = false;

FileStream fileStream = System.IO.File.OpenRead(filePath);

byte[] buffer = new byte[fileStream.Length];

fileStream.Read(buffer, 0, buffer.Length);

fileStream.Close();

Stream requestStream = ftpWebRequest.GetRequestStream();

requestStream.Write(buffer, 0, buffer.Length);

requestStream.Close();

int num = (int) MessageBox.Show("Uploaded Successfully");

}

 

private void button3_Click(object sender, EventArgs e)

{

this.button3.Enabled = false;

Application.DoEvents();

this.uploadFile(this.txtFTPAddress.Text, this.txtFilePath.Text, this.txtUsername.Text, this.txtPassword.Text);

this.button3.Enabled = true;

}

 

private void txtFTPAddress_Leave(object sender, EventArgs e)

{

if (this.txtFTPAddress.Text.StartsWith("ftp://"))

return;

this.txtFTPAddress.Text = "ftp://" + this.txtFTPAddress.Text;

}

 

protected override void Dispose(bool disposing)

{

if (disposing && this.components != null)

this.components.Dispose();

base.Dispose(disposing);

}

 

private void InitializeComponent()

{

ComponentResourceManager componentResourceManager = new ComponentResourceManager(typeof (Form1));

this.webBrowser1 = new WebBrowser();

this.button1 = new Button();

this.textBox2 = new TextBox();

this.label1 = new Label();

this.checkBox1 = new CheckBox();

this.checkBox2 = new CheckBox();

this.checkBox3 = new CheckBox();

this.checkBox4 = new CheckBox();

this.checkBox5 = new CheckBox();

this.checkBox6 = new CheckBox();

this.checkBox7 = new CheckBox();

this.checkBox8 = new CheckBox();

this.checkBox9 = new CheckBox();

this.label2 = new Label();

this.label3 = new Label();

this.label4 = new Label();

this.label5 = new Label();

this.checkBox10 = new CheckBox();

this.checkBox11 = new CheckBox();

this.checkBox12 = new CheckBox();

this.checkBox13 = new CheckBox();

this.checkBox14 = new CheckBox();

this.checkBox15 = new CheckBox();

this.button2 = new Button();

this.saveFileDialog1 = new SaveFileDialog();

this.button3 = new Button();

this.txtFTPAddress = new TextBox();

this.txtUsername = new TextBox();

this.txtPassword = new TextBox();

this.txtFilePath = new TextBox();

this.label7 = new Label();

this.label8 = new Label();

this.label9 = new Label();

this.textBox3 = new TextBox();

this.label10 = new Label();

this.label11 = new Label();

this.comboBox1 = new ComboBox();

this.tabControl1 = new TabControl();

this.tabPage2 = new TabPage();

this.tabPage1 = new TabPage();

this.textBox1 = new TextBox();

this.tabPage3 = new TabPage();

this.tabControl1.SuspendLayout();

this.tabPage2.SuspendLayout();

this.tabPage1.SuspendLayout();

this.tabPage3.SuspendLayout();

this.SuspendLayout();

this.webBrowser1.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;

this.webBrowser1.Location = new Point(2, 258);

this.webBrowser1.MinimumSize = new Size(23, 23);

this.webBrowser1.Name = "webBrowser1";

this.webBrowser1.Size = new Size(399, 61);

this.webBrowser1.TabIndex = 0;

this.webBrowser1.Url = new Uri("", UriKind.Relative);

this.webBrowser1.Visible = false;

this.button1.BackColor = Color.White;

this.button1.FlatStyle = FlatStyle.Flat;

this.button1.ForeColor = Color.Goldenrod;

this.button1.Location = new Point(9, 201);

this.button1.Name = "button1";

this.button1.Size = new Size(83, 25);

this.button1.TabIndex = 1;

this.button1.Text = "Get Proxies";

this.button1.UseVisualStyleBackColor = false;

this.button1.Click += new EventHandler(this.button1_Click);

this.textBox2.BackColor = SystemColors.ControlLight;

this.textBox2.Location = new Point(16, 72);

this.textBox2.Name = "textBox2";

this.textBox2.Size = new Size(87, 22);

this.textBox2.TabIndex = 3;

this.label1.AutoSize = true;

this.label1.FlatStyle = FlatStyle.Popup;

this.label1.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label1.ForeColor = Color.FromArgb(64, 64, 64);

this.label1.Location = new Point(8, 51);

this.label1.Name = "label1";

this.label1.Size = new Size(57, 15);

this.label1.TabIndex = 4;

this.label1.Text = "Port(s):";

this.checkBox1.AutoSize = true;

this.checkBox1.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox1.ForeColor = Color.Gray;

this.checkBox1.Location = new Point(16, 120);

this.checkBox1.Name = "checkBox1";

this.checkBox1.Size = new Size(60, 18);

this.checkBox1.TabIndex = 5;

this.checkBox1.Text = "HTTP";

this.checkBox1.UseVisualStyleBackColor = true;

this.checkBox2.AutoSize = true;

this.checkBox2.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox2.ForeColor = Color.Gray;

this.checkBox2.Location = new Point(16, 144);

this.checkBox2.Name = "checkBox2";

this.checkBox2.Size = new Size(67, 18);

this.checkBox2.TabIndex = 6;

this.checkBox2.Text = "HTTPS";

this.checkBox2.UseVisualStyleBackColor = true;

this.checkBox3.AutoSize = true;

this.checkBox3.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox3.ForeColor = Color.Gray;

this.checkBox3.Location = new Point(16, 168);

this.checkBox3.Name = "checkBox3";

this.checkBox3.Size = new Size(69, 18);

this.checkBox3.TabIndex = 7;

this.checkBox3.Text = "socks4/5";

this.checkBox3.UseVisualStyleBackColor = true;

this.checkBox4.AutoSize = true;

this.checkBox4.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox4.ForeColor = Color.Gray;

this.checkBox4.Location = new Point(159, 150);

this.checkBox4.Name = "checkBox4";

this.checkBox4.Size = new Size(80, 18);

this.checkBox4.TabIndex = 8;

this.checkBox4.Text = "PlanetLab";

this.checkBox4.UseVisualStyleBackColor = true;

this.checkBox5.AutoSize = true;

this.checkBox5.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox5.ForeColor = Color.Gray;

this.checkBox5.Location = new Point(159, 24);

this.checkBox5.Name = "checkBox5";

this.checkBox5.Size = new Size(53, 18);

this.checkBox5.TabIndex = 9;

this.checkBox5.Text = "None";

this.checkBox5.UseVisualStyleBackColor = true;

this.checkBox6.AutoSize = true;

this.checkBox6.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox6.ForeColor = Color.Gray;

this.checkBox6.Location = new Point(159, 48);

this.checkBox6.Name = "checkBox6";

this.checkBox6.Size = new Size(48, 18);

this.checkBox6.TabIndex = 10;

this.checkBox6.Text = "Low";

this.checkBox6.UseVisualStyleBackColor = true;

this.checkBox7.AutoSize = true;

this.checkBox7.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox7.ForeColor = Color.Gray;

this.checkBox7.Location = new Point(159, 72);

this.checkBox7.Name = "checkBox7";

this.checkBox7.Size = new Size(68, 18);

this.checkBox7.TabIndex = 11;

this.checkBox7.Text = "Medium";

this.checkBox7.UseVisualStyleBackColor = true;

this.checkBox8.AutoSize = true;

this.checkBox8.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox8.ForeColor = Color.Gray;

this.checkBox8.Location = new Point(159, 99);

this.checkBox8.Name = "checkBox8";

this.checkBox8.Size = new Size(54, 18);

this.checkBox8.TabIndex = 12;

this.checkBox8.Text = "High";

this.checkBox8.UseVisualStyleBackColor = true;

this.checkBox9.AutoSize = true;

this.checkBox9.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox9.ForeColor = Color.Gray;

this.checkBox9.Location = new Point(159, 124);

this.checkBox9.Name = "checkBox9";

this.checkBox9.Size = new Size(82, 18);

this.checkBox9.TabIndex = 13;

this.checkBox9.Text = "High +KA";

this.checkBox9.UseVisualStyleBackColor = true;

this.label2.AutoSize = true;

this.label2.FlatStyle = FlatStyle.Popup;

this.label2.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label2.ForeColor = Color.FromArgb(64, 64, 64);

this.label2.Location = new Point(144, 6);

this.label2.Name = "label2";

this.label2.Size = new Size(114, 15);

this.label2.TabIndex = 14;

this.label2.Text = "Annonimity level:";

this.label3.AutoSize = true;

this.label3.FlatStyle = FlatStyle.Popup;

this.label3.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label3.ForeColor = Color.FromArgb(64, 64, 64);

this.label3.Location = new Point(6, 99);

this.label3.Name = "label3";

this.label3.Size = new Size(66, 15);

this.label3.TabIndex = 15;

this.label3.Text = "Protocol:";

this.label4.AutoSize = true;

this.label4.FlatStyle = FlatStyle.Popup;

this.label4.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label4.ForeColor = Color.FromArgb(64, 64, 64);

this.label4.Location = new Point(273, 6);

this.label4.Name = "label4";

this.label4.Size = new Size(49, 15);

this.label4.TabIndex = 16;

this.label4.Text = "Speed:";

this.label5.AutoSize = true;

this.label5.FlatStyle = FlatStyle.Popup;

this.label5.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label5.ForeColor = Color.FromArgb(64, 64, 64);

this.label5.Location = new Point(273, 99);

this.label5.Name = "label5";

this.label5.Size = new Size(112, 15);

this.label5.TabIndex = 17;

this.label5.Text = "Connection time:";

this.checkBox10.AutoSize = true;

this.checkBox10.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox10.ForeColor = Color.Gray;

this.checkBox10.Location = new Point(285, 28);

this.checkBox10.Name = "checkBox10";

this.checkBox10.Size = new Size(51, 18);

this.checkBox10.TabIndex = 18;

this.checkBox10.Text = "Slow";

this.checkBox10.UseVisualStyleBackColor = true;

this.checkBox11.AutoSize = true;

this.checkBox11.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox11.ForeColor = Color.Gray;

this.checkBox11.Location = new Point(285, 48);

this.checkBox11.Name = "checkBox11";

this.checkBox11.Size = new Size(68, 18);

this.checkBox11.TabIndex = 19;

this.checkBox11.Text = "Medium";

this.checkBox11.UseVisualStyleBackColor = true;

this.checkBox12.AutoSize = true;

this.checkBox12.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox12.ForeColor = Color.Gray;

this.checkBox12.Location = new Point(285, 72);

this.checkBox12.Name = "checkBox12";

this.checkBox12.Size = new Size(49, 18);

this.checkBox12.TabIndex = 20;

this.checkBox12.Text = "Fast";

this.checkBox12.UseVisualStyleBackColor = true;

this.checkBox13.AutoSize = true;

this.checkBox13.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox13.ForeColor = Color.Gray;

this.checkBox13.Location = new Point(285, 120);

this.checkBox13.Name = "checkBox13";

this.checkBox13.Size = new Size(51, 18);

this.checkBox13.TabIndex = 21;

this.checkBox13.Text = "Slow";

this.checkBox13.UseVisualStyleBackColor = true;

this.checkBox14.AutoSize = true;

this.checkBox14.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox14.ForeColor = Color.Gray;

this.checkBox14.Location = new Point(285, 144);

this.checkBox14.Name = "checkBox14";

this.checkBox14.Size = new Size(68, 18);

this.checkBox14.TabIndex = 22;

this.checkBox14.Text = "Medium";

this.checkBox14.UseVisualStyleBackColor = true;

this.checkBox15.AutoSize = true;

this.checkBox15.Font = new Font("Modern No. 20", 8.249999f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.checkBox15.ForeColor = Color.Gray;

this.checkBox15.Location = new Point(285, 168);

this.checkBox15.Name = "checkBox15";

this.checkBox15.Size = new Size(49, 18);

this.checkBox15.TabIndex = 23;

this.checkBox15.Text = "Fast";

this.checkBox15.UseVisualStyleBackColor = true;

this.button2.BackColor = Color.White;

this.button2.FlatStyle = FlatStyle.Flat;

this.button2.ForeColor = Color.Goldenrod;

this.button2.Location = new Point(147, 201);

this.button2.Name = "button2";

this.button2.Size = new Size(83, 25);

this.button2.TabIndex = 24;

this.button2.Text = "Save List";

this.button2.UseVisualStyleBackColor = false;

this.button2.Click += new EventHandler(this.button2_Click);

this.saveFileDialog1.DefaultExt = "txt";

this.saveFileDialog1.FileName = "proxies";

this.saveFileDialog1.Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*";

this.saveFileDialog1.Title = "Save Proxy List";

this.saveFileDialog1.FileOk += new CancelEventHandler(this.saveFileDialog1_FileOk_1);

this.button3.BackColor = Color.White;

this.button3.Enabled = false;

this.button3.FlatStyle = FlatStyle.Flat;

this.button3.ForeColor = Color.Goldenrod;

this.button3.Location = new Point(19, 173);

this.button3.Name = "button3";

this.button3.Size = new Size(75, 23);

this.button3.TabIndex = 25;

this.button3.Text = "Upload";

this.button3.UseVisualStyleBackColor = true;

this.button3.Click += new EventHandler(this.button3_Click);

this.txtFTPAddress.BackColor = SystemColors.ControlLight;

this.txtFTPAddress.Location = new Point(119, 13);

this.txtFTPAddress.Name = "txtFTPAddress";

this.txtFTPAddress.Size = new Size(133, 22);

this.txtFTPAddress.TabIndex = 26;

this.txtFTPAddress.Text = "ftp://";

this.txtUsername.BackColor = SystemColors.ControlLight;

this.txtUsername.Location = new Point(119, 51);

this.txtUsername.Name = "txtUsername";

this.txtUsername.Size = new Size(133, 22);

this.txtUsername.TabIndex = 27;

this.txtPassword.BackColor = SystemColors.ControlLight;

this.txtPassword.Location = new Point(119, 89);

this.txtPassword.Name = "txtPassword";

this.txtPassword.PasswordChar = '*';

this.txtPassword.Size = new Size(100, 22);

this.txtPassword.TabIndex = 28;

this.txtFilePath.Location = new Point(12, 243);

this.txtFilePath.Name = "txtFilePath";

this.txtFilePath.Size = new Size(262, 22);

this.txtFilePath.TabIndex = 29;

this.txtFilePath.Visible = false;

this.label7.AutoSize = true;

this.label7.ForeColor = Color.Gray;

this.label7.Location = new Point(16, 16);

this.label7.Name = "label7";

this.label7.Size = new Size(73, 15);

this.label7.TabIndex = 31;

this.label7.Text = "FTP Server:";

this.label8.AutoSize = true;

this.label8.ForeColor = Color.Gray;

this.label8.Location = new Point(16, 54);

this.label8.Name = "label8";

this.label8.Size = new Size(66, 15);

this.label8.TabIndex = 32;

this.label8.Text = "Username:";

this.label9.AutoSize = true;

this.label9.ForeColor = Color.Gray;

this.label9.Location = new Point(16, 92);

this.label9.Name = "label9";

this.label9.Size = new Size(63, 15);

this.label9.TabIndex = 33;

this.label9.Text = "Password:";

this.textBox3.BackColor = SystemColors.ControlLight;

this.textBox3.Location = new Point(119, (int) sbyte.MaxValue);

this.textBox3.Name = "textBox3";

this.textBox3.Size = new Size(100, 22);

this.textBox3.TabIndex = 34;

this.textBox3.Text = "/";

this.label10.AutoSize = true;

this.label10.ForeColor = Color.Gray;

this.label10.Location = new Point(16, 130);

this.label10.Name = "label10";

this.label10.Size = new Size(46, 15);

this.label10.TabIndex = 35;

this.label10.Text = "Folder:";

this.label11.AutoSize = true;

this.label11.Font = new Font("High Tower Text", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.label11.ForeColor = Color.FromArgb(64, 64, 64);

this.label11.Location = new Point(6, 6);

this.label11.Name = "label11";

this.label11.Size = new Size(63, 15);

this.label11.TabIndex = 36;

this.label11.Text = "Country:";

this.comboBox1.BackColor = SystemColors.ControlLight;

this.comboBox1.DropDownStyle = ComboBoxStyle.DropDownList;

this.comboBox1.FormattingEnabled = true;

this.comboBox1.Items.AddRange(new object[25]

{

(object) "United States",

(object) "Indonesia",

(object) "China",

(object) "Brazil",

(object) "Russian Federation",

(object) "Iran",

(object) "India",

(object) "Ukraine",

(object) "Germany",

(object) "Thailand",

(object) "Egypt",

(object) "Korea, Republic of",

(object) "Colombia",

(object) "Spain",

(object) "Poland",

(object) "Turkey",

(object) "Japan",

(object) "Kazakhstan",

(object) "Argentina",

(object) "Bulgaria",

(object) "Hong Kong",

(object) "France",

(object) "Ecuador",

(object) "Taiwan",

(object) "Canada"

});

this.comboBox1.Location = new Point(16, 21);

this.comboBox1.Name = "comboBox1";

this.comboBox1.Size = new Size(113, 23);

this.comboBox1.TabIndex = 37;

this.tabControl1.Controls.Add((Control) this.tabPage1);

this.tabControl1.Controls.Add((Control) this.tabPage2);

this.tabControl1.Controls.Add((Control) this.tabPage3);

this.tabControl1.Dock = DockStyle.Fill;

this.tabControl1.Location = new Point(0, 0);

this.tabControl1.Name = "tabControl1";

this.tabControl1.SelectedIndex = 1;

this.tabControl1.Size = new Size(397, 262);

this.tabControl1.TabIndex = 38;

this.tabPage2.BackColor = Color.White;

this.tabPage2.Controls.Add((Control) this.label11);

this.tabPage2.Controls.Add((Control) this.comboBox1);

this.tabPage2.Controls.Add((Control) this.label1);

this.tabPage2.Controls.Add((Control) this.label3);

this.tabPage2.Controls.Add((Control) this.textBox2);

this.tabPage2.Controls.Add((Control) this.checkBox1);

this.tabPage2.Controls.Add((Control) this.checkBox2);

this.tabPage2.Controls.Add((Control) this.checkBox3);

this.tabPage2.Controls.Add((Control) this.button1);

this.tabPage2.Controls.Add((Control) this.label2);

this.tabPage2.Controls.Add((Control) this.checkBox5);

this.tabPage2.Controls.Add((Control) this.checkBox6);

this.tabPage2.Controls.Add((Control) this.checkBox15);

this.tabPage2.Controls.Add((Control) this.button2);

this.tabPage2.Controls.Add((Control) this.checkBox14);

this.tabPage2.Controls.Add((Control) this.checkBox7);

this.tabPage2.Controls.Add((Control) this.checkBox13);

this.tabPage2.Controls.Add((Control) this.checkBox8);

this.tabPage2.Controls.Add((Control) this.label5);

this.tabPage2.Controls.Add((Control) this.checkBox12);

this.tabPage2.Controls.Add((Control) this.checkBox9);

this.tabPage2.Controls.Add((Control) this.checkBox11);

this.tabPage2.Controls.Add((Control) this.checkBox4);

this.tabPage2.Controls.Add((Control) this.checkBox10);

this.tabPage2.Controls.Add((Control) this.label4);

this.tabPage2.Location = new Point(4, 24);

this.tabPage2.Name = "tabPage2";

this.tabPage2.Padding = new Padding(3);

this.tabPage2.Size = new Size(389, 234);

this.tabPage2.TabIndex = 1;

this.tabPage2.Text = "CPanel";

this.tabPage1.BackColor = Color.White;

this.tabPage1.Controls.Add((Control) this.textBox1);

this.tabPage1.Location = new Point(4, 24);

this.tabPage1.Name = "tabPage1";

this.tabPage1.Padding = new Padding(3);

this.tabPage1.Size = new Size(389, 234);

this.tabPage1.TabIndex = 0;

this.tabPage1.Text = "Proxy List";

this.textBox1.BackColor = SystemColors.ControlLight;

this.textBox1.Location = new Point(0, 0);

this.textBox1.Multiline = true;

this.textBox1.Name = "textBox1";

this.textBox1.ScrollBars = ScrollBars.Both;

this.textBox1.Size = new Size(393, 235);

this.textBox1.TabIndex = 2;

this.tabPage3.BackColor = Color.White;

this.tabPage3.Controls.Add((Control) this.label7);

this.tabPage3.Controls.Add((Control) this.textBox3);

this.tabPage3.Controls.Add((Control) this.button3);

this.tabPage3.Controls.Add((Control) this.label10);

this.tabPage3.Controls.Add((Control) this.txtFTPAddress);

this.tabPage3.Controls.Add((Control) this.label8);

this.tabPage3.Controls.Add((Control) this.label9);

this.tabPage3.Controls.Add((Control) this.txtPassword);

this.tabPage3.Controls.Add((Control) this.txtUsername);

this.tabPage3.Location = new Point(4, 24);

this.tabPage3.Name = "tabPage3";

this.tabPage3.Padding = new Padding(3);

this.tabPage3.Size = new Size(389, 234);

this.tabPage3.TabIndex = 2;

this.tabPage3.Text = "Upload List";

this.AutoScaleDimensions = new SizeF(7f, 15f);

this.AutoScaleMode = AutoScaleMode.Font;

this.BackColor = Color.White;

this.ClientSize = new Size(397, 262);

this.Controls.Add((Control) this.tabControl1);

this.Controls.Add((Control) this.txtFilePath);

this.Controls.Add((Control) this.webBrowser1);

this.Font = new Font("Times New Roman", 9.75f, FontStyle.Bold, GraphicsUnit.Point, (byte) 0);

this.FormBorderStyle = FormBorderStyle.Fixed3D;

this.Icon = (Icon) componentResourceManager.GetObject("$this.Icon");

this.MaximizeBox = false;

this.Name = "Form1";

this.RightToLeft = RightToLeft.No;

this.Text = "HMA Proxy Grabber";

this.Load += new EventHandler(this.Form1_Load);

this.tabControl1.ResumeLayout(false);

this.tabPage2.ResumeLayout(false);

this.tabPage2.PerformLayout();

this.tabPage1.ResumeLayout(false);

this.tabPage1.PerformLayout();

this.tabPage3.ResumeLayout(false);

this.tabPage3.PerformLayout();

this.ResumeLayout(false);

this.PerformLayout();

}

}

}

[/HIDE-THANKS]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.