Skip to content

Instantly share code, notes, and snippets.

@TomSellers
Created January 27, 2015 13:27
Show Gist options
  • Save TomSellers/d21ce86b9cb4a23a19ca to your computer and use it in GitHub Desktop.
Save TomSellers/d21ce86b9cb4a23a19ca to your computer and use it in GitHub Desktop.
Test_XML
<?xml version="1.0"?>
<!--
References:
Error codes: http://dev.mysql.com/doc/refman/5.5/en/error-messages-server.html
-->
<fingerprints>
<fingerprint pattern="^.{1,4}\\x00\\x00\\x00(?:\n|\t|\\x0a|\\x09)([-~.+\w\s:']+)\\x00">
<example>\x1d\x00\x00\x00\x0a3.21.32a-log\x00\x0c\x00\x00\x00FUYB{gs+\x00\x0c\x00</example>
<description>Oracle MySQL</description>
<param pos="0" name="service.vendor" value="Oracle"/>
<param pos="0" name="service.family" value="MySQL"/>
<param pos="0" name="service.product" value="MySQL"/>
<param pos="1" name="service.version"/>
</fingerprint>
<fingerprint pattern="^.{1,5}\\x00\\x00\\x00\\xffj\\x04">
<!--Error code j\x04 = 1130 = Host '%s' is not allowed to connect to this MySQL server -->
<example>G\x00\x00\x00\xffj\x04Host '10.10.10.10' is not allowed to connect to this MySQL server</example>
<description>Oracle MySQL Error: Host not allowed to connect</description>
<param pos="0" name="service.vendor" value="Oracle"/>
<param pos="0" name="service.family" value="MySQL"/>
<param pos="0" name="service.product" value="MySQL"/>
<param pos="0" name="service.status" value="Error: Host not allowed to connect"/>
</fingerprint>
<fingerprint pattern="^.{1,5}\\x00\\x00\\x00\\xffi\\x04">
<!--Error code i\x04 = 1129 = Host '%s' is blocked because of many connection errors; unblock with 'mysqladmin flush-hosts' -->
<example>xPermission denied: Error 0</example>
<description>Oracle MySQL Error: Blocked, too many errors from this host</description>
<param pos="0" name="service.vendor" value="Oracle"/>
<param pos="0" name="service.family" value="MySQL"/>
<param pos="0" name="service.product" value="MySQL"/>
<param pos="0" name="service.status" value="Error: Blocked, too many errors from this host"/>
</fingerprint>
<fingerprint pattern="^.{1,5}\\x00\\x00\\x00\\xff\\x12\\x04">
<!--Error code \x12\x04 = 1042 = Can't get hostname for your address -->
<example>xPermission denied: Error 0</example>
<description>Oracle MySQL Error: Can't get hostname for your address</description>
<param pos="0" name="service.vendor" value="Oracle"/>
<param pos="0" name="service.family" value="MySQL"/>
<param pos="0" name="service.product" value="MySQL"/>
<param pos="0" name="service.status" value="Error: Can't get hostname for your address"/>
</fingerprint>
<fingerprint pattern="^.{1,5}\\x00\\x00\\x00\\xff\\x10\\x04">
<!--Error code \x10\x04 = 1040 = Too many connections -->
<example>xPermission denied: Error 0</example>
<description>Oracle MySQL Error: Too many connections</description>
<param pos="0" name="service.vendor" value="Oracle"/>
<param pos="0" name="service.family" value="MySQL"/>
<param pos="0" name="service.product" value="MySQL"/>
<param pos="0" name="service.status" value="Error: Too many connections"/>
</fingerprint>
</fingerprints>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment