HEX
Server: nginx/1.18.0
System: Linux vcwordpress 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64
User: root (0)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/bharti-foundation.stgviitor.com/wp-content/themes/lifeline/assets/js/encryption.js
class Encryption{get encryptMethodLength(){var t=this.encryptMethod.match(/\d+/)[0];return parseInt(t)}get encryptKeySize(){var t=this.encryptMethodLength;return parseInt(t/8)}get encryptMethod(){return"AES-256-CBC"}decrypt(t,r){var e=JSON.parse(CryptoJS.enc.Utf8.stringify(CryptoJS.enc.Base64.parse(t))),n=CryptoJS.enc.Hex.parse(e.salt),p=CryptoJS.enc.Hex.parse(e.iv),y=e.ciphertext,o=parseInt(e.iterations);o<=0&&(o=999);var i=this.encryptMethodLength/4,a=CryptoJS.PBKDF2(r,n,{hasher:CryptoJS.algo.SHA512,keySize:i/8,iterations:o});return CryptoJS.AES.decrypt(y,a,{mode:CryptoJS.mode.CBC,iv:p}).toString(CryptoJS.enc.Utf8)}encrypt(t,r){var e=CryptoJS.lib.WordArray.random(16),n=CryptoJS.lib.WordArray.random(256),p=this.encryptMethodLength/4,y=CryptoJS.PBKDF2(r,n,{hasher:CryptoJS.algo.SHA512,keySize:p/8,iterations:999}),o=CryptoJS.AES.encrypt(t,y,{mode:CryptoJS.mode.CBC,iv:e}),i={ciphertext:CryptoJS.enc.Base64.stringify(o.ciphertext),iv:CryptoJS.enc.Hex.stringify(e),salt:CryptoJS.enc.Hex.stringify(n),iterations:999};return CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(JSON.stringify(i)))}}