Skip to content

Commit

Permalink
Add source
Browse files Browse the repository at this point in the history
Source of crack me.
  • Loading branch information
ida64pro authored May 3, 2024
1 parent 5628053 commit 9d21d12
Show file tree
Hide file tree
Showing 21 changed files with 176 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Authorization_App_v2/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.8" />
</startup>
</configuration>
53 changes: 53 additions & 0 deletions Authorization_App_v2/Authorization_App_v2.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>{8EA7196F-9269-4312-BE62-1B61A0DED5EB}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Authorization_App_v2</RootNamespace>
<AssemblyName>Authorization_App_v2</AssemblyName>
<TargetFrameworkVersion>v4.8</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>
57 changes: 57 additions & 0 deletions Authorization_App_v2/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Http;
using System.Threading.Tasks;
using System.Net;
using System.Globalization;

namespace Authorization_System
{
internal class Program
{
static void Main(string[] args)
{
// URL web site.
string url = "https://pastebin.com/raw/AYKJs4Cd";
string text = "null";
try
{
// Create example Weblient
using (WebClient client = new WebClient())
{
// Set encode UTF-8
client.Encoding = System.Text.Encoding.UTF8;

// Reading text from web-site.
text = client.DownloadString(url);
}
}
catch (Exception ex)
{
Console.WriteLine("Exception, try later. Error: " + ex);
}
// Creat cycle to indefinitely again.
for (;;)
{
Console.Write("Enter password: ");
string v = Console.ReadLine();
string password = v;

if (password == text)
{
// if password correctly
Console.WriteLine("Success.");
break;
}
else
{
// if password incorrect
Console.WriteLine("Password incorrect.");
}
}
Console.ReadKey();
}
}
}
36 changes: 36 additions & 0 deletions Authorization_App_v2/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;

// Общие сведения об этой сборке предоставляются следующим набором
// набора атрибутов. Измените значения этих атрибутов для изменения сведений,
// связанные с этой сборкой.
[assembly: AssemblyTitle("CrackMe")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("yammka")]
[assembly: AssemblyCopyright("Copyright © 2024")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
// из модели COM задайте для атрибута ComVisible этого типа значение true.
[assembly: ComVisible(false)]

// Следующий GUID представляет идентификатор typelib, если этот проект доступен из модели COM
[assembly: Guid("1a152f6b-7eae-4f4b-85da-fe0bad341eef")]

// Сведения о версии сборки состоят из указанных ниже четырех значений:
//
// Основной номер версии
// Дополнительный номер версии
// Номер сборки
// Номер редакции
//
// Можно задать все значения или принять номера сборки и редакции по умолчанию
// используя "*", как показано ниже:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.1")]
[assembly: AssemblyFileVersion("1.1")]
Binary file not shown.
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.8" />
</startup>
</configuration>
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2f1b5aa9ca9324e732c8dc8ad98b9a6b4836d80a
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Debug\Authorization_App_v2.exe.config
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Debug\Authorization_App_v2.exe
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Debug\Authorization_App_v2.pdb
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Debug\Authorization_App_v2.csproj.AssemblyReference.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Debug\Authorization_App_v2.csproj.SuggestedBindingRedirects.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Debug\Authorization_App_v2.csproj.CoreCompileInputs.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Debug\Authorization_App_v2.exe
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Debug\Authorization_App_v2.pdb
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
b1cac3c5db117414049b7ee1b7ead321fc446162
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Release\Authorization_App_v2.exe.config
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Release\Authorization_App_v2.exe
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\bin\Release\Authorization_App_v2.pdb
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Release\Authorization_App_v2.csproj.AssemblyReference.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Release\Authorization_App_v2.csproj.SuggestedBindingRedirects.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Release\Authorization_App_v2.csproj.CoreCompileInputs.cache
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Release\Authorization_App_v2.exe
F:\VS Studio 2022 Projects\Less\Authorization_App_v2\obj\Release\Authorization_App_v2.pdb
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit 9d21d12

Please sign in to comment.