From 8ecf48c7c61d486c5e716883bc51f4c7b1fddc22 Mon Sep 17 00:00:00 2001 From: MOUAD-X7 Date: Sat, 23 Apr 2022 13:25:48 +0000 Subject: [PATCH] Upload --- aio_bypasser.sln | 25 ++++ aio_bypasser/App.config | 6 + aio_bypasser/Program.cs | 108 ++++++++++++++++++ aio_bypasser/Properties/AssemblyInfo.cs | 36 ++++++ aio_bypasser/aio_bypasser.csproj | 53 +++++++++ ...ework,Version=v4.7.2.AssemblyAttributes.cs | 4 + ...gnTimeResolveAssemblyReferencesInput.cache | Bin 0 -> 6779 bytes ...io_bypasser.csproj.AssemblyReference.cache | Bin 0 -> 4084 bytes 8 files changed, 232 insertions(+) create mode 100644 aio_bypasser.sln create mode 100644 aio_bypasser/App.config create mode 100644 aio_bypasser/Program.cs create mode 100644 aio_bypasser/Properties/AssemblyInfo.cs create mode 100644 aio_bypasser/aio_bypasser.csproj create mode 100644 aio_bypasser/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs create mode 100644 aio_bypasser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache create mode 100644 aio_bypasser/obj/Debug/aio_bypasser.csproj.AssemblyReference.cache diff --git a/aio_bypasser.sln b/aio_bypasser.sln new file mode 100644 index 0000000..84ed6ff --- /dev/null +++ b/aio_bypasser.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.32413.511 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "aio_bypasser", "aio_bypasser\aio_bypasser.csproj", "{28701A38-8EBE-4A6D-A362-F4466E75BC12}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {28701A38-8EBE-4A6D-A362-F4466E75BC12}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {28701A38-8EBE-4A6D-A362-F4466E75BC12}.Debug|Any CPU.Build.0 = Debug|Any CPU + {28701A38-8EBE-4A6D-A362-F4466E75BC12}.Release|Any CPU.ActiveCfg = Release|Any CPU + {28701A38-8EBE-4A6D-A362-F4466E75BC12}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {99CC2BEC-5FB0-4A40-94B4-AC6779C44A59} + EndGlobalSection +EndGlobal diff --git a/aio_bypasser/App.config b/aio_bypasser/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/aio_bypasser/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/aio_bypasser/Program.cs b/aio_bypasser/Program.cs new file mode 100644 index 0000000..e36a028 --- /dev/null +++ b/aio_bypasser/Program.cs @@ -0,0 +1,108 @@ +using System; +using System.Collections.Generic; +using System.Net.Http; +using System.Threading.Tasks; +using Newtonsoft.Json; + +namespace BypassVIP_API +{ + internal class Response + { + public bool Success { get; set; } + public string Website { get; set; } + public string Query { get; set; } + public string Destination { get; set; } + public bool Cache { get; set; } + public int TimeMs { get; set; } + + } + + public static class Program + { + private static readonly HttpClient Client = new HttpClient(); + + public static void Main(string[] args) + { + while (true) + { + Console.Clear(); + Console.ForegroundColor = ConsoleColor.Magenta; + Console.WriteLine(@" + █████╗ ██╗ ██████╗ ██████╗ ██╗ ██╗██████╗ █████╗ ███████╗███████╗███████╗██████╗ + ██╔══██╗██║██╔═══██╗ ██╔══██╗╚██╗ ██╔╝██╔══██╗██╔══██╗██╔════╝██╔════╝██╔════╝██╔══██╗ + ███████║██║██║ ██║ ██████╔╝ ╚████╔╝ ██████╔╝███████║███████╗███████╗█████╗ ██████╔╝ + ██╔══██║██║██║ ██║ ██╔══██╗ ╚██╔╝ ██╔═══╝ ██╔══██║╚════██║╚════██║██╔══╝ ██╔══██╗ + ██║ ██║██║╚██████╔╝ ██████╔╝ ██║ ██║ ██║ ██║███████║███████║███████╗██║ ██║ + ╚═╝ ╚═╝╚═╝ ╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝╚═╝ ╚═╝ + https://github.com/TWIST-X7/Aio-Bypasser + Made By TWISTX7#9122 +"); + Console.ResetColor(); + Console.Write("Enter your url here: "); + string userinput = Console.ReadLine(); + var result = Bypass(userinput).Result; + if (result.Success == true) + { + Console.WriteLine(""); + var originalColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("Bypassing : "); + Console.ForegroundColor = ConsoleColor.White; + Console.Write(result.Success + "\n"); + Console.ForegroundColor = originalColor; + var originalColor2 = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("Website : "); + Console.ForegroundColor = ConsoleColor.White; + Console.Write(result.Website + "\n"); + Console.ForegroundColor = originalColor2; + var originalColor3 = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("Original Url : "); + Console.ForegroundColor = ConsoleColor.White; + Console.Write(result.Query + "\n"); + Console.ForegroundColor = originalColor3; + var originalColor4 = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Green; + Console.Write("Bypassed Url : "); + Console.ForegroundColor = ConsoleColor.White; + Console.Write(result.Destination + "\n"); + Console.ForegroundColor = originalColor4; + + //Console.WriteLine(result.TimeMs); + Console.WriteLine(""); + Console.Write("Press Anything To Continue..."); + string user = Console.ReadLine(); + } + else if (result.Success == false) + { + Console.WriteLine(""); + var originalColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.DarkRed; + Console.Write("Error : "); + Console.ForegroundColor = ConsoleColor.White; + Console.Write("Unsupported Url ! Or Try Again!" + "\n"); + Console.ForegroundColor = originalColor; + Console.WriteLine(""); + Console.Write("Press Anything To Try Again..."); + string user = Console.ReadLine(); + } + + + } + } + + private static async Task Bypass(string url) + { + var values = new Dictionary + { + {"url", url} + }; + + var response = await Client.PostAsync("https://api.bypass.vip/", new FormUrlEncodedContent(values)); + var responseString = await response.Content.ReadAsStringAsync(); + + return JsonConvert.DeserializeObject(responseString); + } + } +} diff --git a/aio_bypasser/Properties/AssemblyInfo.cs b/aio_bypasser/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..2ab70eb --- /dev/null +++ b/aio_bypasser/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("aio_bypasser")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("aio_bypasser")] +[assembly: AssemblyCopyright("Copyright © 2022")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("28701a38-8ebe-4a6d-a362-f4466e75bc12")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/aio_bypasser/aio_bypasser.csproj b/aio_bypasser/aio_bypasser.csproj new file mode 100644 index 0000000..8cbb4b9 --- /dev/null +++ b/aio_bypasser/aio_bypasser.csproj @@ -0,0 +1,53 @@ + + + + + Debug + AnyCPU + {28701A38-8EBE-4A6D-A362-F4466E75BC12} + Exe + aio_bypasser + aio_bypasser + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/aio_bypasser/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/aio_bypasser/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/aio_bypasser/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/aio_bypasser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/aio_bypasser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000000000000000000000000000000000000..bed131fafa628b49275244dcfd5bea46f65ffbdb GIT binary patch literal 6779 zcmeHMZBH9V5VpZ=FoYCSN(dyW^HMcQ-IE>OBk_USxIs-2vK?9pTV#E=HXH74ue*DI zi})@51yz4yJ9Dn`)Pq;@8~T8vPd>LT#M^Q;lfwH|QqN=3C{elPdcIZq^`v+s#&)u)~fl2Z`(yl9d<0_VYjJ5 z>(DlRp{*!v3+DS6D=SnsnGT1Q{kmd$8B{K_LGE)o5nVR%0O=X!;X&&rQeV`_rmnz0RDH`A*oYjHTUcb-)wNpYCOdAasZsc$)?c^Ya&__e zAVi~xqHs4wq5PJ|RG&A{AV8ytp+SK5>xZ)zM;@FU1~HaQU~vQm(1BR;4hZ-dMUg}? zhGHDV7`Y2FMkYWMPD>r;^rj3%`j|>q4asiR*xsy!95QpXXsj5oGhGVWp_`j0XXGAe zYUJNkKPcdzRY&;LsuqOlJIvLpO1aptw>%2`S6=)g>Yu6wR`;7A6;RF!(4rDk!afQ) zaE}8SCN&RO@+&lb62!xc)^(|V+e(sx9@E$(9Znz}*iWWVL8sT(P)<0C+hiI_V^Etl z7P1Suwd6POJvNp?*W#PZpfHZP>saJIloN(!+hjH1LO(6d1;2w~Eak9GnvKsm$-B}0V%I8)rob1K5tG4Ic>uBW52UL2&B<2B* zMgrF*i2=+*fUzQh30bUU0n#HtI*JmhKs7Z`l$q{b=K}1AbVdj>6kC&DxKYBFJvDZsqpXOkLH#C^XPzt8ukz1rw#@)?|Z-6w^V z6f>#hIfxID9Pue+yaC2{P)HOZ3mQlE8&Kl&#>9~hU#U$Yd&4J%92xB;--DPv&0m|A zJtHrmb?WpjcQq#BFhjQmo9B$Yg!;MD%Jn(N)){#P?fs$MKY*r*(-J*Kf{0nkGm?R- zFJYf`?sk}X3JEq|E69%^qFE|pfa+Q#QBb5NwSW?*0s;>(cY>wIxWH%lufa+7U;ls% LPO>mFT^s)w#a7Cb literal 0 HcmV?d00001 diff --git a/aio_bypasser/obj/Debug/aio_bypasser.csproj.AssemblyReference.cache b/aio_bypasser/obj/Debug/aio_bypasser.csproj.AssemblyReference.cache new file mode 100644 index 0000000000000000000000000000000000000000..96ecd7cb682adba89a7b94e041e57945c80bf24e GIT binary patch literal 4084 zcmcIn&2H2%5YC7nEn5WQM@W@8>=6!Fg;o@LL6C06fv(V|LL4GhuGiVMnmAkAyL5Z$ znKMto8*oEBNblTu4dUPwLUM^R$svm4Xgu?MGxJUM-;4tv;D+aUK>eNYy-KHwCWAc@ zb3J%;`r`THaLgmFxMY0rT5Fyh#e(Z_Uoe&GG&12{_C5cUs^gH1h6jIF%Pq1^o`s2K zsfxuBnZz+bc8>S!>yIa2E_z=;Ze*wInYC6%dDbP$nX}}bkS8^8 z+jK#L8wVVK>wiFQ0WiQrN7Q&BjYv2NxDqrLXU$WfOdY`5Wl|~L!o_M1EW6BsU1}(? zw}6}Bso_#*rJ!pv!qyvFMif}tgIi#QlM;n9eu_+-=!CdSNg#eOqiWtYR~S`?1TnxZ zS7f^@NfW^uPBq+-(GJ! zgQG=~wQSbT82$k8z`0lGici^0$Z4aH%L$66C;;ouxuG;%&6UtRlf9*2ycvpR|EdMl z>98{5hP*YVuHB)|h8RVJ)b6SXvo2ed9S5r&3RU+pz`g5|IiFmDlepc;jsG)HWvx?T gu~SP8ZKwl025nfvf~o_Bv4FFM5@yw+T~}!T4S`GRWdHyG literal 0 HcmV?d00001