mirror of
https://github.com/gophish/gophish
synced 2024-11-15 00:37:14 +00:00
18 lines
294 B
Go
18 lines
294 B
Go
package controllers
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
)
|
|
|
|
func (s *ControllersSuite) TestLoginCSRF() {
|
|
resp, err := http.PostForm(fmt.Sprintf("%s/login", as.URL),
|
|
url.Values{
|
|
"username": {"admin"},
|
|
"password": {"gophish"},
|
|
})
|
|
|
|
s.Equal(resp.StatusCode, 403)
|
|
fmt.Println(err)
|
|
}
|