Advertisement
Guest User

Untitled

a guest
Jun 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. public string Base64Encode_post(string plainText)
  2. {
  3. string initVector1 = "29554541058351244149182070499721";
  4. string saltValue1 = "02:20:44";
  5. string longTimeString = DateTime.Now.ToLongTimeString();
  6. string hashAlgorithm = "SHA1";
  7. string initVector2 = "26444785279548523775944767813941";
  8. string saltValue2 = "00:02:10";
  9. string str = this.monitorIN(plainText, "Q9AXAxsJCxSmBdfFFhntGrdnSzoUGz", saltValue1, hashAlgorithm, 12, initVector1, 256);
  10. return this.NonJSP(Encoding.UTF8.GetString(new WebClient().UploadValues("http://launcher.strikearena.ru/ll.php", "POST", new NameValueCollection()
  11. {
  12. {
  13. "date_now",
  14. longTimeString
  15. },
  16. {
  17. "data",
  18. str
  19. }
  20. })), "E6YSwSWCDEK7st7qUXFsghtCiMDNPp", saltValue2, hashAlgorithm, 15, initVector2, 256).Trim(new char[1]);
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement