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: projectdiscovery/shuffledns
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.5
Choose a base ref
...
head repository: projectdiscovery/shuffledns
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.6
Choose a head ref
  • 6 commits
  • 4 files changed
  • 3 contributors

Commits on Jan 10, 2022

  1. chore(deps): bump golang from 1.17.5-alpine to 1.17.6-alpine

    Bumps golang from 1.17.5-alpine to 1.17.6-alpine.
    
    ---
    updated-dependencies:
    - dependency-name: golang
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Jan 10, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    a2f4c8a View commit details

Commits on Jan 11, 2022

  1. Merge pull request #93 from projectdiscovery/dependabot/docker/dev/go…

    …lang-1.17.6-alpine
    
    chore(deps): bump golang from 1.17.5-alpine to 1.17.6-alpine
    ehsandeep authored Jan 11, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b8031e5 View commit details

Commits on Jan 13, 2022

  1. Copy the full SHA
    4565e22 View commit details

Commits on Jan 15, 2022

  1. Merge pull request #94 from projectdiscovery/issue-92-roundrobin-inde…

    …x-out-of-range
    
    Fixing out of range negative index in roundrobin logic
    ehsandeep authored Jan 15, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    4b66244 View commit details
  2. version update

    ehsandeep committed Jan 15, 2022
    Copy the full SHA
    f6dec23 View commit details
  3. Merge pull request #95 from projectdiscovery/dev

    Bugfix release
    ehsandeep authored Jan 15, 2022

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2c5715d View commit details
Showing with 6 additions and 4 deletions.
  1. +1 −1 Dockerfile
  2. +1 −1 go.mod
  3. +2 −0 go.sum
  4. +2 −2 pkg/runner/banners.go
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.5-alpine as build-env
FROM golang:1.17.6-alpine as build-env
RUN apk --no-cache add git
RUN go install -v github.com/projectdiscovery/shuffledns/cmd/shuffledns@latest

2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ module github.com/projectdiscovery/shuffledns
go 1.17

require (
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8
github.com/miekg/dns v1.1.45
github.com/projectdiscovery/gologger v1.1.4
github.com/remeh/sizedwaitgroup v1.0.0
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353 h1:bT3DmkkW7jy6r4gzAz+VcTuDGf4msFjXonsvzsPxlio=
github.com/Mzack9999/roundrobin v0.0.0-20211019094217-f3f5553da353/go.mod h1:jaPtvFne4154rQDj6lyDdPnvHc9II1X/3uXfJtjGKBQ=
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8 h1:OC2JcvJoumWvMGjJ8bmhvWAo5dobcdDCZ7WmOgiYEw4=
github.com/Mzack9999/roundrobin v0.0.0-20220113175735-77e779fd07d8/go.mod h1:Rb4V/Q2dqsMgUxQ3Oj8lE/1cwowRrDDn5lsMisLiIcQ=
github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
4 changes: 2 additions & 2 deletions pkg/runner/banners.go
Original file line number Diff line number Diff line change
@@ -6,11 +6,11 @@ const banner = `
__ ________ __
___ / / __ __/ _/ _/ /__ ___/ /__ ___
(_-</ _ \/ // / _/ _/ / -_)/ _ / _ \(_-<
/___/_//_/\_,_/_//_//_/\__/ \_,_/_//_/___/ v1.0.5
/___/_//_/\_,_/_//_//_/\__/ \_,_/_//_/___/ v1.0.6
`

// Version is the current version of naabu
const Version = `v1.0.5`
const Version = `v1.0.6`

// showBanner is used to show the banner to the user
func showBanner() {