Skip to content

Commit

Permalink
feat: Add a little tool that runs multiple protocols for an ip
Browse files Browse the repository at this point in the history
  • Loading branch information
CosminPerRam committed Nov 5, 2023
1 parent da464a5 commit c264138
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions tools/attempt_protocols.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import Minimist from 'minimist'
import GameDig from './../lib/index.js'

const argv = Minimist(process.argv.slice(2), {})

const options = {}
if (argv._.length >= 1) {
const target = argv._[0]
const split = target.split(':')
options.host = split[0]
if (split.length >= 2) {
options.port = split[1]
}
}

const gamedig = new GameDig(options)

const protocols = ['valve', 'gamespy1', 'gamespy2', 'gamespy3', 'goldsrc', 'minecraft', 'quake1', 'quake2', 'quake3', 'unreal2', 'valve']

protocols.forEach(protocol => {
gamedig.query({
...options,
debug: true,
type: `protocol-${protocol}`
})
.then(data => {
console.log(data)
process.exit()
})
.catch(error => {
console.log(`Error on '${protocol}': ${error}`)
})
})

0 comments on commit c264138

Please sign in to comment.