Find this useful? Enter your email to receive occasional updates for securing PHP code.

Signing you up...

Thank you for signing up!

PHP Decode

<?php /** * Authentication Language Lines * The following language lines are used during..

Decoded Output download

<?php
/**
 * Authentication Language Lines
 * The following language lines are used during authentication for various
 * messages that we need to display to the user.
 */
return [

    'failed' => '       .',
    'throttle' => '         .    :seconds    .',

    // Login & Register
    'sign_up' => ' ',
    'log_in' => '',
    'log_in_with' => '  :socialDriver',
    'sign_up_with' => '   :socialDriver',
    'logout' => '',

    'name' => '',
    'username' => ' ',
    'email' => ' ',
    'password' => ' ',
    'password_confirm' => '  ',
    'password_hint' => '   8  ',
    'forgot_password' => '      ',
    'remember_me' => '   ',
    'ldap_email_hint' => '          .',
    'create_account' => '  ',
    'already_have_account' => '    ',
    'dont_have_account' => '  ',
    'social_login' => '    ',
    'social_registration' => '     ',
    'social_registration_text' => '           .',

    'register_thanks' => '    !',
    'register_confirm' => '          :appName     .',
    'registrations_disabled' => '       ',
    'registration_email_domain_invalid' => '       ',
    'register_success' => '    !          .',

    // Login auto-initiation
    'auto_init_starting' => '  ',
    'auto_init_starting_desc' => '             .    5           .',
    'auto_init_start_link' => '    ',

    // Password Reset
    'reset_password' => '  ',
    'reset_password_send_instructions' => '                  .',
    'reset_password_send_button' => '  ',
    'reset_password_sent' => '               .',
    'reset_password_success' => '      .',
    'email_reset_subject' => '   :appName',
    'email_reset_text' => '            .',
    'email_reset_not_requested' => '                 .',

    // Email Confirmation
    'email_confirm_subject' => '    :appName  ',
    'email_confirm_greeting' => '   :appName !',
    'email_confirm_text' => '            :',
    'email_confirm_action' => '  ',
    'email_confirm_send_error' => '             .',
    'email_confirm_success' => '   !           .',
    'email_confirm_resent' => '             .',
    'email_confirm_thanks' => '  !',
    'email_confirm_thanks_desc' => '         .    3       ""     .',

    'email_not_confirmed' => '    ',
    'email_not_confirmed_text' => '      .',
    'email_not_confirmed_click_link' => '                 .',
    'email_not_confirmed_resend' => '                    .',
    'email_not_confirmed_resend_button' => '    ',

    // User Invite
    'user_invite_email_subject' => '     :appName   !',
    'user_invite_email_greeting' => '     :appName   .',
    'user_invite_email_text' => '              :',
    'user_invite_email_action' => '   ',
    'user_invite_page_welcome' => ' :appName  !',
    'user_invite_page_text' => '       :appName           .',
    'user_invite_page_confirm_button' => '  ',
    'user_invite_success_login' => '                    :appName   !',

    // Multi-factor Authentication
    'mfa_setup' => '    ',
    'mfa_setup_desc' => '              .',
    'mfa_setup_configured' => '    .',
    'mfa_setup_reconfigure' => ' ',
    'mfa_setup_remove_confirmation' => '        ',
    'mfa_setup_action' => '',
    'mfa_backup_codes_usage_limit_warning' => '  5                          .',
    'mfa_option_totp_title' => '  ',
    'mfa_option_totp_desc' => '               TOTP    Google Authenticator Authy  Microsoft Authenticator.',
    'mfa_option_backup_codes_title' => ' ',
    'mfa_option_backup_codes_desc' => 'Generates a set of one-time-use backup codes which you\'ll enter on login to verify your identity. Make sure to store these in a safe & secure place.',
    'mfa_gen_confirm_and_enable' => '   ',
    'mfa_gen_backup_codes_title' => '   ',
    'mfa_gen_backup_codes_desc' => '        .                  .',
    'mfa_gen_backup_codes_download' => ' ',
    'mfa_gen_backup_codes_usage_warning' => '       ',
    'mfa_gen_totp_title' => '   ',
    'mfa_gen_totp_desc' => '               TOTP    Google Authenticator Authy  Microsoft Authenticator.',
    'mfa_gen_totp_scan' => '   QR            .',
    'mfa_gen_totp_verify_setup' => ' ',
    'mfa_gen_totp_verify_setup_desc' => '                       :',
    'mfa_gen_totp_provide_code_here' => '         ',
    'mfa_verify_access' => ' ',
    'mfa_verify_access_desc' => '                           .              .',
    'mfa_verify_no_methods' => '    ',
    'mfa_verify_no_methods_desc' => '          .          .',
    'mfa_verify_use_totp' => '        ',
    'mfa_verify_use_backup_codes' => '       ',
    'mfa_verify_backup_code' => ' ',
    'mfa_verify_backup_code_desc' => '           :',
    'mfa_verify_backup_code_enter_here' => '      ',
    'mfa_verify_totp_desc' => '              :',
    'mfa_setup_login_notification' => '               .',
];
 ?>

Did this file decode correctly?

Original Code

<?php
/**
 * Authentication Language Lines
 * The following language lines are used during authentication for various
 * messages that we need to display to the user.
 */
return [

    'failed' => '       .',
    'throttle' => '         .    :seconds    .',

    // Login & Register
    'sign_up' => ' ',
    'log_in' => '',
    'log_in_with' => '  :socialDriver',
    'sign_up_with' => '   :socialDriver',
    'logout' => '',

    'name' => '',
    'username' => ' ',
    'email' => ' ',
    'password' => ' ',
    'password_confirm' => '  ',
    'password_hint' => '   8  ',
    'forgot_password' => '      ',
    'remember_me' => '   ',
    'ldap_email_hint' => '          .',
    'create_account' => '  ',
    'already_have_account' => '    ',
    'dont_have_account' => '  ',
    'social_login' => '    ',
    'social_registration' => '     ',
    'social_registration_text' => '           .',

    'register_thanks' => '    !',
    'register_confirm' => '          :appName     .',
    'registrations_disabled' => '       ',
    'registration_email_domain_invalid' => '       ',
    'register_success' => '    !          .',

    // Login auto-initiation
    'auto_init_starting' => '  ',
    'auto_init_starting_desc' => '             .    5           .',
    'auto_init_start_link' => '    ',

    // Password Reset
    'reset_password' => '  ',
    'reset_password_send_instructions' => '                  .',
    'reset_password_send_button' => '  ',
    'reset_password_sent' => '               .',
    'reset_password_success' => '      .',
    'email_reset_subject' => '   :appName',
    'email_reset_text' => '            .',
    'email_reset_not_requested' => '                 .',

    // Email Confirmation
    'email_confirm_subject' => '    :appName  ',
    'email_confirm_greeting' => '   :appName !',
    'email_confirm_text' => '            :',
    'email_confirm_action' => '  ',
    'email_confirm_send_error' => '             .',
    'email_confirm_success' => '   !           .',
    'email_confirm_resent' => '             .',
    'email_confirm_thanks' => '  !',
    'email_confirm_thanks_desc' => '         .    3       ""     .',

    'email_not_confirmed' => '    ',
    'email_not_confirmed_text' => '      .',
    'email_not_confirmed_click_link' => '                 .',
    'email_not_confirmed_resend' => '                    .',
    'email_not_confirmed_resend_button' => '    ',

    // User Invite
    'user_invite_email_subject' => '     :appName   !',
    'user_invite_email_greeting' => '     :appName   .',
    'user_invite_email_text' => '              :',
    'user_invite_email_action' => '   ',
    'user_invite_page_welcome' => ' :appName  !',
    'user_invite_page_text' => '       :appName           .',
    'user_invite_page_confirm_button' => '  ',
    'user_invite_success_login' => '                    :appName   !',

    // Multi-factor Authentication
    'mfa_setup' => '    ',
    'mfa_setup_desc' => '              .',
    'mfa_setup_configured' => '    .',
    'mfa_setup_reconfigure' => ' ',
    'mfa_setup_remove_confirmation' => '        ',
    'mfa_setup_action' => '',
    'mfa_backup_codes_usage_limit_warning' => '  5                          .',
    'mfa_option_totp_title' => '  ',
    'mfa_option_totp_desc' => '               TOTP    Google Authenticator Authy  Microsoft Authenticator.',
    'mfa_option_backup_codes_title' => ' ',
    'mfa_option_backup_codes_desc' => 'Generates a set of one-time-use backup codes which you\'ll enter on login to verify your identity. Make sure to store these in a safe & secure place.',
    'mfa_gen_confirm_and_enable' => '   ',
    'mfa_gen_backup_codes_title' => '   ',
    'mfa_gen_backup_codes_desc' => '        .                  .',
    'mfa_gen_backup_codes_download' => ' ',
    'mfa_gen_backup_codes_usage_warning' => '       ',
    'mfa_gen_totp_title' => '   ',
    'mfa_gen_totp_desc' => '               TOTP    Google Authenticator Authy  Microsoft Authenticator.',
    'mfa_gen_totp_scan' => '   QR            .',
    'mfa_gen_totp_verify_setup' => ' ',
    'mfa_gen_totp_verify_setup_desc' => '                       :',
    'mfa_gen_totp_provide_code_here' => '         ',
    'mfa_verify_access' => ' ',
    'mfa_verify_access_desc' => '                           .              .',
    'mfa_verify_no_methods' => '    ',
    'mfa_verify_no_methods_desc' => '          .          .',
    'mfa_verify_use_totp' => '        ',
    'mfa_verify_use_backup_codes' => '       ',
    'mfa_verify_backup_code' => ' ',
    'mfa_verify_backup_code_desc' => '           :',
    'mfa_verify_backup_code_enter_here' => '      ',
    'mfa_verify_totp_desc' => '              :',
    'mfa_setup_login_notification' => '               .',
];

Function Calls

None

Variables

None

Stats

MD5 6d77421646f2682f919bc620d5963528
Eval Count 0
Decode Time 113 ms