-
-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathProgram.cs
More file actions
271 lines (246 loc) · 10 KB
/
Copy pathProgram.cs
File metadata and controls
271 lines (246 loc) · 10 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
using System.Windows.Forms;
using System.Security.Principal; // For NTFS permissions
using System.Security.AccessControl; // For NTFS permissions
using System.Drawing.Text;
//using MySqlConnector;
//using System.Data;
//using System.Diagnostics;
//using static System.Windows.Forms.VisualStyles.VisualStyleElement.TaskbarClock;
//using Backup_All_Databases.Properties;
//using System.Drawing;
namespace Backup_All_Databases
{
internal static class Program
{
internal static PrivateFontCollection myFontCollection = new PrivateFontCollection();
internal static string ConfigFilePath => Path.Combine(Application.StartupPath, "config.dat");
internal static string KeyFilePath => Path.Combine(Application.StartupPath, "kdac.bin");
internal static string saltFilePath => Path.Combine(Application.StartupPath, "salt.bin");
[STAThread]
static void Main(string[] args)
{
if (args != null && args.Length > 0)
{
foreach (string arg in args)
{
if (arg.ToUpper() == "/SILENT")
{
try
{
var config = ReadConfigFile(false);
if (config != null)
{
Backup backup = new Backup();
backup.Run(config);
config = null;
}
GC.Collect();
}
catch { }
return;
}
}
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
myFontCollection.AddFontFile(Path.Combine(Application.StartupPath, "CascadiaCode.ttf"));
Application.Run(new Form1());
}
/// <summary>
/// Prompts the user for a password via a dialog.
/// </summary>
private static string GetUserInputPwd()
{
using (FormPwd f1 = new FormPwd())
{
if (f1.ShowDialog() != DialogResult.OK)
return null;
string pwd = f1.pwd?.Trim();
if (string.IsNullOrEmpty(pwd))
{
MessageBox.Show("Password cannot be empty.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
return null;
}
return pwd;
}
}
/// <summary>
/// Reads and decrypts the configuration file.
/// </summary>
public static Config ReadConfigFile(bool p)
{
if (!File.Exists(ConfigFilePath))
return null;
byte[] key;
if (File.Exists(KeyFilePath) && !p)
{
byte[] protectedKey = File.ReadAllBytes(KeyFilePath);
try
{
key = EncryptionHelper.UnprotectKey(protectedKey);
}
catch (CryptographicException)
{
throw new Exception("Unable to access stored key.");
}
}
else
{
string password = GetUserInputPwd();
if (string.IsNullOrEmpty(password))
return null;
key = EncryptionHelper.GenerateKey(password);
}
try
{
byte[] fileData = File.ReadAllBytes(ConfigFilePath);
byte[] decryptedData = EncryptionHelper.Decrypt(fileData, key);
string configString = Encoding.UTF8.GetString(decryptedData);
string[] parts = configString.Split(new[] { "|||" }, StringSplitOptions.None);
if (parts.Length != 8)
{
throw new Exception("Invalid, outdated, incompatible configuration file");
}
int.TryParse(parts[2], out int maxBackupCopies);
Config config = new Config();
config.ConnectionString = parts[0];
config.BackupPath = parts[1];
config.MaxBackupCopies = maxBackupCopies;
config.BackupAllDatabases = bool.Parse(parts[3]);
config.IncludeList = parts[4].Split(',').ToList();
config.ExcludeList = parts[5].Split(',').ToList();
config.StartHour = Convert.ToInt32(parts[6]);
config.StartMinute = Convert.ToInt32(parts[7]);
config.Key = key;
Array.Clear(decryptedData, 0, decryptedData.Length);
return config;
}
catch (CryptographicException ex)
{
throw new Exception("Decryption Error: Incorrect password or corrupted file.");
}
catch (Exception ex)
{
throw new Exception($"Failed to read config: {ex.Message}");
}
}
/// <summary>
/// Writes the configuration to an encrypted file.
/// </summary>
public static void WriteConfigFile(Config newConfig)
{
if (newConfig == null)
{
throw new Exception("Configuration cannot be null.");
}
byte[] key = null;
string password = null;
try
{
if (File.Exists(ConfigFilePath))
{
Config existingConfig = ReadConfigFile(true);
if (existingConfig == null)
{
throw new Exception("Cannot write config: unable to read existing config.");
}
key = existingConfig.Key;
}
else
{
password = GetUserInputPwd();
if (string.IsNullOrEmpty(password))
return;
try
{
key = EncryptionHelper.GenerateKey(password);
}
catch (Exception ex)
{
throw new Exception($"Failed to generate encryption key: {ex.Message}");
}
try
{
byte[] protectedKey = EncryptionHelper.ProtectKey(key);
File.WriteAllBytes(KeyFilePath, protectedKey);
SetFilePermissions(KeyFilePath);
}
catch (Exception ex)
{
throw new Exception($"Failed to store protected key: {ex.Message}");
}
}
try
{
string configString = string.Join("|||",
newConfig.ConnectionString ?? "",
newConfig.BackupPath ?? "",
newConfig.MaxBackupCopies.ToString(),
newConfig.BackupAllDatabases.ToString(),
string.Join(",", newConfig.IncludeList ?? new List<string>()),
string.Join(",", newConfig.ExcludeList ?? new List<string>()),
newConfig.StartHour.ToString(),
newConfig.StartMinute.ToString());
byte[] data = Encoding.UTF8.GetBytes(configString);
byte[] encryptedData = EncryptionHelper.Encrypt(data, key);
File.WriteAllBytes(ConfigFilePath, encryptedData);
SetFilePermissions(ConfigFilePath); // Set NTFS permissions for config file
Array.Clear(data, 0, data.Length);
Array.Clear(encryptedData, 0, encryptedData.Length);
}
catch (Exception ex)
{
throw new Exception($"Failed to write config file: {ex.Message}");
}
}
finally
{
if (key != null)
Array.Clear(key, 0, key.Length);
if (password != null)
{
Array.Clear(Encoding.UTF8.GetBytes(password), 0, password.Length);
password = null;
}
}
}
/// <summary>
/// Sets NTFS permissions on a file to allow access only to SYSTEM and the current user.
/// </summary>
public static void SetFilePermissions(string filePath)
{
try
{
FileSecurity fileSecurity = File.GetAccessControl(filePath);
fileSecurity.SetAccessRuleProtection(true, false); // Disable inheritance
// Remove all existing access rules
foreach (FileSystemAccessRule rule in fileSecurity.GetAccessRules(true, true, typeof(NTAccount)))
{
fileSecurity.RemoveAccessRule(rule);
}
// Add access for SYSTEM
fileSecurity.AddAccessRule(new FileSystemAccessRule(
new NTAccount("NT AUTHORITY\\SYSTEM"),
FileSystemRights.FullControl,
AccessControlType.Allow));
// Add access for the current user
string currentUser = WindowsIdentity.GetCurrent().Name;
fileSecurity.AddAccessRule(new FileSystemAccessRule(
new NTAccount(currentUser),
FileSystemRights.FullControl,
AccessControlType.Allow));
File.SetAccessControl(filePath, fileSecurity);
}
catch (Exception ex)
{
MessageBox.Show($"Failed to set permissions on {filePath}: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}