8000 Comparing v1.1.59...v1.1.61 · miekg/dns · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: miekg/dns
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.59
Choose a base ref
...
head repository: miekg/dns
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.1.61
Choose a head ref
  • 9 commits
  • 11 files changed
  • 6 contributors

Commits on Jun 13, 2024

  1. Fix possible out-of-bounds read in endingToTxtSlice (#1557)

    * Update escapedStringOffset to improve readability
    
    This function was, admittedly, a little difficult to follow. This new
    version is slightly more verbose, but, in my opinion, easier to
    understand.
    
    * Fix possible out-of-bounds read in endingToTxtSlice caused by escapedStringOffset
    
    If the input had a trailing backslash (normally the start of an escape
    sequence) with nothing following it, `escapedStringOffset` would return
    the length of the input, plus one (!), as the result index, causing an
    out-of-bounds read and panic in `endingToTxtSlice`.
    
    Consistent with, e.g., commit 2230854,
    I've decided to make this an error since it definitely indicates that
    the string isn't valid.
    
    Credit to OSS-Fuzz -- thank you!
    janik-cloudflare authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    76926c7 View commit details
    Browse the repository at this point in the history
  2. Bump golang.org/x/sys from 0.18.0 to 0.20.0 (#1571)

    Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.18.0 to 0.20.0.
    - [Commits](golang/sys@v0.18.0...v0.20.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/sys
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    d945412 View commit details
    Browse the repository at this point in the history
  3. Bump golang.org/x/net from 0.22.0 to 0.25.0 (#1569)

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.22.0 to 0.25.0.
    - [Commits](golang/net@v0.22.0...v0.25.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/net
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    f89100d View commit details
    Browse the repository at this point in the history
  4. Bump golang.org/x/tools from 0.19.0 to 0.22.0 (#1574)

    Bumps [golang.org/x/tools](https://github.com/golang/tools) from 0.19.0 to 0.22.0.
    - [Release notes](https://github.com/golang/tools/releases)
    - [Commits](golang/tools@v0.19.0...v0.22.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/tools
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    32f0e18 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    2b89f28 View commit details
    Browse the repository at this point in the history
  6. Add a hook to catch invalid messages (#1568)

    * Add a hook to catch invalid messages
    
    Currently there are hooks for reading messages off the wire (DecorateReader),
    checking if they comply with policy (MsgAcceptFunc), and generating responses
    (Handler).  However, there is no hook that notifies the server when a message is
    dropped or rejected due to a syntax error.  That makes it hard to monitor these
    packets without repeating the parsing process.
    
    This PR adds a hook for notifications about invalid packets.
    
    * s/InvalidMsg/MsgInvalid/g
    bemasc authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    eada9c9 View commit details
    Browse the repository at this point in the history
  7. These two too

    Signed-off-by: Miek Gieben <miek@miek.nl>
    miekg committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    c3301c3 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    a1ef7a6 View commit details
    Browse the repository at this point in the history
  9. update list of RFCs

    Signed-off-by: Miek Gieben <miek@miek.nl>
    miekg committed Jun 13, 2024
    Configuration menu
    Copy the full SHA
    e5a40bc View commit details
    Browse the repository at this point in the history
Loading
0