Ejemplo n.º 1
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="options"></param>
 /// <param name="hits"></param>
 /// <returns></returns>
 private static IEnumerable<Hit> GetSortedHits(Options options, List<Hit> hits)
 {
     switch (options.Sort.ToLower())
     {
         case "modified":
             return from h in hits orderby h.LastModified select h;
         case "updated":
             return from h in hits orderby h.LastUpdate select h;
         case "path":
             return from h in hits orderby h.Path select h;
         case "filesize":
             return from h in hits orderby h.FileSize select h;
         case "executed":
             return from h in hits orderby h.ProcessExecFlag select h;
         default:
             return from h in hits orderby h.LastUpdate select h;
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="options"></param>
 /// <param name="hits"></param>
 /// <returns></returns>
 private static bool IsValidSortValue(Options options)
 {
     switch (options.Sort.ToLower())
     {
         case "modified":
             return true;
         case "updated":
             return true;
         case "path":
             return true;
         case "filesize":
             return true;
         case "executed":
             return true;
         case "":
             return true;
         default:
             return false;
     }
 }
Ejemplo n.º 3
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            try
            {
                Assembly assembly = Assembly.GetExecutingAssembly();
                AssemblyName assemblyName = assembly.GetName();

                Console.WriteLine(Environment.NewLine + "shimcacheparser v" + assemblyName.Version.ToString(3) + Environment.NewLine);

                Options options = new Options();
                if (CommandLineParser.Default.ParseArguments(args, options) == false)
                {
                    return;
                }

                if (IsValidSortValue(options) == false)
                {
                    Console.WriteLine("Invalid sort parameter value (-s)");
                    return;
                }

                if (File.Exists(options.File) == false)
                {
                    Console.WriteLine("The registry file does not exist");
                    return;
                }

                Registry.Registry registry = new Registry.Registry(options.File);
                RegistryKey rootKey = registry.Root;
                foreach (RegistryKey subKey in rootKey.SubKeys())
                {
                    if (subKey.Name.IndexOf("ControlSet", StringComparison.InvariantCultureIgnoreCase) == -1)
                    {
                        continue;
                    }

                    try
                    {
                        List<Hit> hits = new List<Hit>();

                        RegistryKey regKeySessionManager = registry.Open(string.Format(@"{0}\Control\Session Manager", subKey.Name));
                        if (regKeySessionManager == null)
                        {
                            continue;
                        }

                        foreach (RegistryKey subKeySessionManager in regKeySessionManager.SubKeys())
                        {
                            //@"ControlSet001\Control\Session Manager\AppCompatibility\AppCompatCache"
                            //@"ControlSet001\Control\Session Manager\AppCompatCache\AppCompatCache"
                            if (subKeySessionManager.Name.IndexOf("AppCompatibility", StringComparison.InvariantCultureIgnoreCase) == -1 &
                                subKeySessionManager.Name.IndexOf("AppCompatCache", StringComparison.InvariantCultureIgnoreCase) == -1)
                            {
                                continue;
                            }

                            RegistryValue regVal = subKeySessionManager.Value("AppCompatCache");
                            if (regVal == null)
                            {
                                continue;
                            }

                            byte[] data = (byte[])regVal.Value;

                            // Data size less than minimum header size.
                            if (data.Length < 16)
                            {
                                continue;
                            }

                            UInt32 magic = BitConverter.ToUInt32(data.Slice(0, 4), 0);

                            // Determine which version we are working with
                            switch (magic)
                            {
                                case Global.WINXP_MAGIC32: // This is WinXP cache data
                                    Console.WriteLine("[+] Found 32bit Windows XP Shim Cache data...");
                                    hits = ReadWinXpEntries(data);
                                    break;
                                case Global.CACHE_MAGIC_NT5_2:  // This is a Windows 2k3/Vista/2k8 Shim Cache format,
                                    // Shim Cache types can come in 32-bit or 64-bit formats. We can determine this because 64-bit entries are serialized with u_int64 pointers.
                                    // This means that in a 64-bit entry, valid UNICODE_STRING sizes are followed by a NULL DWORD. Check for this here.
                                    UInt16 testSizeNt5 = BitConverter.ToUInt16(data.Slice(8, 10), 0);
                                    UInt16 testMaxSizeNt5 = BitConverter.ToUInt16(data.Slice(10, 12), 0);
                                    UInt32 testTempNt5 = BitConverter.ToUInt32(data.Slice(12, 16), 0);

                                    if ((testMaxSizeNt5 - testSizeNt5 == 2) & (testTempNt5 == 0))
                                    {
                                        Console.WriteLine("[+] Found 64bit Windows 2k3/Vista/2k8 Shim Cache data...");
                                        hits = ReadNt5Entries(data, false);
                                    }
                                    else
                                    {
                                        Console.WriteLine("[+] Found 32bit Windows 2k3/Vista/2k8 Shim Cache data...");
                                        hits = ReadNt5Entries(data, true);
                                    }

                                    break;
                                case Global.CACHE_MAGIC_NT6_1: // This is a Windows 7/2k8-R2 Shim Cache.
                                    // Shim Cache types can come in 32-bit or 64-bit formats. We can determine this because 64-bit entries are serialized with u_int64 pointers.
                                    // This means that in a 64-bit entry, valid UNICODE_STRING sizes are followed by a NULL DWORD. Check for this here.
                                    UInt16 testSizeNt6 = BitConverter.ToUInt16(data.Slice(Global.CACHE_HEADER_SIZE_NT6_1, Global.CACHE_HEADER_SIZE_NT6_1 + 2), 0);
                                    UInt16 testMaxSizeNt6 = BitConverter.ToUInt16(data.Slice(Global.CACHE_HEADER_SIZE_NT6_1 + 2, Global.CACHE_HEADER_SIZE_NT6_1 + 4), 0);
                                    UInt32 testTempNt6 = BitConverter.ToUInt32(data.Slice(Global.CACHE_HEADER_SIZE_NT6_1 + 4, Global.CACHE_HEADER_SIZE_NT6_1 + 8), 0);

                                    if ((testMaxSizeNt6 - testSizeNt6 == 2) & (testTempNt6 == 0))
                                    {
                                        Console.WriteLine("[+] Found 64bit Windows 7/2k8-R2 Shim Cache data...");
                                        hits = ReadNt6Entries(data, false);
                                    }
                                    else
                                    {
                                        Console.WriteLine("[+] Found 32bit Windows 7/2k8-R2 Shim Cache data...");
                                        hits = ReadNt6Entries(data, true);
                                    }
                                    break;
                                default:
                                    Console.WriteLine(string.Format("[-] Got an unrecognized magic value of {0}... bailing... ", magic));
                                    return;
                            }
                        }

                        PrintHits(options, hits);
                    }
                    catch (Exception ex)
                    {
                        Console.WriteLine("An error occurred: " + ex.Message);
                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("An error occurred: " + ex.Message);
            }
        }
Ejemplo n.º 4
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="options"></param>
        /// <returns></returns>
        private static CsvWriterOptions SetCsvWriterConfig(Options options)
        {
            CsvHelper.CsvWriterOptions csvWriterOptions = new CsvWriterOptions();
            try
            {
                switch (options.Delimiter)
                {
                    case "'\\t'":
                        csvWriterOptions.Delimiter = '\t';
                        break;
                    case "\\t":
                        csvWriterOptions.Delimiter = '\t';
                        break;
                    default:
                        csvWriterOptions.Delimiter = char.Parse(options.Delimiter);
                        break;
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("Unable to set delimiter. Defaulting to comma \",\": " + ex.Message);
                csvWriterOptions.Delimiter = ',';
            }

            return csvWriterOptions;
        }
Ejemplo n.º 5
0
        /// <summary>
        /// 
        /// </summary>
        /// <param name="options"></param>
        /// <param name="hits"></param>
        private static void PrintHits(Options options, List<Hit> hits)
        {
            try
            {
                CsvHelper.CsvWriterOptions csvWriterOptions = SetCsvWriterConfig(options);

                using (MemoryStream memoryStream = new MemoryStream())
                using (StreamWriter streamWriter = new StreamWriter(memoryStream))
                using (CsvHelper.CsvWriter csvWriter = new CsvHelper.CsvWriter(streamWriter, csvWriterOptions))
                {
                    // Write out the file headers
                    csvWriter.WriteField("Last Modified");
                    csvWriter.WriteField("Last Update");
                    csvWriter.WriteField("Path");
                    csvWriter.WriteField("File Size");
                    csvWriter.WriteField("Process Exec Flag");
                    csvWriter.NextRecord();

                    var sorted = GetSortedHits(options, hits);

                    foreach (Hit hit in sorted)
                    {
                        switch (hit.Type)
                        {
                            case Global.CacheType.CacheEntryXp: // Windows XP Shim Cache
                                csvWriter.WriteField(hit.LastModified.ToShortDateString() + " " + hit.LastModified.ToShortTimeString());
                                csvWriter.WriteField(hit.LastUpdate.ToShortDateString() + " " + hit.LastUpdate.ToShortTimeString());
                                csvWriter.WriteField(hit.Path);
                                csvWriter.WriteField(hit.FileSize.ToString());
                                csvWriter.WriteField(hit.ProcessExecFlag);
                                csvWriter.NextRecord();

                                break;
                            case Global.CacheType.CacheEntryNt5: // Windows 2k3/Vista/2k8 Shim Cache
                            case Global.CacheType.CacheEntryNt6: // Windows 7/2k8-R2 Shim Cache
                                csvWriter.WriteField(hit.LastModified.ToShortDateString() + " " + hit.LastModified.ToShortTimeString());
                                csvWriter.WriteField("N/A");
                                csvWriter.WriteField(hit.Path);
                                csvWriter.WriteField("N/A");
                                csvWriter.WriteField(hit.ProcessExecFlag);
                                csvWriter.NextRecord();
                                break;
                        }
                    }

                    string output = string.Empty;
                    memoryStream.Position = 0;
                    using (StreamReader streamReader = new StreamReader(memoryStream))
                    {
                        output = streamReader.ReadToEnd();
                    }

                    Console.Write(output);

                    if (options.Output.Length > 0)
                    {
                        string ret = IO.WriteUnicodeTextToFile(output, options.Output, false);
                        if (ret.Length > 0)
                        {

                        }
                    }
                }
            }
            catch (Exception ex)
            {
                Console.WriteLine("An error occurred: " + ex.Message);
            }
        }