-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathprogram.cs
67 lines (55 loc) · 1.74 KB
/
program.cs
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Threading;
using System.IO;
namespace idecrypter
{
internal class Program
{
static void Main(string[] args)
{
string predefinedVerification = "gsmadjaa";
if (args.Length == 3)
{
string backupPath = args[0];
string password = args[1];
string verification = args[2];
if (verification == predefinedVerification)
{
if (!string.IsNullOrWhiteSpace(backupPath))
{
Console.WriteLine("Backup Path: " + backupPath);
Console.WriteLine("Password: " + password);
finishBackup(backupPath, password);
}
else
{
Console.WriteLine("Backup path cannot be empty.");
}
}
else
{
Console.WriteLine("Verification failed. Please provide the correct verification value.");
}
}
else
{
Console.WriteLine("Check instructions");
}
}
public static void finishBackup(string path , string password)
{
string filePath = "data.txt";
if (File.Exists(filePath))
{
File.Delete(filePath);
File.Create(filePath).Close();
}
string keyfolderbk = path;
code.decrypt(keyfolderbk, password , new Version(12, 3, 0));
}
}
}