Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
app /
js /
Delete
Unzip
Name
Size
Permission
Date
Action
app.js
7.13
KB
-rw-r--r--
2020-01-24 10:25
routes.js
2.33
KB
-rw-r--r--
2019-12-04 04:16
Save
Rename
routes = [ { path: '/', url: './index.php', }, { path: '/about/', url: './pages/about.html', }, { path: '/catalog/', componentUrl: './pages/latestnews.php', }, { path: '/product/:id/', componentUrl: './pages/product.html', }, { path: '/search/', url: './pages/search.php', }, { path: '/members/', url: './pages/members.php', }, { path: '/cenews/', url: './pages/cenews.php', }, { path: '/practicenotes/', url: './pages/practicenotes.php', }, { path: '/publications/', url: './pages/publications.php', }, { path: '/portal/', url: './pages/portal.php', }, { path: '/sce/', url: './pages/sce.php', }, { path: '/ypf/', url: './pages/ypf.php', }, // Page Loaders & Router { path: '/page-loader-template7/:user/:userId/:posts/:postId/', templateUrl: './pages/page-loader-template7.html', }, { path: '/page-loader-component/:user/:userId/:posts/:postId/', componentUrl: './pages/page-loader-component.html', }, { path: '/request-and-load/user/:userId/', async: function (routeTo, routeFrom, resolve, reject) { // Router instance var router = this; // App instance var app = router.app; // Show Preloader app.preloader.show(); // User ID from request var userId = routeTo.params.userId; // Simulate Ajax Request setTimeout(function () { // We got user data from request var user = { firstName: 'Vladimir', lastName: 'Kharlampidi', about: 'Hello, i am creator of Framework7! Hope you like it!', links: [ { title: 'Framework7 Website', url: 'http://framework7.io', }, { title: 'Framework7 Forum', url: 'http://forum.framework7.io', }, ] }; // Hide Preloader app.preloader.hide(); // Resolve route to load page resolve( { componentUrl: './pages/request-and-load.html', }, { context: { user: user, } } ); }, 1000); }, }, // Default route (404 page). MUST BE THE LAST { path: '(.*)', url: './pages/404.html', }, ];