Advertisement
Dgame321

Untitled

Oct 4th, 2019
6,090
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.04 KB | None | 0 0
  1. using System.Threading.Tasks;
  2. using System.Drawing;
  3. using System.Data;
  4. using System.Diagnostics;
  5. using System.Windows.Forms;
  6. using Microsoft.VisualBasic;
  7. using System.Linq;
  8. using System.Collections.Generic;
  9. using System.Collections;
  10. using System;
  11. using System.Xml.Linq;
  12. using Microsoft.VisualBasic.CompilerServices;
  13. using System.ComponentModel;
  14. using System.IO;
  15. using System.Net;
  16. using System.Text;
  17. using System.Text.RegularExpressions;
  18. using System.Runtime.CompilerServices;
  19.  
  20. namespace Email_Combo_Leecher__By_SyBeR_
  21. {
  22. public partial class Form1
  23. {
  24. private void BackgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
  25. {
  26. ;
  27. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  28. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 322
  29. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  30. --- End of stack trace from previous location where exception was thrown ---
  31. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  32. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  33. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  34. --- End of stack trace from previous location where exception was thrown ---
  35. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  36. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  37. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  38. --- End of stack trace from previous location where exception was thrown ---
  39. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  40. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  41. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  42. --- End of stack trace from previous location where exception was thrown ---
  43. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  44. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  45. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  46.  
  47. Input:
  48. On Error Resume Next
  49.  
  50. */
  51. var strArray = this.TextBox1.Text.Split(new char[] { (char)13 });
  52. var strArray2 = strArray;
  53. int index = 0;
  54. while (index < strArray2.Length)
  55. {
  56. string requestUriString = strArray2[index];
  57. var request = (HttpWebRequest)WebRequest.Create(requestUriString);
  58. var response = (HttpWebResponse)request.GetResponse();
  59. var reader = new StreamReader(response.GetResponseStream());
  60. string input = reader.ReadToEnd();
  61. var regex = new Regex(@"[a-zA-Z0-9._%+-]+@(?:[a-zA-Z0-9-]+\.)+[a-zA-Z]{2,6}:(?:[a-zA-Z0-9]{5,})");
  62. var matchs = regex.Matches(input);
  63. this.Label9.ForeColor = Color.Lime;
  64. this.Label9.Text = requestUriString;
  65. this.Label9.Visible = true;
  66. var builder = new StringBuilder();
  67. var enumerator = matchs.GetEnumerator();
  68. while (enumerator.MoveNext())
  69. {
  70. var current = (Match)enumerator.Current;
  71. builder.AppendLine(current.ToString());
  72. }
  73. if (enumerator is IDisposable)
  74. (enumerator as IDisposable).Dispose();
  75. this.TextBox2.Text = this.TextBox2.Text + builder.ToString();
  76. index += 1;
  77. }
  78. throw ProjectData.CreateProjectError(-2146828237);
  79. }
  80.  
  81. private void BackgroundWorker1_RunWorkerCompleted(object sender, RunWorkerCompletedEventArgs e)
  82. {
  83. ;
  84. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  85. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 2032
  86. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  87. --- End of stack trace from previous location where exception was thrown ---
  88. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  89. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  90. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  91. --- End of stack trace from previous location where exception was thrown ---
  92. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  93. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  94. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  95. --- End of stack trace from previous location where exception was thrown ---
  96. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  97. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  98. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  99. --- End of stack trace from previous location where exception was thrown ---
  100. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  101. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  102. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  103.  
  104. Input:
  105. On Error Resume Next
  106.  
  107. */
  108. this.Label9.Visible = false;
  109. this.Label10.Visible = true;
  110. }
  111.  
  112. private void Button1_Click(object sender, EventArgs e)
  113. {
  114. ;
  115. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  116. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 2234
  117. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  118. --- End of stack trace from previous location where exception was thrown ---
  119. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  120. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  121. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  122. --- End of stack trace from previous location where exception was thrown ---
  123. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  124. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  125. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  126. --- End of stack trace from previous location where exception was thrown ---
  127. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  128. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  129. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  130. --- End of stack trace from previous location where exception was thrown ---
  131. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  132. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  133. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  134.  
  135. Input:
  136. On Error Resume Next
  137.  
  138. */
  139. this.TextBox2.Text = "";
  140. this.BackgroundWorker1.RunWorkerAsync();
  141. }
  142.  
  143. private void Button2_Click(object sender, EventArgs e)
  144. {
  145. ;
  146. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  147. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 2444
  148. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  149. --- End of stack trace from previous location where exception was thrown ---
  150. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  151. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  152. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  153. --- End of stack trace from previous location where exception was thrown ---
  154. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  155. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  156. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  157. --- End of stack trace from previous location where exception was thrown ---
  158. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  159. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  160. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  161. --- End of stack trace from previous location where exception was thrown ---
  162. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  163. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  164. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  165.  
  166. Input:
  167. On Error Resume Next
  168.  
  169. */
  170. this.BackgroundWorker1.CancelAsync();
  171. }
  172.  
  173. private void Button3_Click(object sender, EventArgs e)
  174. {
  175. if (string.IsNullOrEmpty(this.TextBox2.Text))
  176. Interaction.MsgBox("No data to save", MsgBoxStyle.Critical, null);
  177. else
  178. {
  179. var dialog = new SaveFileDialog();
  180. dialog.RestoreDirectory = true;
  181. dialog.Filter = "txt files (*.txt)|*.txt";
  182. dialog.FilterIndex = 1;
  183. dialog.ShowDialog();
  184.  
  185. if (dialog.FileName != null)
  186. {
  187. using (var writer = new StreamWriter(dialog.FileName))
  188. {
  189. writer.WriteLine(this.TextBox2.Text);
  190. }
  191. }
  192. }
  193. }
  194.  
  195. private void Form1_Load(object sender, EventArgs e)
  196. {
  197. ;
  198. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  199. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 3317
  200. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  201. --- End of stack trace from previous location where exception was thrown ---
  202. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  203. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  204. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  205. --- End of stack trace from previous location where exception was thrown ---
  206. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  207. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  208. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  209. --- End of stack trace from previous location where exception was thrown ---
  210. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  211. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  212. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  213. --- End of stack trace from previous location where exception was thrown ---
  214. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  215. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  216. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  217.  
  218. Input:
  219. On Error Resume Next
  220.  
  221. */
  222. CheckForIllegalCrossThreadCalls = false;
  223. this.BackgroundWorker1.WorkerSupportsCancellation = true;
  224. this.Label9.Visible = false;
  225. this.Label10.Visible = false;
  226. }
  227.  
  228. private void LinkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
  229. {
  230. Process.Start("https://www.youtube.com/user/hdpc007");
  231. Process.Start("https://www.facebook.com/syber.hdpc");
  232. }
  233.  
  234. private void TextBox1_TextChanged(object sender, EventArgs e)
  235. {
  236. ;
  237. #error Cannot convert OnErrorResumeNextStatementSyntax - see comment for details
  238. /* Cannot convert OnErrorResumeNextStatementSyntax, CONVERSION ERROR: Conversion for OnErrorResumeNextStatement not implemented, please report this issue in 'On Error Resume Next' at character 3912
  239. at ICSharpCode.CodeConverter.CSharp.MethodBodyExecutableStatementVisitor.<DefaultVisit>d__24.MoveNext()
  240. --- End of stack trace from previous location where exception was thrown ---
  241. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  242. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  243. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<CreateLocals>d__7.MoveNext()
  244. --- End of stack trace from previous location where exception was thrown ---
  245. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  246. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  247. at ICSharpCode.CodeConverter.CSharp.ByRefParameterVisitor.<AddLocalVariables>d__6.MoveNext()
  248. --- End of stack trace from previous location where exception was thrown ---
  249. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  250. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  251. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<ConvertWithTrivia>d__4.MoveNext()
  252. --- End of stack trace from previous location where exception was thrown ---
  253. at System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
  254. at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
  255. at ICSharpCode.CodeConverter.CSharp.CommentConvertingMethodBodyVisitor.<DefaultVisit>d__3.MoveNext()
  256.  
  257. Input:
  258. On Error Resume Next
  259.  
  260. */
  261. this.Label3.Text = Conversions.ToString(Enumerable.Count(this.TextBox1.Lines));
  262. }
  263.  
  264. private void TextBox2_TextChanged(object sender, EventArgs e)
  265. {
  266. this.Label4.Text = Conversions.ToString(Enumerable.Count<string>(this.TextBox2.Lines));
  267. this.TextBox2.Select(this.TextBox2.Text.Length, 0);
  268. this.TextBox2.ScrollToCaret();
  269. }
  270. }
  271. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement