├── plugins ├── __init__.py ├── google.py ├── sophos.py ├── facebook.py ├── microsoft.py └── example.py ├── templates ├── google │ ├── preview.png │ ├── static │ │ ├── images │ │ │ ├── logo_2x.png │ │ │ ├── avatar_2x.png │ │ │ ├── logo_strip_2x.png │ │ │ └── universal_language_settings-21.png │ │ └── fonts │ │ │ └── google_fonts.css │ └── templates │ │ ├── login_successful.html │ │ └── login.html ├── sophos │ ├── preview.png │ ├── templates │ │ ├── login_successful.html │ │ └── login.html │ └── static │ │ └── css │ │ └── styles.css ├── example │ ├── preview.png │ ├── static │ │ ├── images │ │ │ └── photo.png │ │ └── js │ │ │ └── bootstrap.min.js │ └── templates │ │ ├── En │ │ └── templates │ │ │ ├── login_successful.html │ │ │ └── login.html │ │ └── PtBr │ │ └── templates │ │ ├── login_successful.html │ │ └── login.html ├── facebook │ ├── static │ │ ├── images │ │ │ ├── fb.ico │ │ │ ├── logo.png │ │ │ └── readme.png │ │ └── css │ │ │ └── styles.css │ └── templates │ │ ├── login_successful.html │ │ └── login.html └── microsoft │ ├── static │ ├── img │ │ └── f1f376e17e8ec550cc5a770a1bd3fd2a.jpg │ └── js │ │ └── bootstrap.min.js │ └── templates │ ├── login_successful.html │ └── login.html ├── config.ini ├── LICENSE └── README.md /plugins/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /templates/google/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/google/preview.png -------------------------------------------------------------------------------- /templates/sophos/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/sophos/preview.png -------------------------------------------------------------------------------- /templates/example/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/example/preview.png -------------------------------------------------------------------------------- /templates/example/static/images/photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/example/static/images/photo.png -------------------------------------------------------------------------------- /templates/facebook/static/images/fb.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/facebook/static/images/fb.ico -------------------------------------------------------------------------------- /templates/facebook/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/facebook/static/images/logo.png -------------------------------------------------------------------------------- /templates/facebook/static/images/readme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/facebook/static/images/readme.png -------------------------------------------------------------------------------- /templates/google/static/images/logo_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/google/static/images/logo_2x.png -------------------------------------------------------------------------------- /templates/google/static/images/avatar_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/google/static/images/avatar_2x.png -------------------------------------------------------------------------------- /templates/google/static/images/logo_strip_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/google/static/images/logo_strip_2x.png -------------------------------------------------------------------------------- /templates/google/static/images/universal_language_settings-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/google/static/images/universal_language_settings-21.png -------------------------------------------------------------------------------- /templates/microsoft/static/img/f1f376e17e8ec550cc5a770a1bd3fd2a.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mh4x0f/extra-captiveflask/HEAD/templates/microsoft/static/img/f1f376e17e8ec550cc5a770a1bd3fd2a.jpg -------------------------------------------------------------------------------- /templates/google/templates/login_successful.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Redirecting...
9 | 10 | 11 | -------------------------------------------------------------------------------- /templates/facebook/templates/login_successful.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |Redirecting to facebook
9 | 10 | -------------------------------------------------------------------------------- /templates/sophos/templates/login_successful.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |Signed in successfully
10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /plugins/google.py: -------------------------------------------------------------------------------- 1 | # file => darkgoogle.py 2 | from wifipumpkin3.plugins.captiveflask.plugin import CaptiveTemplatePlugin 3 | import wifipumpkin3.core.utility.constants as C # import plugin class base 4 | 5 | class google(CaptiveTemplatePlugin): 6 | Name = "google" 7 | Version = "1.0" 8 | Description = "Google portal from SET" 9 | Author = "usg-ishimura" 10 | TemplatePath = C.TEMPLATES_FLASK + "templates/google" 11 | StaticPath = C.TEMPLATES_FLASK + "templates/google/static" 12 | Preview = C.TEMPLATES_FLASK + "templates/google/preview.png" 13 | -------------------------------------------------------------------------------- /templates/sophos/templates/login.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 |
97 |
104 |
16 |