-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
51 lines (44 loc) · 1.82 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
namespace VLN
{
internal class Program
{
static void Title() {
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("___ ___ ___ ________ ");
Console.WriteLine("|\\ \\ / /|\\ \\ |\\ __ \\ ");
Console.WriteLine("\\ \\ \\ / / | \\ \\ \\ \\ \\|\\ /_ ");
Console.WriteLine(" \\ \\ \\/ / / \\ \\ \\ \\ \\ __ \\ ");
Console.WriteLine(" \\ \\ / / \\ \\ \\____\\ \\ \\|\\ \\ ");
Console.WriteLine(" \\ \\__/ / \\ \\_______\\ \\_______\\");
Console.WriteLine(" \\|__|/ \\|_______|\\|_______|");
Console.WriteLine("");
Console.ForegroundColor = ConsoleColor.Cyan;
Console.WriteLine(" [Vanity Links Breaker] ");
Console.WriteLine("\n");
Console.ResetColor();
}
static void Main(string[] args)
{
Console.OutputEncoding = System.Text.Encoding.UTF8;
Title();
if(args.Length > 0) {
VanityBreaker.FindOrigin(args[0]);
} else {
while (true) {
Console.ForegroundColor = ConsoleColor.Green;
Console.Write("$ ");
Console.ForegroundColor = ConsoleColor.White;
string link = Console.ReadLine();
if (link == "") continue;
VanityBreaker.FindOrigin(link);
Console.ForegroundColor = ConsoleColor.Gray;
Console.WriteLine("\nPress any key to continue....");
Console.ReadKey();
Console.Clear();
Title();
}
}
Console.ResetColor();
}
}
}