Skip to content

Commit

Permalink
updated dependancies & push 3.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sudosammy committed Jun 10, 2023
1 parent 7491d2b commit ae5ebcd
Show file tree
Hide file tree
Showing 8 changed files with 45 additions and 701 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,6 +1,6 @@
# knary - A simple HTTP(S) and DNS Canary

[![Build Status](https://circleci.com/gh/sudosammy/knary/tree/master.svg?style=svg)](https://circleci.com/gh/sudosammy/knary/tree/master) [![Go Report Card](https://goreportcard.com/badge/github.com/sudosammy/knary)](https://goreportcard.com/report/github.com/sudosammy/knary) [![Coverage Status](https://coveralls.io/repos/github/sudosammy/knary/badge.svg?branch=master)](https://coveralls.io/github/sudosammy/knary?branch=master)
[![Build Status](https://circleci.com/gh/sudosammy/knary/tree/master.svg?style=svg)](https://circleci.com/gh/sudosammy/knary/tree/master) [![Go Report Card](https://goreportcard.com/badge/github.com/sudosammy/knary/v3)](https://goreportcard.com/report/github.com/sudosammy/knary/v3) [![Coverage Status](https://coveralls.io/repos/github/sudosammy/knary/badge.svg?branch=master)](https://coveralls.io/github/sudosammy/knary?branch=master)

>Like "Canary" but more hipster, which means better 😎😎😎
Expand All @@ -20,7 +20,7 @@ Defenders also use canaries as tripwires that can alert them of an attacker with

__Prerequisite:__ You need Go >=1.18 to build knary.
```
go install github.com/sudosammy/knary@latest
go install github.com/sudosammy/knary/v3@latest
```

See [here](#inbound-firewall-requirements) for guidance on which ports to open for knary.
Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
3.4.5
3.4.6
20 changes: 10 additions & 10 deletions go.mod
@@ -1,25 +1,25 @@
module github.com/sudosammy/knary
module github.com/sudosammy/knary/v3

go 1.18

require (
github.com/blang/semver/v4 v4.0.0
github.com/fatih/color v1.13.0
github.com/go-acme/lego/v4 v4.5.3
github.com/joho/godotenv v1.4.0
github.com/miekg/dns v1.1.45
github.com/fatih/color v1.15.0
github.com/go-acme/lego/v4 v4.12.1
github.com/joho/godotenv v1.5.1
github.com/miekg/dns v1.1.54
github.com/radovskyb/watcher v1.0.7
golang.org/x/net v0.10.0
)

require (
github.com/cenkalti/backoff/v4 v4.1.2 // indirect
github.com/mattn/go-colorable v0.1.12 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
golang.org/x/crypto v0.1.0 // indirect
github.com/cenkalti/backoff/v4 v4.2.1 // indirect
github.com/go-jose/go-jose/v3 v3.0.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/mod v0.10.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/tools v0.9.3 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
)
710 changes: 27 additions & 683 deletions go.sum

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion libknary/certbot.go
Expand Up @@ -13,7 +13,7 @@ import (
"github.com/go-acme/lego/v4/certificate"
"github.com/go-acme/lego/v4/challenge/dns01"
"github.com/go-acme/lego/v4/lego"
cmd "github.com/sudosammy/knary/libknary/lego"
cmd "github.com/sudosammy/knary/v3/libknary/lego"
)

// Config is used to configure the creation of the DNSProvider.
Expand Down
2 changes: 1 addition & 1 deletion libknary/certutil.go
Expand Up @@ -11,7 +11,7 @@ import (
"github.com/go-acme/lego/v4/certcrypto"
"github.com/go-acme/lego/v4/lego"
"github.com/go-acme/lego/v4/registration"
cmd "github.com/sudosammy/knary/libknary/lego"
cmd "github.com/sudosammy/knary/v3/libknary/lego"
)

// create domain list for certificates
Expand Down
2 changes: 1 addition & 1 deletion libknary/fsnotify.go
Expand Up @@ -8,7 +8,7 @@ import (
"time"

"github.com/radovskyb/watcher"
cmd "github.com/sudosammy/knary/libknary/lego"
cmd "github.com/sudosammy/knary/v3/libknary/lego"
)

func TLSmonitor(restart chan bool) {
Expand Down
4 changes: 2 additions & 2 deletions main.go
Expand Up @@ -11,11 +11,11 @@ import (
"os"
"sync"

"github.com/sudosammy/knary/libknary"
"github.com/sudosammy/knary/v3/libknary"
)

const (
VERSION = "3.4.5"
VERSION = "3.4.6"
GITHUB = "https://github.com/sudosammy/knary"
GITHUBVERSION = "https://raw.githubusercontent.com/sudosammy/knary/master/VERSION"
)
Expand Down

0 comments on commit ae5ebcd

Please sign in to comment.