Update bcrypt dependency and code moved to gophish group

This commit is contained in:
William Woodson 2016-01-10 11:03:17 -06:00
parent 19c2027419
commit 3a0fa4f93f
13 changed files with 24 additions and 24 deletions

View file

@ -1,4 +1,4 @@
![gophish logo](https://raw.github.com/jordan-wright/gophish/master/static/images/gophish_purple.png)
![gophish logo](https://raw.github.com/gophish/gophish/master/static/images/gophish_purple.png)
gophish
=======
@ -34,7 +34,7 @@ Documentation is a work in progress. Existing documentation can be found on our
###Issues
Find a bug? Want more features? Find something missing in the documentation? Let us know! Please don't hesitate to [file an issue](https://github.com/jordan-wright/gophish/issues/new) and we'll get right on it.
Find a bug? Want more features? Find something missing in the documentation? Let us know! Please don't hesitate to [file an issue](https://github.com/gophish/gophish/issues/new) and we'll get right on it.
###License
```

View file

@ -9,11 +9,11 @@ import (
"crypto/rand"
"code.google.com/p/go.crypto/bcrypt"
"golang.org/x/crypto/bcrypt"
ctx "github.com/gorilla/context"
"github.com/gorilla/securecookie"
"github.com/gorilla/sessions"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/models"
)
//init registers the necessary models to be saved in the session later

View file

@ -14,10 +14,10 @@ import (
"github.com/gorilla/mux"
"github.com/jinzhu/gorm"
"github.com/jordan-wright/email"
"github.com/jordan-wright/gophish/auth"
"github.com/jordan-wright/gophish/models"
"github.com/jordan-wright/gophish/util"
"github.com/jordan-wright/gophish/worker"
"github.com/gophish/gophish/auth"
"github.com/gophish/gophish/models"
"github.com/gophish/gophish/util"
"github.com/gophish/gophish/worker"
)
// Worker is the worker that processes phishing events and updates campaigns.

View file

@ -10,8 +10,8 @@ import (
"testing"
"github.com/gorilla/handlers"
"github.com/jordan-wright/gophish/config"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/config"
"github.com/gophish/gophish/models"
"github.com/stretchr/testify/suite"
)

View file

@ -11,9 +11,9 @@ import (
ctx "github.com/gorilla/context"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
"github.com/jordan-wright/gophish/auth"
mid "github.com/jordan-wright/gophish/middleware"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/auth"
mid "github.com/gophish/gophish/middleware"
"github.com/gophish/gophish/models"
"github.com/justinas/nosurf"
)

View file

@ -32,9 +32,9 @@ import (
"os"
"github.com/gorilla/handlers"
"github.com/jordan-wright/gophish/config"
"github.com/jordan-wright/gophish/controllers"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/config"
"github.com/gophish/gophish/controllers"
"github.com/gophish/gophish/models"
)
var Logger = log.New(os.Stdout, " ", log.Ldate|log.Ltime|log.Lshortfile)

View file

@ -6,8 +6,8 @@ import (
"net/http"
ctx "github.com/gorilla/context"
"github.com/jordan-wright/gophish/auth"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/auth"
"github.com/gophish/gophish/models"
)
// GetContext wraps each request in a function which fills in the context for a given request.

View file

@ -6,7 +6,7 @@ import (
"os"
"github.com/jinzhu/gorm"
"github.com/jordan-wright/gophish/config"
"github.com/gophish/gophish/config"
_ "github.com/mattn/go-sqlite3" // Blank import needed to import sqlite3
)

View file

@ -3,7 +3,7 @@ package models
import (
"testing"
"github.com/jordan-wright/gophish/config"
"github.com/gophish/gophish/config"
"gopkg.in/check.v1"
)

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@ HOST: http://localhost:3333/api/
# Gophish API
Gophish was built from the ground-up with a JSON API that makes it easy for developers and sysadmins to automate simulated phishing campaigns.
These docs describe how to use the [gophish](https://github.com/jordan-wright/gophish) API.
These docs describe how to use the [gophish](https://github.com/gophish/gophish) API.
::: note
## Authorization

View file

@ -9,7 +9,7 @@ import (
"net/mail"
"github.com/jordan-wright/email"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/models"
)
// ParseMail takes in an HTTP Request and returns an Email object

View file

@ -10,7 +10,7 @@ import (
"text/template"
"github.com/jordan-wright/email"
"github.com/jordan-wright/gophish/models"
"github.com/gophish/gophish/models"
)
// Logger is the logger for the worker