Skip to content

Commit

Permalink
2.3.2 release
Browse files Browse the repository at this point in the history
2.3.2
- ACMEv2 support added to comply with LetsEncrypt requirements.
- Fixed session cookie output to support EditThisCookie on the latest Chrome version.
- Increased timeouts for proxying HTTP packets to 45 seconds.
- Added support for Go modules.
  • Loading branch information
kgretzky committed Feb 2, 2021
1 parent 86cecf8 commit 908dc30
Show file tree
Hide file tree
Showing 767 changed files with 152,996 additions and 30,461 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.3.2
- ACMEv2 support added to comply with LetsEncrypt requirements.
- Fixed session cookie output to support EditThisCookie on the latest Chrome version.
- Increased timeouts for proxying HTTP packets to 45 seconds.
- Added support for Go modules.

2.3.1
- Redirection is now triggered only for responses with `text/html` content-type header.

Expand Down
11 changes: 0 additions & 11 deletions CHANGELOG.md

This file was deleted.

245 changes: 0 additions & 245 deletions Gopkg.lock

This file was deleted.

66 changes: 0 additions & 66 deletions Gopkg.toml

This file was deleted.

10 changes: 2 additions & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,10 @@ TARGET=evilginx
PACKAGES=core database log parser

.PHONY: all
all: deps build

deps: godep
@dep ensure
all: build

build:
@go build -o ./bin/$(TARGET) main.go
@go build -o ./bin/$(TARGET) -mod=vendor

clean:
@go clean
Expand All @@ -18,6 +15,3 @@ install:
@mkdir -p /usr/share/evilginx/phishlets
@cp ./phishlets/* /usr/share/evilginx/phishlets/
@cp ./bin/$(TARGET) /usr/local/bin

godep:
@go get -u github.com/golang/dep/...
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ phishlets enable linkedin

Your phishing site is now live. Think of the URL, you want the victim to be redirected to on successful login and get the phishing URL like this (victim will be redirected to `https://www.google.com`):
```
phishlets get-url linkedin https://www.google.com
lures create linkedin
lures edit redirect-url 0 https://www.google.com
lures get-url 0
```

Running phishlets will only respond to tokenized links, so any scanners who scan your main domain will be redirected to URL specified as `redirect_url` under `config`. If you want to hide your phishlet and make it not respond even to valid tokenized phishing URLs, use `phishlet hide/unhide <phishlet>` command.
Expand Down
2 changes: 1 addition & 1 deletion core/banner.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

const (
VERSION = "2.3.1"
VERSION = "2.3.2"
)

func putAsciiArt(s string) {
Expand Down
Loading

0 comments on commit 908dc30

Please sign in to comment.