主要功能:某网站投票程序(含验证码识别、自动换ip、adsl自动拨号、自动清除cookie、
private void ReStartAdsl(bool reStartAdsl)
{
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
if(reStartAdsl)
Info.FileName = Application.StartupPath @"\Restart.bat";
else
Info.FileName = Application.StartupPath @"\ClearCookie.bat";
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
System.Diagnostics.Process.Start(Info); //启动
Update();
}
private void callVote()
{
string poststr = "";
int tmpInex=new Random().Next(100);
if ( tmpInex< PostArray.Length)
poststr = PostArray[tmpInex];
else
poststr = "";
int spantime = 0;
for (int i = 0; i < 5; i )
{
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo();
Info.FileName = Application.StartupPath @"\BallotAiying2.exe";
Info.Arguments = poststr;
if(checkBoxHide.Checked)
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
System.Diagnostics.Process.Start(Info); //启动
if (i < 4)
{
spantime = 5 - i;
System.Threading.Thread.Sleep(spantime * 1000);
}
}
}
资源文件列表
BallotAiying2.sln , 1433
ballotaiyingAdmin/ballotaiyingAdmin.csproj , 3258
ballotaiyingAdmin/Form1.cs , 8904
ballotaiyingAdmin/Form1.Designer.cs , 6232
ballotaiyingAdmin/Form1.resx , 6008
ballotaiyingAdmin/Program.cs , 476
ballotaiyingAdmin/Properties/AssemblyInfo.cs , 1190
ballotaiyingAdmin/Properties/Resources.Designer.cs , 2889
ballotaiyingAdmin/Properties/Resources.resx , 5612
ballotaiyingAdmin/Properties/Settings.Designer.cs , 1101
ballotaiyingAdmin/Properties/Settings.settings , 249
BallotAiying2/BallotAiying2.csproj , 3967
BallotAiying2/BallotAiying2.suo , 36864
BallotAiying2/bin/Debug/ClearCookie.bat , 60
BallotAiying2/bin/Debug/Interop.SHDocVw.dll , 131072
BallotAiying2/bin/Debug/Restart.bat , 137
BallotAiying2/bin/Release/BallotAiying2.exe , 32768
BallotAiying2/bin/Release/BallotAiying2.pdb , 46592
BallotAiying2/bin/Release/BallotAiying2.vshost.exe , 5632
BallotAiying2/bin/Release/Interop.SHDocVw.dll , 131072
BallotAiying2/bin/Release/log.txt , 963
BallotAiying2/Form1.cs , 5623
BallotAiying2/Form1.Designer.cs , 2905
BallotAiying2/Form1.resx , 5814
BallotAiying2/Program.cs , 598
BallotAiying2/Properties/AssemblyInfo.cs , 1182
BallotAiying2/Properties/Resources.Designer.cs , 2849
BallotAiying2/Properties/Resources.resx , 5612
BallotAiying2/Properties/Settings.Designer.cs , 1110
BallotAiying2/Properties/Settings.settings , 249
BallotAiying2/unCodeAiYing.cs , 5912
BallotAiying2/UnCodeBase.cs , 9137
