⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.139
Server IP:
44.234.190.86
Server:
Linux ip-172-31-55-191 5.4.0-1060-aws #63~18.04.1-Ubuntu SMP Mon Nov 15 14:31:31 UTC 2021 x86_64
Server Software:
Apache/2.4.29 (Ubuntu)
PHP Version:
7.0.33-30+ubuntu18.04.1+deb.sury.org+1
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
var
/
lib
/
dpkg
/
info
/
View File Name :
php7.0-mysql.postinst
#!/bin/sh set -e if [ "$1" = "configure" ]; then # Install the new versioned configuration inidir=/etc/php/7.0/mods-available if [ -e /usr/lib/php/php-maintscript-helper ] ; then . /usr/lib/php/php-maintscript-helper for dsoname in mysqlnd mysqli pdo_mysql; do inifile=${dsoname}.ini # Register new conffile with UCF ucf /usr/share/php7.0-mysql/mysql/${inifile} ${inidir}/${inifile} ucfr --force php7.0-mysql ${inidir}/${inifile} if [ -f "${inidir}/${inifile}.dpkg-new" ]; then md5sum="$(md5sum ${inidir}/${inifile}.dpkg-new | sed -e 's/ .*//')" old_md5sum="$(md5sum ${inidir}/${inifile} | sed -e 's/ .*//')" if [ "$md5sum" = "$old_md5sum" ]; then mv "${inidir}/${inifile}.dpkg-new" "${inidir}/${inifile}" fi fi php_invoke enmod 7.0 ALL ${dsoname} done fi fi exit 0