Skip to content

Commit

Permalink
Upload
Browse files Browse the repository at this point in the history
  • Loading branch information
TWIST-X7 committed Apr 23, 2022
1 parent 0c19dfa commit 8ecf48c
Show file tree
Hide file tree
Showing 8 changed files with 232 additions and 0 deletions.
25 changes: 25 additions & 0 deletions aio_bypasser.sln
Original file line number Diff line number Diff line change
@@ -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
6 changes: 6 additions & 0 deletions aio_bypasser/App.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" />
</startup>
</configuration>
108 changes: 108 additions & 0 deletions aio_bypasser/Program.cs
Original file line number Diff line number Diff line change
@@ -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<Response> Bypass(string url)
{
var values = new Dictionary<string, string>
{
{"url", url}
};

var response = await Client.PostAsync("https://api.bypass.vip/", new FormUrlEncodedContent(values));
var responseString = await response.Content.ReadAsStringAsync();

return JsonConvert.DeserializeObject<Response>(responseString);
}
}
}
36 changes: 36 additions & 0 deletions aio_bypasser/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -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")]
53 changes: 53 additions & 0 deletions aio_bypasser/aio_bypasser.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{28701A38-8EBE-4A6D-A362-F4466E75BC12}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>aio_bypasser</RootNamespace>
<AssemblyName>aio_bypasser</AssemblyName>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// <autogenerated />
using System;
using System.Reflection;
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
Binary file not shown.
Binary file not shown.

0 comments on commit 8ecf48c

Please sign in to comment.