├── Instagram Ghost Remover ├── obj │ └── Debug │ │ ├── Instagram Ghost Remover.vbproj.CopyComplete │ │ ├── Instagram Ghost Remover.vbproj.CoreCompileInputs.cache │ │ ├── Instagram Ghost Remover.exe │ │ ├── Instagram Ghost Remover.pdb │ │ ├── Instagram_Ghost_Remover.Form1.resources │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── Instagram_Ghost_Remover.Resources.resources │ │ ├── TempPE │ │ └── My Project.Resources.Designer.vb.dll │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── Instagram Ghost Remover.vbproj.GenerateResource.cache │ │ ├── Instagram Ghost Remover.vbprojAssemblyReference.cache │ │ ├── Instagram Ghost Remover.xml │ │ └── Instagram Ghost Remover.vbproj.FileListAbsolute.txt ├── jGPBcHs.ico ├── bin │ └── Debug │ │ ├── xNet.pdb │ │ ├── Instagram Ghost Remover.pdb │ │ ├── Instagram Ghost Remover.exe.config │ │ └── Instagram Ghost Remover.xml ├── App.config ├── My Project │ ├── Settings.settings │ ├── Application.myapp │ ├── AssemblyInfo.vb │ ├── Application.Designer.vb │ ├── Resources.Designer.vb │ ├── Settings.Designer.vb │ └── Resources.resx ├── classes │ ├── GhostUser.vb │ └── UserInfo.vb ├── Instagram Ghost Remover.vbproj ├── Form1.vb └── Form1.Designer.vb ├── .vs └── Instagram Ghost Remover │ └── v16 │ └── .suo ├── README.md └── Instagram Ghost Remover.sln /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | e4e11ddd663c3aa804f404148da1484d6127e917 2 | -------------------------------------------------------------------------------- /.vs/Instagram Ghost Remover/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/.vs/Instagram Ghost Remover/v16/.suo -------------------------------------------------------------------------------- /Instagram Ghost Remover/jGPBcHs.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/jGPBcHs.ico -------------------------------------------------------------------------------- /Instagram Ghost Remover/bin/Debug/xNet.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/bin/Debug/xNet.pdb -------------------------------------------------------------------------------- /Instagram Ghost Remover/bin/Debug/Instagram Ghost Remover.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/bin/Debug/Instagram Ghost Remover.pdb -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.exe -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.pdb -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram_Ghost_Remover.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram_Ghost_Remover.Form1.resources -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram_Ghost_Remover.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram_Ghost_Remover.Resources.resources -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/TempPE/My Project.Resources.Designer.vb.dll -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /Instagram Ghost Remover/App.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbproj.GenerateResource.cache -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/X-SLAYER/Instagram-Ghost-Cleaner/master/Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbprojAssemblyReference.cache -------------------------------------------------------------------------------- /Instagram Ghost Remover/bin/Debug/Instagram Ghost Remover.exe.config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/classes/GhostUser.vb: -------------------------------------------------------------------------------- 1 | Public Class GhostUser 2 | 3 | Public media_count As String 4 | Public anonymousPic As String 5 | Public following As String 6 | Public followers As String 7 | 8 | Public Sub New(json As Dictionary(Of String, Object)) 9 | following = json("user")("following_count") 10 | followers = json("user")("follower_count") 11 | media_count = json("user")("media_count") 12 | anonymousPic = json("user")("has_anonymous_profile_picture") 13 | End Sub 14 | 15 | End Class 16 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Application.myapp: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Form1 5 | false 6 | 0 7 | true 8 | 0 9 | 0 10 | true 11 | 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | InstagramTool 4 |
5 | Instagram Ghost Cleaner 6 |
7 |

8 | 9 | # Description 10 |
11 | This Instagram tool will help you to clean inactive people you follow. 12 | its work by getting users without profile picture and with 0 posts on instagram and give you the choice to selecte people you want to unfollow.
13 |

14 | 15 | ### Note 16 | ``` 17 | the sleep between unfollowing users will increase everytime to avoid getting banned by Instagram 18 | ``` 19 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/bin/Debug/Instagram Ghost Remover.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Instagram Ghost Remover 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Instagram Ghost Remover 6 | 7 | 8 | 9 | 10 | 11 | A strongly-typed resource class, for looking up localized strings, etc. 12 | 13 | 14 | 15 | 16 | Returns the cached ResourceManager instance used by this class. 17 | 18 | 19 | 20 | 21 | Overrides the current thread's CurrentUICulture property for all 22 | resource lookups using this strongly typed resource class. 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/classes/UserInfo.vb: -------------------------------------------------------------------------------- 1 | Public Class UserInfo 2 | 3 | Public userID As String 4 | Public username As String 5 | Public verified As String 6 | Public buisness As String 7 | Public isPrivate As String 8 | 9 | Public Sub New(userID As String, username As String, verified As String, buisness As String, isPrivate As String) 10 | Me.userID = userID 11 | Me.username = username 12 | Me.verified = verified 13 | Me.buisness = buisness 14 | Me.isPrivate = isPrivate 15 | End Sub 16 | End Class 17 | 18 | Class UserFromJson 19 | 20 | Public Shared Function FromJson(json As Dictionary(Of String, Object)) As UserInfo 21 | Try 22 | Return New UserInfo(json("logged_in_user")("pk"), json("logged_in_user")("username"), json("logged_in_user")("is_verified"), 23 | json("logged_in_user")("is_business"), json("logged_in_user")("is_private")) 24 | Catch ex As Exception 25 | Return Nothing 26 | End Try 27 | End Function 28 | 29 | End Class 30 | 31 | -------------------------------------------------------------------------------- /Instagram Ghost Remover.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.29721.120 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "Instagram Ghost Remover", "Instagram Ghost Remover\Instagram Ghost Remover.vbproj", "{FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D}" 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 | {FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D}.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 = {21770812-547E-44D3-A3DF-38AD3AFD1F0A} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- 1 | Imports System 2 | Imports System.Reflection 3 | Imports System.Runtime.InteropServices 4 | 5 | ' General Information about an assembly is controlled through the following 6 | ' set of attributes. Change these attribute values to modify the information 7 | ' associated with an assembly. 8 | 9 | ' Review the values of the assembly attributes 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 'The following GUID is for the ID of the typelib if this project is exposed to COM 21 | 22 | 23 | ' Version information for an assembly consists of the following four values: 24 | ' 25 | ' Major Version 26 | ' Minor Version 27 | ' Build Number 28 | ' Revision 29 | ' 30 | ' You can specify all the values or you can default the Build and Revision Numbers 31 | ' by using the '*' as shown below: 32 | ' 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Application.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | 'NOTE: This file is auto-generated; do not modify it directly. To make changes, 18 | ' or if you encounter build errors in this file, go to the Project Designer 19 | ' (go to Project Properties or double-click the My Project node in 20 | ' Solution Explorer), and make changes on the Application tab. 21 | ' 22 | Partial Friend Class MyApplication 23 | 24 | _ 25 | Public Sub New() 26 | MyBase.New(Global.Microsoft.VisualBasic.ApplicationServices.AuthenticationMode.Windows) 27 | Me.IsSingleInstance = false 28 | Me.EnableVisualStyles = true 29 | Me.SaveMySettingsOnExit = true 30 | Me.ShutDownStyle = Global.Microsoft.VisualBasic.ApplicationServices.ShutdownMode.AfterMainFormCloses 31 | End Sub 32 | 33 | _ 34 | Protected Overrides Sub OnCreateMainForm() 35 | Me.MainForm = Global.Instagram_Ghost_Remover.Form1 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/obj/Debug/Instagram Ghost Remover.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\Instagram Ghost Remover.exe.config 2 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\Instagram Ghost Remover.exe 3 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\Instagram Ghost Remover.pdb 4 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\Instagram Ghost Remover.xml 5 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\xNet.dll 6 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\xNet.pdb 7 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\bin\Debug\xNet.xml 8 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.vbprojAssemblyReference.cache 9 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram_Ghost_Remover.Form1.resources 10 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram_Ghost_Remover.Resources.resources 11 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.vbproj.GenerateResource.cache 12 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.vbproj.CoreCompileInputs.cache 13 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.vbproj.CopyComplete 14 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.exe 15 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.xml 16 | C:\Users\ihebb\source\repos\Instagram Ghost Remover\Instagram Ghost Remover\obj\Debug\Instagram Ghost Remover.pdb 17 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Resources.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My.Resources 16 | 17 | 'This class was auto-generated by the StronglyTypedResourceBuilder 18 | 'class via a tool like ResGen or Visual Studio. 19 | 'To add or remove a member, edit your .ResX file then rerun ResGen 20 | 'with the /str option, or rebuild your VS project. 21 | ''' 22 | ''' A strongly-typed resource class, for looking up localized strings, etc. 23 | ''' 24 | _ 28 | Friend Module Resources 29 | 30 | Private resourceMan As Global.System.Resources.ResourceManager 31 | 32 | Private resourceCulture As Global.System.Globalization.CultureInfo 33 | 34 | ''' 35 | ''' Returns the cached ResourceManager instance used by this class. 36 | ''' 37 | _ 38 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 39 | Get 40 | If Object.ReferenceEquals(resourceMan, Nothing) Then 41 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("Instagram_Ghost_Remover.Resources", GetType(Resources).Assembly) 42 | resourceMan = temp 43 | End If 44 | Return resourceMan 45 | End Get 46 | End Property 47 | 48 | ''' 49 | ''' Overrides the current thread's CurrentUICulture property for all 50 | ''' resource lookups using this strongly typed resource class. 51 | ''' 52 | _ 53 | Friend Property Culture() As Global.System.Globalization.CultureInfo 54 | Get 55 | Return resourceCulture 56 | End Get 57 | Set(ByVal value As Global.System.Globalization.CultureInfo) 58 | resourceCulture = value 59 | End Set 60 | End Property 61 | End Module 62 | End Namespace 63 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Settings.Designer.vb: -------------------------------------------------------------------------------- 1 | '------------------------------------------------------------------------------ 2 | ' 3 | ' This code was generated by a tool. 4 | ' Runtime Version:4.0.30319.42000 5 | ' 6 | ' Changes to this file may cause incorrect behavior and will be lost if 7 | ' the code is regenerated. 8 | ' 9 | '------------------------------------------------------------------------------ 10 | 11 | Option Strict On 12 | Option Explicit On 13 | 14 | 15 | Namespace My 16 | 17 | _ 20 | Partial Friend NotInheritable Class MySettings 21 | Inherits Global.System.Configuration.ApplicationSettingsBase 22 | 23 | Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings), MySettings) 24 | 25 | #Region "My.Settings Auto-Save Functionality" 26 | #If _MyType = "WindowsForms" Then 27 | Private Shared addedHandler As Boolean 28 | 29 | Private Shared addedHandlerLockObject As New Object 30 | 31 | _ 32 | Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs) 33 | If My.Application.SaveMySettingsOnExit Then 34 | My.Settings.Save() 35 | End If 36 | End Sub 37 | #End If 38 | #End Region 39 | 40 | Public Shared ReadOnly Property [Default]() As MySettings 41 | Get 42 | 43 | #If _MyType = "WindowsForms" Then 44 | If Not addedHandler Then 45 | SyncLock addedHandlerLockObject 46 | If Not addedHandler Then 47 | AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings 48 | addedHandler = True 49 | End If 50 | End SyncLock 51 | End If 52 | #End If 53 | Return defaultInstance 54 | End Get 55 | End Property 56 | End Class 57 | End Namespace 58 | 59 | Namespace My 60 | 61 | _ 64 | Friend Module MySettingsProperty 65 | 66 | _ 67 | Friend ReadOnly Property Settings() As Global.Instagram_Ghost_Remover.My.MySettings 68 | Get 69 | Return Global.Instagram_Ghost_Remover.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/My Project/Resources.resx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/Instagram Ghost Remover.vbproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {FDFC8CE4-84C3-4F03-8DD4-0ECF1C637C0D} 8 | WinExe 9 | Instagram_Ghost_Remover.My.MyApplication 10 | Instagram_Ghost_Remover 11 | Instagram Ghost Remover 12 | 512 13 | WindowsForms 14 | v4.7.2 15 | true 16 | true 17 | 18 | 19 | AnyCPU 20 | true 21 | full 22 | true 23 | true 24 | bin\Debug\ 25 | Instagram Ghost Remover.xml 26 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 27 | 28 | 29 | AnyCPU 30 | pdbonly 31 | false 32 | true 33 | true 34 | bin\Release\ 35 | Instagram Ghost Remover.xml 36 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 37 | 38 | 39 | On 40 | 41 | 42 | Binary 43 | 44 | 45 | Off 46 | 47 | 48 | On 49 | 50 | 51 | jGPBcHs.ico 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | ..\..\..\..\OneDrive\Desktop\Checkers\au.match Accounts Checker By X-SLAYER\Checker By X-SLAYER\bin\Debug\xNet.dll 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | Form 87 | 88 | 89 | Form1.vb 90 | Form 91 | 92 | 93 | 94 | True 95 | Application.myapp 96 | 97 | 98 | True 99 | True 100 | Resources.resx 101 | 102 | 103 | True 104 | Settings.settings 105 | True 106 | 107 | 108 | 109 | 110 | Form1.vb 111 | 112 | 113 | VbMyResourcesResXFileCodeGenerator 114 | Resources.Designer.vb 115 | My.Resources 116 | Designer 117 | 118 | 119 | 120 | 121 | MyApplicationCodeGenerator 122 | Application.Designer.vb 123 | 124 | 125 | SettingsSingleFileGenerator 126 | My 127 | Settings.Designer.vb 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/Form1.vb: -------------------------------------------------------------------------------- 1 | Imports xNet 2 | Imports System.Web.Script.Serialization 3 | Imports System.Threading 4 | 5 | Public Class Form1 6 | 7 | Public userId As String 8 | Public CurrentUser As UserInfo 9 | Dim jss As New JavaScriptSerializer() 10 | Dim csrfToken As String = "" 11 | Dim cookies As String = "" 12 | Dim cursorEnd As String 13 | Dim sleepTime As Integer = 1000 14 | 15 | Public Sub New() 16 | InitializeComponent() 17 | CheckForIllegalCrossThreadCalls = False 18 | End Sub 19 | 20 | Public Sub Login(user As String, pass As String) 21 | Try 22 | Using request As New HttpRequest 23 | request.ClearAllHeaders() 24 | request.Proxy = Nothing 25 | request.UserAgent = Http.ChromeUserAgent() 26 | request.KeepAlive = True 27 | request.Cookies = New CookieDictionary(False) 28 | request.IgnoreProtocolErrors = True 29 | request.ConnectTimeout = &H1388 30 | 31 | request.AddHeader("Accept", "*/*") 32 | request.AddHeader("User-Agent", "Instagram 134.0.0.25.116 (iPhone10,2; iOS 13_3_1; en_US; en-US; scale") 33 | request.AddHeader("Accept-Language", "en-US;q") 34 | request.AddHeader("X-IG-Capabilities", "36r/Fw") 35 | request.AddHeader("X-IG-App-ID", "1099655813402622") 36 | request.AddHeader("X-IG-Connection-Type", "WiFi") 37 | request.AddHeader("X-IG-Connection-Speed", "174kbps") 38 | request.AddHeader("X-IG-ABR-Connection-Speed-KBPS", "0") 39 | 40 | Dim str As String = String.Concat(New String() {"ig_sig_key_version=5&signed_body=d19e37605ed48b42e495bf082d06a906663ac2a75ebbdd9acbc5c4bd2e5e8107.{""reg_login"":""0"",""login_attempt_count"":""0"",""device_id"":""", Guid.NewGuid.ToString(), """,""phone_id"":""", Guid.NewGuid.ToString(), """,""password"":""", pass, """,""username"":""", user, """}"}) 41 | 42 | Dim response As String = "" 43 | Dim rep As HttpResponse = request.Post("https://i.instagram.com/api/v1/accounts/login/", str, "application/x-www-form-urlencoded; charset=UTF-8") 44 | 45 | If rep.HasRedirect = True Then 46 | response = request.Get(rep.RedirectAddress.ToString(), Nothing).ToString() 47 | Else 48 | response = rep.ToString() ' 49 | End If 50 | 51 | If response.Contains("logged_in_user") Then 52 | 53 | cookies = rep.Cookies.ToString() 54 | csrfToken = rep.Cookies.Item("csrftoken") 55 | 56 | status.LinkColor = Color.Green 57 | status.Text = "Connected " 58 | 59 | logOut.Enabled = True 60 | bLogin.Enabled = False 61 | TUser.Enabled = False 62 | TPass.Enabled = False 63 | 64 | Dim jss As New JavaScriptSerializer() 65 | Dim dict As Dictionary(Of String, Object) = jss.Deserialize(Of Dictionary(Of String, Object))(response) 66 | 67 | CurrentUser = UserFromJson.FromJson(dict) 68 | 69 | allStatus.Text = "Getting User Info ..." 70 | Dim ghost = getUserInfo(request, CurrentUser.userID) 71 | 72 | '----------------- 73 | lfollowers.Text = ghost.followers 74 | lfollowing.Text = FormatNumber(ghost.following, 0, TriState.True) 75 | lmediaCount.Text = ghost.media_count 76 | buinessAcc.Text = CurrentUser.buisness 77 | '----------------- 78 | 79 | allStatus.Text = "Getting Friends You Follow ..." 80 | GetFollowing(request, CurrentUser.userID, rep.Cookies.ToString()) 81 | If (Lv1.Items.Count > 0) Then 82 | UnFollowBtn.Enabled = True 83 | End If 84 | 85 | ElseIf response.Contains("challenge_required") Then 86 | status.LinkColor = Color.Orange 87 | status.Text = "Challange Locked" 88 | Else 89 | status.LinkColor = Color.Red 90 | status.Text = "Login or pass is wrong" 91 | End If 92 | 93 | End Using 94 | Catch ex As Exception 95 | MsgBox(ex.Message, MsgBoxStyle.Critical) 96 | End Try 97 | End Sub 98 | 99 | Public Function getUserInfo(request As HttpRequest, userId As String) As GhostUser 100 | 101 | request.AddHeader("Accept", "*/*") 102 | request.AddHeader("User-Agent", "Instagram 134.0.0.25.116 (iPhone10,2; iOS 13_3_1; en_US; en-US; scale") 103 | request.AddHeader("Accept-Language", "en-US;q") 104 | request.AddHeader("X-IG-Capabilities", "36r/Fw") 105 | request.AddHeader("X-IG-App-ID", "1099655813402622") 106 | request.AddHeader("X-IG-Connection-Type", "WiFi") 107 | request.AddHeader("X-IG-Connection-Speed", "370kbps") 108 | request.AddHeader("X-IG-ABR-Connection-Speed-KBPS", "1") 109 | 110 | Dim info As String = request.Get("https://i.instagram.com/api/v1/users/" & userId & "/info/?device_id=" & Guid.NewGuid.ToString(), Nothing).ToString() 111 | Dim dict = jss.Deserialize(Of Dictionary(Of String, Object))(info) 112 | Return New GhostUser(dict) 113 | 114 | End Function 115 | 116 | Public Sub GetFollowing(request As HttpRequest, userId As String, Cookies As String) 117 | request.AddHeader("X-Instagram-AJAX", "1") 118 | request.AddHeader("x-requested-with", "XMLHttpRequest") 119 | request.AddHeader("Cookie", Cookies) 120 | 121 | Dim result As String = "" 122 | 123 | If String.IsNullOrEmpty(cursorEnd) Then 124 | result = request.Get("https://www.instagram.com/graphql/query/?query_hash=d04b0a864b4b54837c0d870b0e77e076&variables={""id"":""" & userId & """,""include_reel"":true,""fetch_mutual"":false,""first"":50}").ToString() 125 | Else 126 | result = request.Get("https://www.instagram.com/graphql/query/?query_hash=d04b0a864b4b54837c0d870b0e77e076&variables={""id"":""" & userId & """,""include_reel"":true,""fetch_mutual"":false,""first"":50,""after"":""" & cursorEnd & """}").ToString() 127 | End If 128 | 129 | Dim edgesMap As Dictionary(Of String, Object) = jss.Deserialize(Of Dictionary(Of String, Object))(result) 130 | 131 | Dim edges = edgesMap("data")("user")("edge_follow")("edges") 132 | cursorEnd = edgesMap("data")("user")("edge_follow")("page_info")("end_cursor") 133 | 134 | If String.IsNullOrEmpty(cursorEnd) Then 135 | more.Enabled = False 136 | End If 137 | 138 | allStatus.Text = "Getting Inactive Friends ..." 139 | 140 | For Each node As Dictionary(Of String, Object) In edges 141 | Dim IsGhostuser = getUserInfo(request, node("node")("id")) 142 | If IsGhostuser.media_count = 0 Or IsGhostuser.anonymousPic.ToLower = "true" Then 143 | Dim it As New ListViewItem With { 144 | .Text = node("node")("username"), 145 | .Tag = node("node")("id"), 146 | .UseItemStyleForSubItems = False, 147 | .Checked = True, 148 | .ToolTipText = String.Format("Followers: {0}" & vbCrLf & "Following: {1}", IsGhostuser.followers, IsGhostuser.following) 149 | } 150 | it.SubItems.Add(FormatNumber(IsGhostuser.media_count, 0, TriState.True)) 151 | it.SubItems.Add(IsGhostuser.anonymousPic).ForeColor = Color.Blue 152 | it.SubItems.Add("Idle").ForeColor = Color.Blue 153 | Lv1.Items.Add(it) 154 | End If 155 | Next 156 | 157 | allStatus.Text = "Ghost Useres [" & Lv1.Items.Count & "]" 158 | 159 | End Sub 160 | 161 | Public Function Unfollow(userId As String) As Boolean 162 | Try 163 | 164 | Using request As New HttpRequest 165 | request.Proxy = Nothing 166 | request.UserAgent = Http.ChromeUserAgent() 167 | request.KeepAlive = True 168 | request.Cookies = New CookieDictionary(False) 169 | request.IgnoreProtocolErrors = True 170 | request.ConnectTimeout = &H1388 171 | request.AddHeader("x-csrftoken", csrfToken) 172 | request.AddHeader("X-Instagram-AJAX", "1") 173 | request.AddHeader("x-requested-with", "XMLHttpRequest") 174 | request.AddHeader("Cookie", cookies) 175 | 176 | Dim res As String = request.Post("https://www.instagram.com/web/friendships/" & userId & "/unfollow/").ToString() 177 | 178 | If res.Contains("{""status"": ""ok""}") Then 179 | Return True 180 | End If 181 | Return False 182 | End Using 183 | Catch ex As Exception 184 | Return False 185 | End Try 186 | End Function 187 | 188 | Private Sub logOut_Click(sender As Object, e As EventArgs) Handles logOut.Click 189 | logOut.Enabled = False 190 | bLogin.Enabled = True 191 | TUser.Enabled = True 192 | TPass.Enabled = True 193 | 194 | Lv1.Items.Clear() 195 | 196 | lfollowers.Text = "0" 197 | lfollowing.Text = "0" 198 | lmediaCount.Text = "0" 199 | buinessAcc.Text = "0" 200 | 201 | End Sub 202 | 203 | Private Sub bLogin_Click(sender As Object, e As EventArgs) Handles bLogin.Click 204 | Dim thread As New Thread(New ThreadStart(Sub() Login(TUser.Text, TPass.Text))) With { 205 | .IsBackground = True 206 | } 207 | thread.Start() 208 | End Sub 209 | Public Sub UnfollowAll() 210 | For Each item As ListViewItem In Lv1.Items 211 | If item.Checked Then 212 | If Not item.SubItems(3).Text = "Done !" Then 213 | Dim status As Boolean = Unfollow(item.Tag) 214 | If (status) Then 215 | item.SubItems(3).ForeColor = Color.Green 216 | item.SubItems(3).Text = "Done !" 217 | Else 218 | item.SubItems(3).ForeColor = Color.Red 219 | item.SubItems(3).Text = "Error In Rmoving!" 220 | End If 221 | sleepTime += 500 222 | Thread.Sleep(sleepTime) 223 | End If 224 | End If 225 | Next 226 | End Sub 227 | 228 | Private Sub UnFollowBtn_Click(sender As Object, e As EventArgs) Handles UnFollowBtn.Click 229 | Dim removeGhosts As New Thread(New ThreadStart(AddressOf UnfollowAll)) 230 | removeGhosts.Start() 231 | End Sub 232 | 233 | Private Sub ToolStripStatusLabel2_Click(sender As Object, e As EventArgs) Handles ToolStripStatusLabel2.Click 234 | Process.Start("https://github.com/X-SLAYER") 235 | End Sub 236 | 237 | Private Sub ToolStripStatusLabel5_Click(sender As Object, e As EventArgs) Handles ToolStripStatusLabel5.Click 238 | Process.Start("https://t.me/SLAYERS404") 239 | End Sub 240 | End Class 241 | -------------------------------------------------------------------------------- /Instagram Ghost Remover/Form1.Designer.vb: -------------------------------------------------------------------------------- 1 | 2 | Partial Class Form1 3 | Inherits System.Windows.Forms.Form 4 | 5 | 'Form overrides dispose to clean up the component list. 6 | 7 | Protected Overrides Sub Dispose(ByVal disposing As Boolean) 8 | Try 9 | If disposing AndAlso components IsNot Nothing Then 10 | components.Dispose() 11 | End If 12 | Finally 13 | MyBase.Dispose(disposing) 14 | End Try 15 | End Sub 16 | 17 | 'Required by the Windows Form Designer 18 | Private components As System.ComponentModel.IContainer 19 | 20 | 'NOTE: The following procedure is required by the Windows Form Designer 21 | 'It can be modified using the Windows Form Designer. 22 | 'Do not modify it using the code editor. 23 | 24 | Private Sub InitializeComponent() 25 | Dim resources As System.ComponentModel.ComponentResourceManager = New System.ComponentModel.ComponentResourceManager(GetType(Form1)) 26 | Me.GroupBox1 = New System.Windows.Forms.GroupBox() 27 | Me.logOut = New System.Windows.Forms.Button() 28 | Me.status = New System.Windows.Forms.LinkLabel() 29 | Me.bLogin = New System.Windows.Forms.Button() 30 | Me.Label2 = New System.Windows.Forms.Label() 31 | Me.Label1 = New System.Windows.Forms.Label() 32 | Me.TPass = New System.Windows.Forms.TextBox() 33 | Me.TUser = New System.Windows.Forms.TextBox() 34 | Me.GroupBox2 = New System.Windows.Forms.GroupBox() 35 | Me.buinessAcc = New System.Windows.Forms.Label() 36 | Me.lmediaCount = New System.Windows.Forms.Label() 37 | Me.lfollowing = New System.Windows.Forms.Label() 38 | Me.lfollowers = New System.Windows.Forms.Label() 39 | Me.Label6 = New System.Windows.Forms.Label() 40 | Me.Label5 = New System.Windows.Forms.Label() 41 | Me.Label4 = New System.Windows.Forms.Label() 42 | Me.Label3 = New System.Windows.Forms.Label() 43 | Me.GroupBox3 = New System.Windows.Forms.GroupBox() 44 | Me.Lv1 = New System.Windows.Forms.ListView() 45 | Me.ColumnHeader1 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 46 | Me.ColumnHeader2 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 47 | Me.ColumnHeader3 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 48 | Me.ColumnHeader4 = CType(New System.Windows.Forms.ColumnHeader(), System.Windows.Forms.ColumnHeader) 49 | Me.StatusStrip1 = New System.Windows.Forms.StatusStrip() 50 | Me.ToolStripStatusLabel1 = New System.Windows.Forms.ToolStripStatusLabel() 51 | Me.allStatus = New System.Windows.Forms.ToolStripStatusLabel() 52 | Me.ToolStripStatusLabel3 = New System.Windows.Forms.ToolStripStatusLabel() 53 | Me.ToolStripStatusLabel2 = New System.Windows.Forms.ToolStripStatusLabel() 54 | Me.ToolStripStatusLabel4 = New System.Windows.Forms.ToolStripStatusLabel() 55 | Me.ToolStripStatusLabel5 = New System.Windows.Forms.ToolStripStatusLabel() 56 | Me.more = New System.Windows.Forms.Button() 57 | Me.UnFollowBtn = New System.Windows.Forms.Button() 58 | Me.GroupBox1.SuspendLayout() 59 | Me.GroupBox2.SuspendLayout() 60 | Me.GroupBox3.SuspendLayout() 61 | Me.StatusStrip1.SuspendLayout() 62 | Me.SuspendLayout() 63 | ' 64 | 'GroupBox1 65 | ' 66 | Me.GroupBox1.Controls.Add(Me.logOut) 67 | Me.GroupBox1.Controls.Add(Me.status) 68 | Me.GroupBox1.Controls.Add(Me.bLogin) 69 | Me.GroupBox1.Controls.Add(Me.Label2) 70 | Me.GroupBox1.Controls.Add(Me.Label1) 71 | Me.GroupBox1.Controls.Add(Me.TPass) 72 | Me.GroupBox1.Controls.Add(Me.TUser) 73 | Me.GroupBox1.Location = New System.Drawing.Point(2, 2) 74 | Me.GroupBox1.Name = "GroupBox1" 75 | Me.GroupBox1.Size = New System.Drawing.Size(209, 171) 76 | Me.GroupBox1.TabIndex = 0 77 | Me.GroupBox1.TabStop = False 78 | Me.GroupBox1.Text = "Login" 79 | ' 80 | 'logOut 81 | ' 82 | Me.logOut.Cursor = System.Windows.Forms.Cursors.Hand 83 | Me.logOut.Enabled = False 84 | Me.logOut.Location = New System.Drawing.Point(62, 110) 85 | Me.logOut.Name = "logOut" 86 | Me.logOut.Size = New System.Drawing.Size(132, 23) 87 | Me.logOut.TabIndex = 6 88 | Me.logOut.Text = "Logout" 89 | Me.logOut.UseVisualStyleBackColor = True 90 | ' 91 | 'status 92 | ' 93 | Me.status.AutoSize = True 94 | Me.status.Location = New System.Drawing.Point(6, 141) 95 | Me.status.Name = "status" 96 | Me.status.Size = New System.Drawing.Size(25, 14) 97 | Me.status.TabIndex = 5 98 | Me.status.TabStop = True 99 | Me.status.Text = "Idle" 100 | ' 101 | 'bLogin 102 | ' 103 | Me.bLogin.Cursor = System.Windows.Forms.Cursors.Hand 104 | Me.bLogin.Location = New System.Drawing.Point(62, 81) 105 | Me.bLogin.Name = "bLogin" 106 | Me.bLogin.Size = New System.Drawing.Size(132, 23) 107 | Me.bLogin.TabIndex = 4 108 | Me.bLogin.Text = "Login" 109 | Me.bLogin.UseVisualStyleBackColor = True 110 | ' 111 | 'Label2 112 | ' 113 | Me.Label2.AutoSize = True 114 | Me.Label2.Location = New System.Drawing.Point(17, 56) 115 | Me.Label2.Name = "Label2" 116 | Me.Label2.Size = New System.Drawing.Size(38, 14) 117 | Me.Label2.TabIndex = 3 118 | Me.Label2.Text = "Pass : " 119 | ' 120 | 'Label1 121 | ' 122 | Me.Label1.AutoSize = True 123 | Me.Label1.Location = New System.Drawing.Point(17, 24) 124 | Me.Label1.Name = "Label1" 125 | Me.Label1.Size = New System.Drawing.Size(39, 14) 126 | Me.Label1.TabIndex = 2 127 | Me.Label1.Text = "User : " 128 | ' 129 | 'TPass 130 | ' 131 | Me.TPass.Location = New System.Drawing.Point(62, 53) 132 | Me.TPass.Name = "TPass" 133 | Me.TPass.Size = New System.Drawing.Size(132, 22) 134 | Me.TPass.TabIndex = 1 135 | Me.TPass.UseSystemPasswordChar = True 136 | ' 137 | 'TUser 138 | ' 139 | Me.TUser.Location = New System.Drawing.Point(62, 21) 140 | Me.TUser.Name = "TUser" 141 | Me.TUser.Size = New System.Drawing.Size(132, 22) 142 | Me.TUser.TabIndex = 0 143 | ' 144 | 'GroupBox2 145 | ' 146 | Me.GroupBox2.Controls.Add(Me.buinessAcc) 147 | Me.GroupBox2.Controls.Add(Me.lmediaCount) 148 | Me.GroupBox2.Controls.Add(Me.lfollowing) 149 | Me.GroupBox2.Controls.Add(Me.lfollowers) 150 | Me.GroupBox2.Controls.Add(Me.Label6) 151 | Me.GroupBox2.Controls.Add(Me.Label5) 152 | Me.GroupBox2.Controls.Add(Me.Label4) 153 | Me.GroupBox2.Controls.Add(Me.Label3) 154 | Me.GroupBox2.Location = New System.Drawing.Point(2, 179) 155 | Me.GroupBox2.Name = "GroupBox2" 156 | Me.GroupBox2.Size = New System.Drawing.Size(209, 148) 157 | Me.GroupBox2.TabIndex = 1 158 | Me.GroupBox2.TabStop = False 159 | Me.GroupBox2.Text = "Account Info" 160 | ' 161 | 'buinessAcc 162 | ' 163 | Me.buinessAcc.AutoSize = True 164 | Me.buinessAcc.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) 165 | Me.buinessAcc.Location = New System.Drawing.Point(138, 104) 166 | Me.buinessAcc.Name = "buinessAcc" 167 | Me.buinessAcc.Size = New System.Drawing.Size(13, 14) 168 | Me.buinessAcc.TabIndex = 7 169 | Me.buinessAcc.Text = "0" 170 | ' 171 | 'lmediaCount 172 | ' 173 | Me.lmediaCount.AutoSize = True 174 | Me.lmediaCount.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) 175 | Me.lmediaCount.Location = New System.Drawing.Point(138, 80) 176 | Me.lmediaCount.Name = "lmediaCount" 177 | Me.lmediaCount.Size = New System.Drawing.Size(13, 14) 178 | Me.lmediaCount.TabIndex = 6 179 | Me.lmediaCount.Text = "0" 180 | ' 181 | 'lfollowing 182 | ' 183 | Me.lfollowing.AutoSize = True 184 | Me.lfollowing.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) 185 | Me.lfollowing.Location = New System.Drawing.Point(138, 56) 186 | Me.lfollowing.Name = "lfollowing" 187 | Me.lfollowing.Size = New System.Drawing.Size(13, 14) 188 | Me.lfollowing.TabIndex = 5 189 | Me.lfollowing.Text = "0" 190 | ' 191 | 'lfollowers 192 | ' 193 | Me.lfollowers.AutoSize = True 194 | Me.lfollowers.ForeColor = System.Drawing.Color.FromArgb(CType(CType(0, Byte), Integer), CType(CType(0, Byte), Integer), CType(CType(192, Byte), Integer)) 195 | Me.lfollowers.Location = New System.Drawing.Point(138, 32) 196 | Me.lfollowers.Name = "lfollowers" 197 | Me.lfollowers.Size = New System.Drawing.Size(13, 14) 198 | Me.lfollowers.TabIndex = 4 199 | Me.lfollowers.Text = "0" 200 | ' 201 | 'Label6 202 | ' 203 | Me.Label6.AutoSize = True 204 | Me.Label6.Location = New System.Drawing.Point(59, 104) 205 | Me.Label6.Name = "Label6" 206 | Me.Label6.Size = New System.Drawing.Size(73, 14) 207 | Me.Label6.TabIndex = 3 208 | Me.Label6.Text = "Buisness Acc:" 209 | ' 210 | 'Label5 211 | ' 212 | Me.Label5.AutoSize = True 213 | Me.Label5.Location = New System.Drawing.Point(59, 80) 214 | Me.Label5.Name = "Label5" 215 | Me.Label5.Size = New System.Drawing.Size(54, 14) 216 | Me.Label5.TabIndex = 2 217 | Me.Label5.Text = "Posts N°: " 218 | ' 219 | 'Label4 220 | ' 221 | Me.Label4.AutoSize = True 222 | Me.Label4.Location = New System.Drawing.Point(59, 56) 223 | Me.Label4.Name = "Label4" 224 | Me.Label4.Size = New System.Drawing.Size(61, 14) 225 | Me.Label4.TabIndex = 1 226 | Me.Label4.Text = "Following: " 227 | ' 228 | 'Label3 229 | ' 230 | Me.Label3.AutoSize = True 231 | Me.Label3.Location = New System.Drawing.Point(59, 32) 232 | Me.Label3.Name = "Label3" 233 | Me.Label3.Size = New System.Drawing.Size(61, 14) 234 | Me.Label3.TabIndex = 0 235 | Me.Label3.Text = "Followers: " 236 | ' 237 | 'GroupBox3 238 | ' 239 | Me.GroupBox3.Controls.Add(Me.Lv1) 240 | Me.GroupBox3.Location = New System.Drawing.Point(217, 2) 241 | Me.GroupBox3.Name = "GroupBox3" 242 | Me.GroupBox3.Size = New System.Drawing.Size(395, 304) 243 | Me.GroupBox3.TabIndex = 2 244 | Me.GroupBox3.TabStop = False 245 | Me.GroupBox3.Text = "Inactive Followers" 246 | ' 247 | 'Lv1 248 | ' 249 | Me.Lv1.CheckBoxes = True 250 | Me.Lv1.Columns.AddRange(New System.Windows.Forms.ColumnHeader() {Me.ColumnHeader1, Me.ColumnHeader2, Me.ColumnHeader3, Me.ColumnHeader4}) 251 | Me.Lv1.Dock = System.Windows.Forms.DockStyle.Fill 252 | Me.Lv1.FullRowSelect = True 253 | Me.Lv1.GridLines = True 254 | Me.Lv1.HideSelection = False 255 | Me.Lv1.Location = New System.Drawing.Point(3, 18) 256 | Me.Lv1.Name = "Lv1" 257 | Me.Lv1.ShowItemToolTips = True 258 | Me.Lv1.Size = New System.Drawing.Size(389, 283) 259 | Me.Lv1.TabIndex = 0 260 | Me.Lv1.UseCompatibleStateImageBehavior = False 261 | Me.Lv1.View = System.Windows.Forms.View.Details 262 | ' 263 | 'ColumnHeader1 264 | ' 265 | Me.ColumnHeader1.Text = "Username" 266 | Me.ColumnHeader1.Width = 142 267 | ' 268 | 'ColumnHeader2 269 | ' 270 | Me.ColumnHeader2.Text = "Posts N°" 271 | Me.ColumnHeader2.Width = 74 272 | ' 273 | 'ColumnHeader3 274 | ' 275 | Me.ColumnHeader3.Text = "Anonymous Pic" 276 | Me.ColumnHeader3.Width = 97 277 | ' 278 | 'ColumnHeader4 279 | ' 280 | Me.ColumnHeader4.Text = "Status" 281 | Me.ColumnHeader4.Width = 72 282 | ' 283 | 'StatusStrip1 284 | ' 285 | Me.StatusStrip1.Items.AddRange(New System.Windows.Forms.ToolStripItem() {Me.ToolStripStatusLabel1, Me.allStatus, Me.ToolStripStatusLabel3, Me.ToolStripStatusLabel2, Me.ToolStripStatusLabel4, Me.ToolStripStatusLabel5}) 286 | Me.StatusStrip1.Location = New System.Drawing.Point(0, 335) 287 | Me.StatusStrip1.Name = "StatusStrip1" 288 | Me.StatusStrip1.Size = New System.Drawing.Size(619, 22) 289 | Me.StatusStrip1.TabIndex = 3 290 | Me.StatusStrip1.Text = "StatusStrip1" 291 | ' 292 | 'ToolStripStatusLabel1 293 | ' 294 | Me.ToolStripStatusLabel1.Name = "ToolStripStatusLabel1" 295 | Me.ToolStripStatusLabel1.Size = New System.Drawing.Size(42, 17) 296 | Me.ToolStripStatusLabel1.Text = "Status:" 297 | ' 298 | 'allStatus 299 | ' 300 | Me.allStatus.Font = New System.Drawing.Font("Segoe UI Semibold", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 301 | Me.allStatus.ForeColor = System.Drawing.Color.DarkOrchid 302 | Me.allStatus.LinkColor = System.Drawing.Color.Maroon 303 | Me.allStatus.Name = "allStatus" 304 | Me.allStatus.Size = New System.Drawing.Size(27, 17) 305 | Me.allStatus.Text = "Idle" 306 | ' 307 | 'ToolStripStatusLabel3 308 | ' 309 | Me.ToolStripStatusLabel3.Name = "ToolStripStatusLabel3" 310 | Me.ToolStripStatusLabel3.Size = New System.Drawing.Size(52, 17) 311 | Me.ToolStripStatusLabel3.Text = " " 312 | ' 313 | 'ToolStripStatusLabel2 314 | ' 315 | Me.ToolStripStatusLabel2.Image = CType(resources.GetObject("ToolStripStatusLabel2.Image"), System.Drawing.Image) 316 | Me.ToolStripStatusLabel2.IsLink = True 317 | Me.ToolStripStatusLabel2.Name = "ToolStripStatusLabel2" 318 | Me.ToolStripStatusLabel2.Size = New System.Drawing.Size(90, 17) 319 | Me.ToolStripStatusLabel2.Text = "Source Code" 320 | ' 321 | 'ToolStripStatusLabel4 322 | ' 323 | Me.ToolStripStatusLabel4.Name = "ToolStripStatusLabel4" 324 | Me.ToolStripStatusLabel4.Size = New System.Drawing.Size(19, 17) 325 | Me.ToolStripStatusLabel4.Text = " " 326 | ' 327 | 'ToolStripStatusLabel5 328 | ' 329 | Me.ToolStripStatusLabel5.Image = CType(resources.GetObject("ToolStripStatusLabel5.Image"), System.Drawing.Image) 330 | Me.ToolStripStatusLabel5.IsLink = True 331 | Me.ToolStripStatusLabel5.Name = "ToolStripStatusLabel5" 332 | Me.ToolStripStatusLabel5.Size = New System.Drawing.Size(74, 17) 333 | Me.ToolStripStatusLabel5.Text = "X-SLAYER" 334 | ' 335 | 'more 336 | ' 337 | Me.more.Cursor = System.Windows.Forms.Cursors.Hand 338 | Me.more.Enabled = False 339 | Me.more.Location = New System.Drawing.Point(541, 304) 340 | Me.more.Name = "more" 341 | Me.more.Size = New System.Drawing.Size(70, 23) 342 | Me.more.TabIndex = 4 343 | Me.more.Text = "More >>" 344 | Me.more.UseVisualStyleBackColor = True 345 | ' 346 | 'UnFollowBtn 347 | ' 348 | Me.UnFollowBtn.Cursor = System.Windows.Forms.Cursors.Hand 349 | Me.UnFollowBtn.Enabled = False 350 | Me.UnFollowBtn.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft 351 | Me.UnFollowBtn.Location = New System.Drawing.Point(220, 304) 352 | Me.UnFollowBtn.Name = "UnFollowBtn" 353 | Me.UnFollowBtn.Size = New System.Drawing.Size(88, 23) 354 | Me.UnFollowBtn.TabIndex = 5 355 | Me.UnFollowBtn.Text = "UnFollow" 356 | Me.UnFollowBtn.UseVisualStyleBackColor = True 357 | ' 358 | 'Form1 359 | ' 360 | Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 14.0!) 361 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 362 | Me.ClientSize = New System.Drawing.Size(619, 357) 363 | Me.Controls.Add(Me.UnFollowBtn) 364 | Me.Controls.Add(Me.more) 365 | Me.Controls.Add(Me.StatusStrip1) 366 | Me.Controls.Add(Me.GroupBox3) 367 | Me.Controls.Add(Me.GroupBox2) 368 | Me.Controls.Add(Me.GroupBox1) 369 | Me.Font = New System.Drawing.Font("Calibri", 9.0!, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, CType(0, Byte)) 370 | Me.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle 371 | Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon) 372 | Me.MaximizeBox = False 373 | Me.Name = "Form1" 374 | Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen 375 | Me.Text = "Instagram Ghost Cleaner | X-SLAYER" 376 | Me.GroupBox1.ResumeLayout(False) 377 | Me.GroupBox1.PerformLayout() 378 | Me.GroupBox2.ResumeLayout(False) 379 | Me.GroupBox2.PerformLayout() 380 | Me.GroupBox3.ResumeLayout(False) 381 | Me.StatusStrip1.ResumeLayout(False) 382 | Me.StatusStrip1.PerformLayout() 383 | Me.ResumeLayout(False) 384 | Me.PerformLayout() 385 | 386 | End Sub 387 | 388 | Friend WithEvents GroupBox1 As GroupBox 389 | Friend WithEvents TPass As TextBox 390 | Friend WithEvents TUser As TextBox 391 | Friend WithEvents Label1 As Label 392 | Friend WithEvents Label2 As Label 393 | Friend WithEvents bLogin As Button 394 | Friend WithEvents status As LinkLabel 395 | Friend WithEvents GroupBox2 As GroupBox 396 | Friend WithEvents GroupBox3 As GroupBox 397 | Friend WithEvents Lv1 As ListView 398 | Friend WithEvents ColumnHeader1 As ColumnHeader 399 | Friend WithEvents ColumnHeader2 As ColumnHeader 400 | Friend WithEvents ColumnHeader3 As ColumnHeader 401 | Friend WithEvents Label3 As Label 402 | Friend WithEvents Label4 As Label 403 | Friend WithEvents Label5 As Label 404 | Friend WithEvents Label6 As Label 405 | Friend WithEvents lfollowers As Label 406 | Friend WithEvents lfollowing As Label 407 | Friend WithEvents lmediaCount As Label 408 | Friend WithEvents buinessAcc As Label 409 | Friend WithEvents logOut As Button 410 | Friend WithEvents StatusStrip1 As StatusStrip 411 | Friend WithEvents ToolStripStatusLabel1 As ToolStripStatusLabel 412 | Friend WithEvents allStatus As ToolStripStatusLabel 413 | Friend WithEvents ToolStripStatusLabel2 As ToolStripStatusLabel 414 | Friend WithEvents ToolStripStatusLabel3 As ToolStripStatusLabel 415 | Friend WithEvents ColumnHeader4 As ColumnHeader 416 | Friend WithEvents more As Button 417 | Friend WithEvents UnFollowBtn As Button 418 | Friend WithEvents ToolStripStatusLabel5 As ToolStripStatusLabel 419 | Friend WithEvents ToolStripStatusLabel4 As ToolStripStatusLabel 420 | End Class 421 | --------------------------------------------------------------------------------