Skip to content

Releases: rapid7/recog

Improved MDNS fingerprinting

12 Dec 16:53
Compare
Choose a tag to compare
  • Fingerprinting of Apple Mac OS X, iPads and various other hardware using MDNS has improved to cover more recent releases
  • Unnecessary usage of flags was reduced

v2.1.31 Improved CPEs

01 Nov 20:51
Compare
Choose a tag to compare
  • This release updates CPEs for SSH, telnet and UPnP.

v2.1.30 Improved telnet fingerprinting

30 Oct 17:19
Compare
Choose a tag to compare
  • We have improved recog's telnet coverage by adding various fingerprints that were previously missing. Most notably the addition of Red Hat, Fedora, AIX and SuSE telnet coverage, as well as adding to the already Cisco coverage that was previously being used. (#188)

v2.1.29

17 Oct 15:14
Compare
Choose a tag to compare
  • Adds fingerprinting for libssh

v2.1.28

16 Oct 16:16
Compare
Choose a tag to compare
  • Improve NNTP fingerprint coverage (kerio, ccproxy, generic, lyris)
  • Improve Ubuntu UPnP fingerprints
  • Improve HTTP Set-Cookie fingerprints (Cisco ASA, Array networks)
  • Improve SIP coverage (Cisco, Linksys, ZTE, Media5, Tilgin)
  • Add recog "product" support for interpolating values used in fingerprints
  • Enforce <= 20 examples per fingerprint

v2.1.27

15 Oct 23:59
Compare
Choose a tag to compare
Version 2.1.27

v.2.1.22 - 2018.09.04

13 Sep 11:55
ecbdf7c
Compare
Choose a tag to compare
  • New fingerprint coverage: apache_modules.xml #174

    • Adds support for performing version detection of Apache modules in HTTP Server headers.
    • Client software calling Recog is expected to split an Apache banner based on spaces and toss the individual values at Recog.
    • This is a first pass, more work will be required to fully flesh this out.
  • Improved coverage: http_servers.xml #175

    • Leveraging Project Sonar data from 2018.08.13 has resulted in significant (multiple millions) improvement of fingerprinting against that data set.
    • hw.* values added where possible
  • Minor FTP tweaks

v.2.1.22 - 2018.08.29

13 Sep 13:15
Compare
Choose a tag to compare
  • New capability: CPE 2.3 data #172

    • Added preliminary support for returning CPE 2.3 information via a new fingerprint param named service.cpe23 which can be literal strings or interpolated values.

      Example:
      <param pos="0" name="service.cpe23" value="cpe:/a:vmware:zimbra_desktop:1"/>
      or
      <param pos="0" name="service.cpe23" value="cpe:/a:vmware:zimbra_desktop:{service.version}"/>

    • Software, other than Ruby Recog, that leverage the XML directly will need to support interpolating the values in order to fully utilize this capability.

    • Future changes to enhance this capability and make creating interpolated results easier are expected in the near future.

    • See PR #172 for more details

  • Misc fingerprint updates and changes, some of which were to support CPE changes.

    • Changed the use of 'F5 Labs' to 'F5' in multiple files #171
    • Change certain Cisco PIX fingerprints from 'service.' to 'os.' #170

v.2.1.20 - 2018.06.27

13 Sep 13:18
Compare
Choose a tag to compare
  • Compatibility: Adjustments to the regex of multiple fingerprints to remove negative lookaheads and other contructs that Golang doesn't support. #162

v.2.1.19 - 2018.04.16

13 Sep 13:25
986b4c3
Compare
Choose a tag to compare
  • Improved coverage: xml/smtp_banners.xml #160
    • Note: Due to effort to cleanup description lines (remove duplicates, remove multilines, provide context, standardize format) almost every value for <description> has changed. This will impact the value returned as matched with tools such as DAP.
    • Project Sonar SMTP survey data was used to enhance and improve the coverage. Full details and metrics can be found in #160
    • Improved the accuracy and/or flexibility of multiple fingerprints.
    • Changed ALL instances of flags="REG_ICASE" to an inline flag (?i:) in order to make the regex compatible with more languages.
    • Implemented fingerprint examples for those fingerprints where examples could be found.
    • This sometimes resulted in removing fingerprints that were actually duplicates or trivially different.
    • Reworked description values so as to remove examples and ensure that this field is unique within the file as the value of description serves as an identifier when processing fingerprints. Multiline descriptions were reduced to single line where possible. Many descriptions were modified.
    • Fixed multiple instances where captures where under/over capturing. For example, some fingerprints would have captured the examples but the examples were missing leading or ending spaces. Other fingerprints were over-broad in what they would capture leading to fall positives or misidentification.
    • Fixed multiple instances where the portion of the version banner that was captured was different between two products in the same family.
    • Removed various real and example hostnames from examples and standardized on 'foo.bar'
    • Corrected system.time.format so as to match timestamp provided by service
    • Reworked date regex for multiple matches to remove inadvertent requirement for two digit day value when the banner included a single digit day.