Skip to content

Commit 8c6494b

Browse files
authored
first upload
first upload fully source
1 parent 20b6d70 commit 8c6494b

Some content is hidden

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

44 files changed

+20367
-0
lines changed

libs/Leaf.xNet.dll

130 KB
Binary file not shown.

libs/Leaf.xNet.xml

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

src/CheckLiveIG.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 17
4+
VisualStudioVersion = 17.11.35222.181
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CheckLiveIG", "CheckLiveIG\CheckLiveIG.csproj", "{30423729-49BF-422B-B7A2-3318CBF5A24D}"
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+
{30423729-49BF-422B-B7A2-3318CBF5A24D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{30423729-49BF-422B-B7A2-3318CBF5A24D}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{30423729-49BF-422B-B7A2-3318CBF5A24D}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{30423729-49BF-422B-B7A2-3318CBF5A24D}.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 = {E8F375D1-B9CF-40DA-87D8-F0938278A425}
24+
EndGlobalSection
25+
EndGlobal

src/CheckLiveIG/API/IGAnroidApi.cs

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
using CheckLiveIG.Enums;
2+
using CheckLiveIG.Interfaces;
3+
using CheckLiveIG.Models;
4+
using CheckLiveIG.Request;
5+
using Leaf.xNet;
6+
using System;
7+
using System.Collections.Generic;
8+
using System.Linq;
9+
using System.Text;
10+
using System.Threading.Tasks;
11+
12+
namespace CheckLiveIG.API
13+
{
14+
public class IGAnroidApi : IIGAccountQueryAPI
15+
{
16+
private readonly string _samsung_ug = "Instagram 361.0.0.0.84 Android (28/9; 480dpi; 1080x1920; samsung; SM-G930F; herolte; samsungexynos8890; en_US; 673256705)";
17+
private HttpConfig _httpConfig;
18+
public IGAnroidApi(HttpConfig httpConfig)
19+
{
20+
_httpConfig = httpConfig;
21+
}
22+
public IGApiQueryResult QueryInfoAccount(string accountId)
23+
{
24+
var result = new IGApiQueryResult();
25+
HttpRequest httpRequest = HttpFactory.NewClient(_httpConfig);
26+
HttpResponse httpResponse = null;
27+
httpRequest.AddHeader("User-Agent", _samsung_ug);
28+
string payload = string.Empty;
29+
string resultapi = string.Empty;
30+
try
31+
{
32+
httpResponse = httpRequest.Get($"https://i.instagram.com/api/v1/users/{accountId}/info/");
33+
resultapi = httpResponse.ToString();
34+
if (resultapi.Contains("username\":") || resultapi.Contains("profile_pic_url\":"))
35+
{
36+
result.IgStatusCode = IgApiCallStatusCode.Success;
37+
}
38+
else if (resultapi.Contains("user_not_found\""))
39+
{
40+
result.IgStatusCode = IgApiCallStatusCode.Checkpoint;
41+
}
42+
else
43+
{
44+
result.IgStatusCode = IgApiCallStatusCode.UnknownBlockType;
45+
}
46+
}
47+
catch
48+
{
49+
result.IgStatusCode = IgApiCallStatusCode.Error;
50+
}
51+
finally
52+
{
53+
httpResponse = null;
54+
httpRequest?.Dispose();
55+
payload = string.Empty;
56+
resultapi = string.Empty;
57+
}
58+
return result;
59+
}
60+
}
61+
}

src/CheckLiveIG/API/IGWebApi.cs

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
1+
using CheckLiveIG.Enums;
2+
using CheckLiveIG.Interfaces;
3+
using CheckLiveIG.Models;
4+
using CheckLiveIG.Request;
5+
using Leaf.xNet;
6+
using System;
7+
using System.Collections.Generic;
8+
using System.Linq;
9+
using System.Security.Cryptography;
10+
using System.Text;
11+
using System.Text.RegularExpressions;
12+
using System.Threading.Tasks;
13+
14+
namespace CheckLiveIG.API
15+
{
16+
public class IGWebApi : IIGAccountQueryAPI
17+
{
18+
//private HttpRequest _httpRequest;
19+
private HttpConfig _httpConfig;
20+
public IGWebApi(HttpConfig httpConfig)
21+
{
22+
_httpConfig = httpConfig;
23+
}
24+
public IGApiQueryResult QueryInfoAccount(string accountId)
25+
{
26+
var result = new IGApiQueryResult();
27+
HttpRequest httpRequest = HttpFactory.NewClient(_httpConfig);
28+
HttpResponse httpResponse = null;
29+
PostHeaderBuilder(string.Empty, string.Empty).ToList().ForEach(header =>
30+
{
31+
httpRequest.AddHeader(header.Key, header.Value);
32+
});
33+
httpRequest.AddHeader("x-fb-friendly-name", "PolarisProfilePageContentQuery");
34+
httpRequest.AddHeader("x-ig-app-id", "936619743392459");
35+
string payload = string.Empty;
36+
string resultapi = string.Empty;
37+
try
38+
{
39+
payload = CheckLiveDieUidFormData(accountId);
40+
httpResponse = httpRequest.Post("https://www.instagram.com/graphql/query", payload, HttpGlobal.ContentTypes.FormUrlEncoded);
41+
resultapi = httpResponse.ToString();
42+
if (resultapi.Contains("profile_pic_url\":") || resultapi.Contains("full_name\":"))
43+
{
44+
result.IgStatusCode = IgApiCallStatusCode.Success;
45+
}
46+
else if (resultapi.Contains("message\":\"execution error") && resultapi.Contains("status\":\"ok"))
47+
{
48+
result.IgStatusCode = IgApiCallStatusCode.Checkpoint;
49+
}
50+
else
51+
{
52+
result.IgStatusCode = IgApiCallStatusCode.UnknownBlockType;
53+
}
54+
}
55+
catch
56+
{
57+
result.IgStatusCode = IgApiCallStatusCode.Error;
58+
}
59+
finally
60+
{
61+
httpResponse = null;
62+
httpRequest?.Dispose();
63+
payload = string.Empty;
64+
resultapi = string.Empty;
65+
}
66+
return result;
67+
}
68+
private readonly string Chrome129WindowsUGStr = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.0.0 Safari/537.36";
69+
private string CheckLiveDieUidFormData(string uid)
70+
{
71+
Dictionary<string, string> formdata = new Dictionary<string, string>();
72+
formdata.Add("av", "0");
73+
formdata.Add("__user", "0");
74+
formdata.Add("fb_api_caller_class", "RelayModern");
75+
formdata.Add("fb_api_req_friendly_name", "PolarisProfilePageContentQuery");
76+
formdata.Add("variables", "{\"id\":\"" + uid + "\",\"render_surface\":\"PROFILE\"}");
77+
formdata.Add("server_timestamps", "true");
78+
formdata.Add("doc_id", "9539110062771438");
79+
return string.Join("&", formdata.Select(fdt => $"{fdt.Key}={fdt.Value}"));
80+
}
81+
private Dictionary<string, string> PostHeaderBuilder(string customorigin, string customreferer)
82+
{
83+
Dictionary<string, string> headers = new Dictionary<string, string>();
84+
headers.Add("accept", "*/*");
85+
headers.Add("accept-language", "en-US,en;q=0.9");
86+
if (!string.IsNullOrEmpty(customorigin))
87+
{
88+
headers.Add("origin", customorigin);
89+
}
90+
if (!string.IsNullOrEmpty(customreferer))
91+
{
92+
headers.Add("referer", customreferer);
93+
}
94+
headers.Add("priority", "u=1, i");
95+
headers.Add("sec-fetch-dest", "empty");
96+
headers.Add("sec-fetch-mode", "cors");
97+
headers.Add("sec-fetch-site", "same-origin");
98+
DesktopBrowserUGHeader().ToList().ForEach(header =>
99+
{
100+
headers.Add(header.Key, header.Value);
101+
});
102+
return headers;
103+
}
104+
private Dictionary<string, string> DesktopBrowserUGHeader()
105+
{
106+
Dictionary<string, string> headers = new Dictionary<string, string>();
107+
headers.Add("sec-ch-ua", "\"Google Chrome\";v=\"129\", \"Not=A?Brand\";v=\"8\", \"Chromium\";v=\"129\"");
108+
headers.Add("sec-ch-ua-mobile", "?0");
109+
headers.Add("sec-ch-ua-platform", "\"Windows\"");
110+
headers.Add("sec-ch-ua-model", "\"\"");
111+
headers.Add("sec-ch-ua-platform-version", "\"15.0.0\"");
112+
headers.Add("user-agent", Chrome129WindowsUGStr);
113+
return headers;
114+
}
115+
}
116+
}

src/CheckLiveIG/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.6.1" />
5+
</startup>
6+
</configuration>

src/CheckLiveIG/CheckLiveIG.csproj

+116
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,116 @@
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>{30423729-49BF-422B-B7A2-3318CBF5A24D}</ProjectGuid>
8+
<OutputType>WinExe</OutputType>
9+
<RootNamespace>CheckLiveIG</RootNamespace>
10+
<AssemblyName>CheckLiveIG</AssemblyName>
11+
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
12+
<FileAlignment>512</FileAlignment>
13+
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
14+
<Deterministic>true</Deterministic>
15+
</PropertyGroup>
16+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
17+
<PlatformTarget>AnyCPU</PlatformTarget>
18+
<DebugSymbols>true</DebugSymbols>
19+
<DebugType>full</DebugType>
20+
<Optimize>false</Optimize>
21+
<OutputPath>bin\Debug\</OutputPath>
22+
<DefineConstants>DEBUG;TRACE</DefineConstants>
23+
<ErrorReport>prompt</ErrorReport>
24+
<WarningLevel>4</WarningLevel>
25+
</PropertyGroup>
26+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
27+
<PlatformTarget>AnyCPU</PlatformTarget>
28+
<DebugType>pdbonly</DebugType>
29+
<Optimize>true</Optimize>
30+
<OutputPath>bin\Release\</OutputPath>
31+
<DefineConstants>TRACE</DefineConstants>
32+
<ErrorReport>prompt</ErrorReport>
33+
<WarningLevel>4</WarningLevel>
34+
</PropertyGroup>
35+
<PropertyGroup>
36+
<ApplicationIcon>instagram-application-logo_23-2151544100.ico</ApplicationIcon>
37+
</PropertyGroup>
38+
<ItemGroup>
39+
<Reference Include="Leaf.xNet, Version=5.2.10.0, Culture=neutral, processorArchitecture=MSIL">
40+
<HintPath>..\packages\Leaf.xNet.5.2.10\lib\net45\Leaf.xNet.dll</HintPath>
41+
</Reference>
42+
<Reference Include="System" />
43+
<Reference Include="System.Core" />
44+
<Reference Include="System.Web" />
45+
<Reference Include="System.Xml.Linq" />
46+
<Reference Include="System.Data.DataSetExtensions" />
47+
<Reference Include="Microsoft.CSharp" />
48+
<Reference Include="System.Data" />
49+
<Reference Include="System.Deployment" />
50+
<Reference Include="System.Drawing" />
51+
<Reference Include="System.Net.Http" />
52+
<Reference Include="System.Windows.Forms" />
53+
<Reference Include="System.Xml" />
54+
</ItemGroup>
55+
<ItemGroup>
56+
<Compile Include="API\IGAnroidApi.cs" />
57+
<Compile Include="API\IGWebApi.cs" />
58+
<Compile Include="Enums\IgApiCallStatusCode.cs" />
59+
<Compile Include="Interfaces\IIGAccountQueryAPI.cs" />
60+
<Compile Include="Models\IGApiQueryResult.cs" />
61+
<Compile Include="Models\ProxyInfoModel.cs" />
62+
<Compile Include="Request\CustomUserAgentConfig.cs" />
63+
<Compile Include="Request\HttpConfig.cs" />
64+
<Compile Include="Request\HttpFactory.cs" />
65+
<Compile Include="Request\HttpGlobal.cs" />
66+
<Compile Include="Singleton\IGAppSingleton.cs" />
67+
<Compile Include="Singleton\PathSingleton.cs" />
68+
<Compile Include="Utils\RandomUtils.cs" />
69+
<Compile Include="View\FMain.cs">
70+
<SubType>Form</SubType>
71+
</Compile>
72+
<Compile Include="View\FMain.Designer.cs">
73+
<DependentUpon>FMain.cs</DependentUpon>
74+
</Compile>
75+
<Compile Include="Program.cs" />
76+
<Compile Include="Properties\AssemblyInfo.cs" />
77+
<Compile Include="View\FrmImport.cs">
78+
<SubType>Form</SubType>
79+
</Compile>
80+
<Compile Include="View\FrmImport.Designer.cs">
81+
<DependentUpon>FrmImport.cs</DependentUpon>
82+
</Compile>
83+
<EmbeddedResource Include="View\FMain.resx">
84+
<DependentUpon>FMain.cs</DependentUpon>
85+
</EmbeddedResource>
86+
<EmbeddedResource Include="Properties\Resources.resx">
87+
<Generator>ResXFileCodeGenerator</Generator>
88+
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
89+
<SubType>Designer</SubType>
90+
</EmbeddedResource>
91+
<Compile Include="Properties\Resources.Designer.cs">
92+
<AutoGen>True</AutoGen>
93+
<DependentUpon>Resources.resx</DependentUpon>
94+
</Compile>
95+
<EmbeddedResource Include="View\FrmImport.resx">
96+
<DependentUpon>FrmImport.cs</DependentUpon>
97+
</EmbeddedResource>
98+
<None Include="packages.config" />
99+
<None Include="Properties\Settings.settings">
100+
<Generator>SettingsSingleFileGenerator</Generator>
101+
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
102+
</None>
103+
<Compile Include="Properties\Settings.Designer.cs">
104+
<AutoGen>True</AutoGen>
105+
<DependentUpon>Settings.settings</DependentUpon>
106+
<DesignTimeSharedInput>True</DesignTimeSharedInput>
107+
</Compile>
108+
</ItemGroup>
109+
<ItemGroup>
110+
<None Include="App.config" />
111+
</ItemGroup>
112+
<ItemGroup>
113+
<Content Include="instagram-application-logo_23-2151544100.ico" />
114+
</ItemGroup>
115+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
116+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace CheckLiveIG.Enums
8+
{
9+
public enum IgApiCallStatusCode
10+
{
11+
Success,
12+
Checkpoint,
13+
Error,
14+
UnknownBlockType,
15+
Blocked,
16+
LimitedSpam
17+
}
18+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using CheckLiveIG.Models;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
using System.Threading.Tasks;
7+
8+
namespace CheckLiveIG.Interfaces
9+
{
10+
public interface IIGAccountQueryAPI
11+
{
12+
IGApiQueryResult QueryInfoAccount(string accountId);
13+
}
14+
}
+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
using CheckLiveIG.Enums;
2+
using System;
3+
using System.Collections.Generic;
4+
using System.Linq;
5+
using System.Text;
6+
using System.Threading.Tasks;
7+
8+
namespace CheckLiveIG.Models
9+
{
10+
public class IGApiQueryResult : BaseIgApiCallResult
11+
{
12+
13+
}
14+
public class BaseIgApiCallResult
15+
{
16+
public IgApiCallStatusCode IgStatusCode { get; set; }
17+
}
18+
}

0 commit comments

Comments
 (0)