- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 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
using System;
using System.Threading;
using System.Diagnostics;
public class ANYRUN_server
{
private static string application = null;
public static void Main(string[] args)
{
Authorization();
}
private static void Authorization()
{
DateTime today = DateTime.Now;
Console.WriteLine("\"Not business mail users\" registration");
Console.WriteLine("Please fill out our straightforward application form:");
application = Console.ReadLine();
SendApplication(application);
Thread.Sleep(3600000);
if (today.Month == 4 && today.Day == 1)
{
AcceptApplication();
}
else
{
RejectApplication();
}
}
private static void SendApplication(string application)
{
// Like, who cares about the application?
application = null;
}
private static void RejectApplication()
{
Console.Write("Hello, after reviewing your application we are unable to provide you with a free personal account. ");
Console.Write("If you want to check files for malware I recommend using services such as https://opentip.kaspersky.com/ and https://www.virustotal.com/gui/home/upload.");
}
private static void AcceptApplication()
{
Console.WriteLine("Hello, after reviewing your application we decided to provide you with a free personal account.");
Console.WriteLine("Please, wait for a password...");
Thread.Sleep(1800000);
Console.WriteLine("Here's your password: ");
Thread.Sleep(5000);
Process.Start("videoplayer.exe", "C:\\Rickrolled.mp4");
}
}
Исходный код для регистрации пользователей без бизнеспочты в дискорде сайта any.run #meme
rOBHOBO3Hblu_nemyx 27.11.2024 13:44 # 0