Encryption

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Encryption

    Can any1 of u tell
    Code:
    a:23:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:1:"1";i:4;s:1:"1";i:5;s:1:"1";i:26;s:1:"1";i:6;s:1:"1";i:7;s:1:"1";i:8;s:1:"1";i:9;s:1:"1";i:10;s:1:"1";i:11;s:1:"1";i:12;s:1:"1";i:13;s:1:"1";i:14;s:1:"1";i:15;s:1:"1";i:16;s:1:"1";i:17;s:1:"1";i:18;s:1:"1";i:19;s:1:"1";i:20;s:1:"1";i:21;s:1:"1";i:22;s:1:"1";}
    in which encryption in this

    #2
    Originally posted by shushant View Post
    Can any1 of u tell
    Code:
    a:23:{i:0;s:1:"1";i:1;s:1:"1";i:2;s:1:"1";i:4;s:1:"1";i:5;s:1:"1";i:26;s:1:"1";i:6;s:1:"1";i:7;s:1:"1";i:8;s:1:"1";i:9;s:1:"1";i:10;s:1:"1";i:11;s:1:"1";i:12;s:1:"1";i:13;s:1:"1";i:14;s:1:"1";i:15;s:1:"1";i:16;s:1:"1";i:17;s:1:"1";i:18;s:1:"1";i:19;s:1:"1";i:20;s:1:"1";i:21;s:1:"1";i:22;s:1:"1";}
    in which encryption in this
    It is a serialized object not an encryption. Use
    PHP Code:
    unserialize() 
    to retrieve the object.

    Read more here PHP: unserialize - Manual
    Perfection comes at a cost



    I accept liberty!

    Comment


      #3
      Check out this link PHP code - 5 lines - codepad it seems it is just an array with all the indexes numbers

      PHP Code:
      Array
      (
          [
      0] => 1
          
      [1] => 1
          
      [2] => 1
          
      [4] => 1
          
      [5] => 1
          
      [26] => 1
          
      [6] => 1
          
      [7] => 1
          
      [8] => 1
          
      [9] => 1
          
      [10] => 1
          
      [11] => 1
          
      [12] => 1
          
      [13] => 1
          
      [14] => 1
          
      [15] => 1
          
      [16] => 1
          
      [17] => 1
          
      [18] => 1
          
      [19] => 1
          
      [20] => 1
          
      [21] => 1
          
      [22] => 1

      Perfection comes at a cost



      I accept liberty!

      Comment


        #4
        But i found it on backup of gbtoplist script and can u tell me how i get admin pass from gbtoplist backup

        Comment


          #5
          get from Database and dycrypt

          Comment

          Working...
          X