This repository was archived by the owner on Dec 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
38 lines (37 loc) · 1.67 KB
/
Program.cs
File metadata and controls
38 lines (37 loc) · 1.67 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ObfuscatorAIO
{
class Program
{
static void Main(string[] args)
{
Start();
}
public static void Start()
{
Logo();
Console.WriteLine("\nHTML, And JavaScript Obfuscation Is Coming Soon Aswell With Stronger Obfuscation Methods.\nI am not responsible for malicious use of this program.\n\n1.)PHP\n2.)Batch/MS-DOS Scripting Obfuscation\n3.)URL Obfuscation\n4.)C-Sharp Obfuscation");
Console.Write("\nPlease Select An Option =>");
switch(Console.ReadLine())
{
case "1":
PHP.Start();
break;
case "2":
Batch.Start();
break;
case "3":
URL.Start();
break;
case "4":
CSharp.Start();
break;
}
}
public static void Logo() { Console.ForegroundColor = ConsoleColor.Magenta; Console.WriteLine(" ____ __ ____ __ ___ ________ \n" + @" / __ \/ /_ / __/_ ________________ _/ /_____ _____/ | / _/ __ \ " + "\n " + @" / / / / __ \/ /_/ / / / ___/ ___/ __ `/ __/ __ \/ ___/ /| | / // / / /" + "\n " + "/ /_/ / /_/ / __/ /_/ (__ ) /__/ /_/ / /_/ /_/ / / / ___ |_/ // /_/ / " + "\n " + @"\____/_.___/_/ \__,_/____/\___/\__,_/\__/\____/_/ /_/ |_/___/\____/ Created By 123Studios" + "\n\n"); Console.ForegroundColor = ConsoleColor.White; }
}
}