Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.133.128.223
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
multicast-dns /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
59
B
-rw-r--r--
2018-01-27 10:17
LICENSE
1.05
KB
-rw-r--r--
2017-11-19 15:49
README.md
4.13
KB
-rw-r--r--
2017-11-19 15:49
cli.js
1.34
KB
-rwxr-xr-x
2018-01-27 10:15
example.js
788
B
-rw-r--r--
2017-11-19 16:20
index.js
4.73
KB
-rw-r--r--
2018-01-27 10:14
package.json
1.69
KB
-rw-r--r--
2021-02-04 21:24
test.js
6.68
KB
-rw-r--r--
2018-01-27 10:17
Save
Rename
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' }] })