Skip to content
This repository has been archived by the owner on Jun 2, 2023. It is now read-only.

Commit

Permalink
53X Again 29!
Browse files Browse the repository at this point in the history
  • Loading branch information
Taiizor authored and Taiizor committed Mar 5, 2021
1 parent 2e89b40 commit fd0bf62
Show file tree
Hide file tree
Showing 101 changed files with 2,708 additions and 692 deletions.
414 changes: 207 additions & 207 deletions Portscan/LAST.Designer.cs

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions Portscan/LAST.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ private void LAST_Load(object sender, EventArgs e)
{
try
{
Socket UDPC = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Udp);
Socket UDPC = new(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Udp);
UDPC.Dispose();
}
catch
Expand Down Expand Up @@ -232,7 +232,7 @@ private void SCN1(int P, string IP)
{
if (!Start)
{
Socket Socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, GTU());
Socket Socket = new(AddressFamily.InterNetwork, SocketType.Stream, GTU());
try
{
Socket.Connect(IP, P);
Expand All @@ -254,7 +254,7 @@ private async void SCN2(int P, string IP)
{
if (!Start)
{
Socket Socket = new Socket(AddressFamily.InterNetwork, SocketType.Stream, GTU());
Socket Socket = new(AddressFamily.InterNetwork, SocketType.Stream, GTU());
try
{
await Socket.ConnectAsync(IP, P);
Expand Down Expand Up @@ -291,7 +291,7 @@ private void Scanner_DoWork(object sender, DoWorkEventArgs e)
if (!Start)
{
int P = C;
Task TASK = new Task(delegate ()
Task TASK = new(delegate ()
{
if (FST.Checked)
{
Expand Down
5 changes: 1 addition & 4 deletions Portscan/LAST.resx
Original file line number Diff line number Diff line change
Expand Up @@ -177,11 +177,8 @@
<metadata name="FST.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEIAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAANXu/EnU7/rJ1e7699Xu+sjU8ftHAAAAAAAAAAAAAAAAAAAAAAAA
Expand Down
656 changes: 328 additions & 328 deletions Portscan/MAIN.Designer.cs

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions Portscan/MAIN.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ private void MAIN_Load(object sender, EventArgs e)
{
try
{
Socket UDPC = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Udp);
Socket UDPC = new(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Udp);
UDPC.Dispose();
}
catch
{
UDP.Visible = false;
TCP.Visible = false;
DOMAIN.Size = new Size(250, 29);
ForeverStatusBar INFO = new ForeverStatusBar
ForeverStatusBar INFO = new()
{
Text = "TCP/UDP Information : Selection Disabled Because UDP Is Not Supported!",
TextColor = Color.FromArgb(136, 140, 155),
Expand Down
5 changes: 1 addition & 4 deletions Portscan/MAIN.resx
Original file line number Diff line number Diff line change
Expand Up @@ -183,11 +183,8 @@
<metadata name="ROL.Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$Locked" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="$Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<data name="$this.Icon" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>
AAABAAEAQEAAAAEAIAAoQgAAFgAAACgAAABAAAAAgAAAAAEAIAAAAAAAAEIAAAAAAAAAAAAAAAAAAAAA
AAAAAAAAAAAAAAAAAAAAAAAAAAAAANXu/EnU7/rJ1e7699Xu+sjU8ftHAAAAAAAAAAAAAAAAAAAAAAAA
Expand Down
3 changes: 3 additions & 0 deletions Portscan/Portscan.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ internal static class Portscan
private static void Main()
{
Application.EnableVisualStyles();
#if NET5_0 || NET6_0
Application.SetHighDpiMode(HighDpiMode.SystemAware);
#endif
Application.SetCompatibleTextRenderingDefault(false);
Control.CheckForIllegalCrossThreadCalls = false;
Application.Run(new MAIN());
Expand Down
117 changes: 12 additions & 105 deletions Portscan/Portscan.csproj
Original file line number Diff line number Diff line change
@@ -1,36 +1,13 @@
<?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')" />
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{B7CB6525-7D76-4F78-8895-2AFB97B070F1}</ProjectGuid>
<TargetFrameworks>net48;net5.0-windows;net6.0-windows</TargetFrameworks>
<OutputType>WinExe</OutputType>
<RootNamespace>Portscan</RootNamespace>
<AssemblyName>Portscan</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>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<UseWindowsForms>true</UseWindowsForms>
<ImportWindowsDesktopTargets>true</ImportWindowsDesktopTargets>
<AnalysisLevel>preview</AnalysisLevel>
<LangVersion>preview</LangVersion>
<NeutralLanguage>en</NeutralLanguage>
</PropertyGroup>
<PropertyGroup>
<StartupObject>Portscan.Portscan</StartupObject>
Expand All @@ -39,81 +16,11 @@
<ApplicationIcon>Resources\Scan1.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.CSharp" />
<Reference Include="Microsoft.VisualBasic" />
<Reference Include="ReaLTaiizor, Version=3.7.8.2, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\ReaLTaiizor.3.7.8.2\lib\net48\ReaLTaiizor.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Include="LAST.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="LAST.Designer.cs">
<DependentUpon>LAST.cs</DependentUpon>
</Compile>
<Compile Include="MAIN.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="MAIN.Designer.cs">
<DependentUpon>MAIN.cs</DependentUpon>
</Compile>
<Compile Include="Portscan.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="LAST.resx">
<DependentUpon>LAST.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="MAIN.resx">
<DependentUpon>MAIN.cs</DependentUpon>
</EmbeddedResource>
<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="packages.config" />
<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>
<ItemGroup>
<None Include="Resources\Scan1.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Scan2.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Scan3.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Scan4.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Scan5.ico" />
</ItemGroup>
<ItemGroup>
<None Include="Resources\Scan6.ico" />
<Resource Include="Resources\Scan.png" />
</ItemGroup>
<ItemGroup>
<Resource Include="Resources\Scan.png" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.VisualBasic" Version="10.4.0-preview.18571.3" />
<PackageReference Include="ReaLTaiizor" Version="3.7.8.2" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
12 changes: 12 additions & 0 deletions Portscan/Portscan.csproj.user
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup />
<ItemGroup>
<Compile Update="LAST.cs">
<SubType>Form</SubType>
</Compile>
<Compile Update="MAIN.cs">
<SubType>Form</SubType>
</Compile>
</ItemGroup>
</Project>
6 changes: 3 additions & 3 deletions Portscan/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// denetlenir. Bütünleştirilmiş kod ile ilişkili bilgileri değiştirmek için
// bu öznitelik değerlerini değiştirin.
[assembly: AssemblyTitle("Portscan")]
[assembly: AssemblyDescription("Portscan v1.4")]
[assembly: AssemblyDescription("Portscan v1.5")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("Taiizor")]
[assembly: AssemblyProduct("Portscan")]
Expand All @@ -31,5 +31,5 @@
// Tüm değerleri belirtebilir veya varsayılan Derleme ve Düzeltme Numaralarını kullanmak için
// aşağıda gösterildiği gibi '*' kullanabilirsiniz:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.4.0.0")]
[assembly: AssemblyFileVersion("1.4.0.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]
Binary file removed Portscan/bin/Release/Portscan.pdb
Binary file not shown.
Binary file not shown.
6 changes: 6 additions & 0 deletions Portscan/bin/Release/net48/Portscan.exe.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>
Binary file added Portscan/bin/Release/net48/Portscan.pdb
Binary file not shown.
Loading

0 comments on commit fd0bf62

Please sign in to comment.