3v4l.org

run code in 300+ PHP versions simultaneously
<?php function decrypt($str, $key) { $iv = substr( md5("hacker",true), 0, 8 ); return mcrypt_decrypt( MCRYPT_BLOWFISH, $key, $str, MCRYPT_MODE_CBC, $iv ); } $Validation="4lOF4ZMmdPxlFjZD63nA=="; $key=base64_encode("e79c4da4f94b86cba5a81ba39fed083dbaf8bce"); echo decrypt(base64_decode($Validation),$key); ?>
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/qkkI9
function name:  (null)
number of ops:  14
compiled vars:  !0 = $Validation, !1 = $key
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    6     0  E >   ASSIGN                                                   !0, '4lOF4ZMmdPxlFjZD63nA%3D%3D'
    7     1        INIT_FCALL                                               'base64_encode'
          2        SEND_VAL                                                 'e79c4da4f94b86cba5a81ba39fed083dbaf8bce'
          3        DO_ICALL                                         $3      
          4        ASSIGN                                                   !1, $3
    8     5        INIT_FCALL                                               'decrypt'
          6        INIT_FCALL                                               'base64_decode'
          7        SEND_VAR                                                 !0
          8        DO_ICALL                                         $5      
          9        SEND_VAR                                                 $5
         10        SEND_VAR                                                 !1
         11        DO_FCALL                                      0  $6      
         12        ECHO                                                     $6
    9    13      > RETURN                                                   1

Function decrypt:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/qkkI9
function name:  decrypt
number of ops:  23
compiled vars:  !0 = $str, !1 = $key, !2 = $iv
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   RECV                                             !0      
          1        RECV                                             !1      
    3     2        INIT_FCALL                                               'substr'
          3        INIT_FCALL                                               'md5'
          4        SEND_VAL                                                 'hacker'
          5        SEND_VAL                                                 <true>
          6        DO_ICALL                                         $3      
          7        SEND_VAR                                                 $3
          8        SEND_VAL                                                 0
          9        SEND_VAL                                                 8
         10        DO_ICALL                                         $4      
         11        ASSIGN                                                   !2, $4
    4    12        INIT_FCALL_BY_NAME                                       'mcrypt_decrypt'
         13        FETCH_CONSTANT                                   ~6      'MCRYPT_BLOWFISH'
         14        SEND_VAL_EX                                              ~6
         15        SEND_VAR_EX                                              !1
         16        SEND_VAR_EX                                              !0
         17        FETCH_CONSTANT                                   ~7      'MCRYPT_MODE_CBC'
         18        SEND_VAL_EX                                              ~7
         19        SEND_VAR_EX                                              !2
         20        DO_FCALL                                      0  $8      
         21      > RETURN                                                   $8
    5    22*     > RETURN                                                   null

End of function decrypt

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
168.98 ms | 1399 KiB | 22 Q