-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathInformation.cs
29 lines (23 loc) · 1 KB
/
Information.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
using System;
namespace RedPersist
{
internal class Information
{
public static void Banner()
{
var bannerText = @"
_____ _ _ _ _
/ ____| | | | | | | |
| (___ | |__ __ _ _ __ _ __ | | __ _| |_ ___ _ __ __ _| |
\___ \| '_ \ / _` | '__| '_ \| | / _` | __/ _ \ '__/ _` | |
____) | | | | (_| | | | |_) | |___| (_| | || __/ | | (_| | |
|_____/|_| |_|\__,_|_| | .__/|______\__,_|\__\___|_| \__,_|_|
| |
|_|
Mert Das @merterpreter
version: v1.0
";
Console.WriteLine(bannerText);
}
}
}