-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathgoldphish.py
38 lines (26 loc) · 893 Bytes
/
goldphish.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Goldphish phishing server.
(c) 2018 Nico Duitsmann.
Licensed under GNU GPLv3.
Usage:
goldphish <website> [options]
Arguments:
website The website to clone to.
Options:
-h --help Show this help and exit.
-v --version Show version and exit.
-a <host> Http server address.
-p <port> Http server port number.
--ngrok Use ngrok for local server tunneling.
--config-restore Restore config.ini to defaults.
--no-banner Dont print banner art.
By using goldphish u agree to the terms of use.
For more info read DISCLAIMER in the installation dir.
"""
import sys
if sys.version_info[0] < 3: sys.exit('Python2 is not supported in this version. Exiting.')
from goldphish.cli import Cli
if __name__ == '__main__':
Cli(__doc__)