Skip to content

Commit 67bc6e4

Browse files
authored
Add files via upload
1 parent 3a748c6 commit 67bc6e4

File tree

83 files changed

+18372
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+18372
-0
lines changed

Bruteforce_Scanner_v1.sln

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.31729.503
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Bruteforce_Scanner_v1", "Bruteforce_Scanner_v1\Bruteforce_Scanner_v1.csproj", "{1F995617-B583-4E1E-A13C-52D382189BFD}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{1F995617-B583-4E1E-A13C-52D382189BFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{1F995617-B583-4E1E-A13C-52D382189BFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{1F995617-B583-4E1E-A13C-52D382189BFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{1F995617-B583-4E1E-A13C-52D382189BFD}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {8FE87081-9B28-480A-B8E3-3941FC04C231}
24+
EndGlobalSection
25+
EndGlobal

Bruteforce_Scanner_v1/About.Designer.cs

+328
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Bruteforce_Scanner_v1/About.cs

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.ComponentModel;
4+
using System.Data;
5+
using System.Diagnostics;
6+
using System.Drawing;
7+
using System.Linq;
8+
using System.Text;
9+
using System.Threading.Tasks;
10+
using System.Windows.Forms;
11+
using RelyUI.Controls;
12+
13+
namespace Bruteforce_Scanner_v1
14+
{
15+
public partial class About : RelyForm
16+
{
17+
public About()
18+
{
19+
InitializeComponent();
20+
}
21+
22+
private void GitHub_BTN_Click(object sender, EventArgs e)// GitHub
23+
{
24+
Process.Start("https://GitHub.Com/AGC007");
25+
}
26+
27+
private void Donate_IRR_BTN_Click(object sender, EventArgs e)// Donate_IRR
28+
{
29+
Process.Start("https://t.me/AGC007");
30+
}
31+
32+
private void Donate_BTC_BTN_Click(object sender, EventArgs e)// Donate_BTC
33+
{
34+
Process.Start("https://t.me/AGC007");
35+
}
36+
37+
private void API_BTN_Click(object sender, EventArgs e)// API
38+
{
39+
Process.Start("https://agc007.online/AGC007/API/Bruteforce_Scanner.php?LoginPage=");
40+
}
41+
42+
private void Exit_BTN_Click(object sender, EventArgs e)// Exit
43+
{
44+
this.Close();
45+
}
46+
}
47+
}

Bruteforce_Scanner_v1/About.resx

+833
Large diffs are not rendered by default.

Bruteforce_Scanner_v1/App.config

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8" ?>
2+
<configuration>
3+
<startup>
4+
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
5+
</startup>
6+
</configuration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{1F995617-B583-4E1E-A13C-52D382189BFD}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>Bruteforce_Scanner_v1</RootNamespace>
10+
<AssemblyName>Bruteforce Scanner [v1] By AGC007™</AssemblyName>
11+
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
<PublishUrl>publish\</PublishUrl>
16+
<Install>true</Install>
17+
<InstallFrom>Disk</InstallFrom>
18+
<UpdateEnabled>false</UpdateEnabled>
19+
<UpdateMode>Foreground</UpdateMode>
20+
<UpdateInterval>7</UpdateInterval>
21+
<UpdateIntervalUnits>Days</UpdateIntervalUnits>
22+
<UpdatePeriodically>false</UpdatePeriodically>
23+
<UpdateRequired>false</UpdateRequired>
24+
<MapFileExtensions>true</MapFileExtensions>
25+
<ApplicationRevision>0</ApplicationRevision>
26+
<ApplicationVersion>1.0.0.%2a</ApplicationVersion>
27+
<IsWebBootstrapper>false</IsWebBootstrapper>
28+
<UseApplicationTrust>false</UseApplicationTrust>
29+
<BootstrapperEnabled>true</BootstrapperEnabled>
30+
</PropertyGroup>
31+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
32+
<PlatformTarget>AnyCPU</PlatformTarget>
33+
<DebugSymbols>true</DebugSymbols>
34+
<DebugType>full</DebugType>
35+
<Optimize>false</Optimize>
36+
<OutputPath>bin\Debug\</OutputPath>
37+
<DefineConstants>DEBUG;TRACE</DefineConstants>
38+
<ErrorReport>prompt</ErrorReport>
39+
<WarningLevel>4</WarningLevel>
40+
</PropertyGroup>
41+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
42+
<PlatformTarget>AnyCPU</PlatformTarget>
43+
<DebugType>pdbonly</DebugType>
44+
<Optimize>true</Optimize>
45+
<OutputPath>bin\Release\</OutputPath>
46+
<DefineConstants>TRACE</DefineConstants>
47+
<ErrorReport>prompt</ErrorReport>
48+
<WarningLevel>4</WarningLevel>
49+
</PropertyGroup>
50+
<PropertyGroup>
51+
<ApplicationIcon>Daco_3599653.ico</ApplicationIcon>
52+
</PropertyGroup>
53+
<PropertyGroup />
54+
<ItemGroup>
55+
<Reference Include="Json, Version=1.0.0.0, Culture=neutral, PublicKeyToken=c6752e45808247c2, processorArchitecture=MSIL">
56+
<HintPath>..\packages\JSON.1.0.1\lib\net40\Json.dll</HintPath>
57+
</Reference>
58+
<Reference Include="Leaf.xNet, Version=5.2.10.0, Culture=neutral, processorArchitecture=MSIL">
59+
<HintPath>..\packages\Leaf.xNet.5.2.10\lib\net45\Leaf.xNet.dll</HintPath>
60+
</Reference>
61+
<Reference Include="MaterialSkin">
62+
<HintPath>E:\پروژه\MY_Project\CODE\DESIEN\MatrialUi\MaterialSkin.dll</HintPath>
63+
</Reference>
64+
<Reference Include="MetroFramework">
65+
<HintPath>E:\پروژه\MY_Project\CODE\DESIEN\MetroUi\MetroFramework.dll</HintPath>
66+
</Reference>
67+
<Reference Include="MetroSuite 2.0">
68+
<HintPath>E:\پروژه\MY_Project\CODE\DESIEN\MetroSU\MetroSuite 2.0.dll</HintPath>
69+
</Reference>
70+
<Reference Include="Microsoft.VisualBasic" />
71+
<Reference Include="RelyUI">
72+
<HintPath>E:\پروژه\MY_Project\CODE\DESIEN\RelyUi\RelyUI.dll</HintPath>
73+
</Reference>
74+
<Reference Include="System" />
75+
<Reference Include="System.Core" />
76+
<Reference Include="System.Web" />
77+
<Reference Include="System.Xml.Linq" />
78+
<Reference Include="System.Data.DataSetExtensions" />
79+
<Reference Include="Microsoft.CSharp" />
80+
<Reference Include="System.Data" />
81+
<Reference Include="System.Deployment" />
82+
<Reference Include="System.Drawing" />
83+
<Reference Include="System.Net.Http" />
84+
<Reference Include="System.Windows.Forms" />
85+
<Reference Include="System.Xml" />
86+
<Reference Include="XanderUI">
87+
<HintPath>E:\پروژه\MY_Project\CODE\DESIEN\XanderUi\XanderUI.dll</HintPath>
88+
</Reference>
89+
</ItemGroup>
90+
<ItemGroup>
91+
<Compile Include="About.cs">
92+
<SubType>Form</SubType>
93+
</Compile>
94+
<Compile Include="About.Designer.cs">
95+
<DependentUpon>About.cs</DependentUpon>
96+
</Compile>
97+
<Compile Include="Form1.cs">
98+
<SubType>Form</SubType>
99+
</Compile>
100+
<Compile Include="Form1.Designer.cs">
101+
<DependentUpon>Form1.cs</DependentUpon>
102+
</Compile>
103+
<Compile Include="Program.cs" />
104+
<Compile Include="Properties\AssemblyInfo.cs" />
105+
<EmbeddedResource Include="About.resx">
106+
<DependentUpon>About.cs</DependentUpon>
107+
</EmbeddedResource>
108+
<EmbeddedResource Include="Form1.resx">
109+
<DependentUpon>Form1.cs</DependentUpon>
110+
</EmbeddedResource>
111+
<EmbeddedResource Include="Properties\Resources.resx">
112+
<Generator>ResXFileCodeGenerator</Generator>
113+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
114+
<SubType>Designer</SubType>
115+
</EmbeddedResource>
116+
<Compile Include="Properties\Resources.Designer.cs">
117+
<AutoGen>True</AutoGen>
118+
<DependentUpon>Resources.resx</DependentUpon>
119+
<DesignTime>True</DesignTime>
120+
</Compile>
121+
<None Include="packages.config" />
122+
<None Include="Properties\Settings.settings">
123+
<Generator>SettingsSingleFileGenerator</Generator>
124+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
125+
</None>
126+
<Compile Include="Properties\Settings.Designer.cs">
127+
<AutoGen>True</AutoGen>
128+
<DependentUpon>Settings.settings</DependentUpon>
129+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
130+
</Compile>
131+
</ItemGroup>
132+
<ItemGroup>
133+
<None Include="App.config" />
134+
</ItemGroup>
135+
<ItemGroup>
136+
<BootstrapperPackage Include=".NETFramework,Version=v4.5.2">
137+
<Visible>False</Visible>
138+
<ProductName>Microsoft .NET Framework 4.5.2 %28x86 and x64%29</ProductName>
139+
<Install>true</Install>
140+
</BootstrapperPackage>
141+
<BootstrapperPackage Include="Microsoft.Net.Framework.3.5.SP1">
142+
<Visible>False</Visible>
143+
<ProductName>.NET Framework 3.5 SP1</ProductName>
144+
<Install>false</Install>
145+
</BootstrapperPackage>
146+
</ItemGroup>
147+
<ItemGroup>
148+
<Content Include="Daco_3599653.ico" />
149+
</ItemGroup>
150+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
151+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<PublishUrlHistory>publish\</PublishUrlHistory>
5+
<InstallUrlHistory />
6+
<SupportUrlHistory />
7+
<UpdateUrlHistory />
8+
<BootstrapperUrlHistory />
9+
<ErrorReportUrlHistory />
10+
<FallbackCulture>en-US</FallbackCulture>
11+
<VerifyUploadedFiles>false</VerifyUploadedFiles>
12+
</PropertyGroup>
13+
</Project>
41.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)