mirror of
https://github.com/optim-enterprises-bv/databunker.git
synced 2025-11-03 19:37:48 +00:00
rename organization
This commit is contained in:
@@ -6,7 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
uuid "github.com/hashicorp/go-uuid"
|
uuid "github.com/hashicorp/go-uuid"
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
// Package main - Personal Identifiable Information (PII) database.
|
// Package main - Personal Identifiable Information (PII) database.
|
||||||
// For more info check https://paranoidguy.com
|
// For more info check https://databunker.org/
|
||||||
package main
|
package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
@@ -22,8 +22,8 @@ import (
|
|||||||
"github.com/gobuffalo/packr"
|
"github.com/gobuffalo/packr"
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
"github.com/kelseyhightower/envconfig"
|
"github.com/kelseyhightower/envconfig"
|
||||||
"github.com/paranoidguy/databunker/src/autocontext"
|
"github.com/securitybunker/databunker/src/autocontext"
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"github.com/prometheus/client_golang/prometheus"
|
"github.com/prometheus/client_golang/prometheus"
|
||||||
"github.com/prometheus/client_golang/prometheus/promhttp"
|
"github.com/prometheus/client_golang/prometheus/promhttp"
|
||||||
yaml "gopkg.in/yaml.v2"
|
yaml "gopkg.in/yaml.v2"
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
|
|
||||||
uuid "github.com/hashicorp/go-uuid"
|
uuid "github.com/hashicorp/go-uuid"
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
var (
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ func sendCodeByEmail(code int32, address string, cfg Config) {
|
|||||||
}
|
}
|
||||||
defer c.Close()
|
defer c.Close()
|
||||||
// Set the sender and recipient.
|
// Set the sender and recipient.
|
||||||
c.Mail("bot@paranoidguy.com")
|
c.Mail("bot@securitybunker.io")
|
||||||
c.Rcpt(address)
|
c.Rcpt(address)
|
||||||
// Send the email body.
|
// Send the email body.
|
||||||
wc, err := c.Data()
|
wc, err := c.Data()
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
module github.com/paranoidguy/databunker/src
|
module github.com/securitybunker/databunker/src
|
||||||
|
|
||||||
go 1.13
|
go 1.13
|
||||||
|
|
||||||
replace github.com/paranoidguy/databunker/src/storage => ./storage
|
replace github.com/securitybunker/databunker/src/storage => ./storage
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/evanphx/json-patch v4.5.0+incompatible
|
github.com/evanphx/json-patch v4.5.0+incompatible
|
||||||
@@ -12,8 +12,8 @@ require (
|
|||||||
github.com/julienschmidt/httprouter v1.3.0
|
github.com/julienschmidt/httprouter v1.3.0
|
||||||
github.com/kelseyhightower/envconfig v1.4.0
|
github.com/kelseyhightower/envconfig v1.4.0
|
||||||
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
|
github.com/mattn/go-sqlite3 v2.0.3+incompatible // indirect
|
||||||
github.com/paranoidguy/databunker/src/storage v0.0.0
|
github.com/securitybunker/databunker/src/storage v0.0.0
|
||||||
github.com/paranoidguy/jsonschema v0.2.1-0.20200613191419-2e32bc4eae60
|
github.com/securitybunker/jsonschema v0.2.1-0.20200613191419-2e32bc4eae60
|
||||||
github.com/prometheus/client_golang v1.4.1
|
github.com/prometheus/client_golang v1.4.1
|
||||||
github.com/qri-io/jsonpointer v0.1.1
|
github.com/qri-io/jsonpointer v0.1.1
|
||||||
github.com/schollz/sqlite3dump v1.2.4 // indirect
|
github.com/schollz/sqlite3dump v1.2.4 // indirect
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"log"
|
"log"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
|
||||||
"github.com/paranoidguy/databunker/src/autocontext"
|
"github.com/securitybunker/databunker/src/autocontext"
|
||||||
)
|
)
|
||||||
|
|
||||||
func notifyBadLogin(notifyURL string, mode string, address string) {
|
func notifyBadLogin(notifyURL string, mode string, address string) {
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
uuid "github.com/hashicorp/go-uuid"
|
uuid "github.com/hashicorp/go-uuid"
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
"github.com/paranoidguy/jsonschema"
|
"github.com/securitybunker/jsonschema"
|
||||||
jsonpatch "github.com/evanphx/json-patch"
|
jsonpatch "github.com/evanphx/json-patch"
|
||||||
jptr "github.com/qri-io/jsonpointer"
|
jptr "github.com/qri-io/jsonpointer"
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ import (
|
|||||||
"strings"
|
"strings"
|
||||||
uuid "github.com/hashicorp/go-uuid"
|
uuid "github.com/hashicorp/go-uuid"
|
||||||
"github.com/julienschmidt/httprouter"
|
"github.com/julienschmidt/httprouter"
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/paranoidguy/databunker/src/storage"
|
"github.com/securitybunker/databunker/src/storage"
|
||||||
"go.mongodb.org/mongo-driver/bson"
|
"go.mongodb.org/mongo-driver/bson"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user