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 /
framework7 /
modules /
Delete
Unzip
Name
Size
Permission
Date
Action
clicks
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
device
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
history
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
request
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
resize
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
router
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
storage
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
support
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
touch
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
utils
[ DIR ]
drwxr-sr-x
2018-01-23 10:36
demo-module.js
828
B
-rw-r--r--
2018-01-23 10:36
Save
Rename
export default { // Module Name name: 'demo-module', install(params) { const Class = this; console.log(Class, params); }, create(instance) { console.log('init', instance); }, // App Params related to module params: { a: 1, b: 2, c: 3, }, // Extend Prototype proto: { demo() { return 'demo-module-proto-method'; }, demoStatic: 'demo-module-proto-static', }, // Extend Class, e.g. Class.myMethod static: { demo() { return 'demo-module-class-method'; }, demoStatic: 'demo-module-class-static', }, // Initialized instance Props & Methods instance: { demoProp: true, demoMethod() { return 'demo-method'; }, }, // Add Event Listeners on: { demoEvent(a, b) { console.log('demo-event', a, b); }, }, };