Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
pm2 /
node_modules /
tx2 /
src /
Delete
Unzip
Name
Size
Permission
Date
Action
utils
[ DIR ]
drwxr-xr-x
2025-04-08 13:05
actions.js
2.17
KB
-rw-r--r--
2025-04-08 13:05
events.js
662
B
-rw-r--r--
2025-04-08 13:05
index.js
1.08
KB
-rw-r--r--
2025-04-08 13:05
issues.js
1.36
KB
-rw-r--r--
2025-04-08 13:05
metrics.js
6.02
KB
-rw-r--r--
2025-04-08 13:05
Save
Rename
const stringify = require('json-stringify-safe') module.exports = { /** * Sends an Event * @memberof TX2 * @param {string} name Name of the event * @param {object} data Metadata attached to the event * @example * tx2.event('event-name', { multi: 'data' }) */ event(name, data) { if (!name) return console.error('[AXM] emit.name is missing') let inflight_obj = {} if (typeof(data) == 'object') inflight_obj = JSON.parse(stringify(data)) else { inflight_obj.data = data || null } inflight_obj.__name = name this.send({ type : 'human:event', data : inflight_obj }) } }