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 0000000..bed131f Binary files /dev/null and b/aio_bypasser/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ 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 0000000..96ecd7c Binary files /dev/null and b/aio_bypasser/obj/Debug/aio_bypasser.csproj.AssemblyReference.cache differ