id: minecraft-enum info: name: Minecraft - enum author: pussycat0x severity: info description: | Minecraft server for some basic information about the host.The information that is queried is the Description, Maximum Number of Players, number of Online Players, Version number, and Protocol Number reference: - https://github.com/sjhilt/Nmap-NSEs/blob/master/minecraft-info.nse metadata: max-request: 1 shodan-query: product:"Minecraft" verified: true tags: js,network,minecraft,enum javascript: - code: | let data = "fe01" let c = require("nuclei/net"); let conn = c.Open('tcp', `${Host}:${Port}`); conn.SendHex(data); let response = conn.RecvString(); const version = response.slice(16, 30).replace(/(\d+)(\d{1})(\d+)/, "$1.$2.$3"); const description = response.slice(30, -4); const onlinePlayers = response.slice(-1); const maxPlayers = response.slice(-3); Export("Version: ", version , " Description:", description ," Online Players:", onlinePlayers, " Maximum Players:", maxPlayers) args: Host: "{{Host}}" Port: 25565 matchers: - type: dsl dsl: - "success == true" - type: word words: - "HTTP/1.1" negative: true extractors: - type: dsl dsl: - response # digest: 490a004630440220389a4d037f4807679f2ae67a85add1c5efd5ca8525016010c3c3553b6fa59f7e02201f1ba4c1bdc64bb94f2c44f8b7b147a7a2360d753e8e2af17553268c8537ac3c:922c64590222798bb761d5b6d8e72950