-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
006c3a7
commit 6778851
Showing
11 changed files
with
111 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
body { | ||
background-color: #0f0f0f | ||
} | ||
|
||
#page-heading { | ||
color: white; | ||
font-family: sans-serif; | ||
text-align: center; | ||
|
||
} | ||
|
||
h1, h2, h3, h4, h5 { | ||
color: white; | ||
font-family: sans-serif; | ||
text-align: center; | ||
|
||
} | ||
|
||
button { | ||
background-color: #2f2f2f; | ||
border: 5px solid #2f2f2f; | ||
border-radius: 5px; | ||
color:white; | ||
|
||
} | ||
|
||
button:hover { | ||
background-color: #3f3f3f; | ||
border: 5px solid #3f3f3f; | ||
} | ||
|
||
p { | ||
text-align: center; | ||
color: grey; | ||
font-family: Arial; | ||
font-size: 20px; | ||
} | ||
|
||
.center { | ||
height: 100%; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin: auto; | ||
} | ||
|
||
.button-container { | ||
text-align: center; | ||
margin: 5px; | ||
font-size: 20px; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,49 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
|
||
<head> | ||
<h1>Proximoth Homepage</h1> | ||
<link rel="stylesheet" href="index.css"> | ||
</head> | ||
|
||
<body> | ||
<p>This site will be used in the future.</p> | ||
<img style="width:100%" class="center" src="site_banner.png"> | ||
<h1 id="page-heading">Proximoth & Control Frame Attack</h1> | ||
<p>Proximoth is a command-line tool to detect Wi-Fi devices in proximity with Control Frame Attack.<br> | ||
</p> | ||
|
||
<h1>Learn More</h1> | ||
<div class="center"> | ||
<button class="button-container" type="button" onclick="redirect_github()">GitHub</button> | ||
<button class="button-container" type="button" onclick="redirect_gitlab()">GitLab</button> | ||
<button class="button-container" type="center" onclick="redirect_wordpress()">WordPress</button> | ||
</div> | ||
|
||
|
||
<h1>Images</h1> | ||
|
||
<div> | ||
<img class="center" style="border-radius: 10px; border: solid rgb(50,50,50);" src="images/i1.png"> | ||
<br> | ||
<img class="center" style="border-radius: 10px; border: solid rgb(50,50,50);" src="images/i2.png"> | ||
</div> | ||
<br> | ||
<div class="center"> | ||
<img style="margin: 5px; margin-bottom: 10px; border-radius: 10px; border: solid rgb(50,50,50);" src="images/i3.png"> | ||
<br> | ||
<img style="margin: 5px; margin-bottom: 10px; border-radius: 10px; border: solid rgb(50,50,50);" src="images/i4.png"> | ||
</div> | ||
|
||
<div class="center"> | ||
<img style="border-radius: 10px; border: solid rgb(50,50,50);" src="images/i5.png"> | ||
</div> | ||
|
||
<br> | ||
<hr> | ||
|
||
<div class="center"> | ||
<img style="width: 30%;" src="proximoth_logo.png"> | ||
</div> | ||
|
||
|
||
</body> | ||
</html> | ||
|
||
<script src="index.js"></script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
|
||
function redirect_github(){ | ||
window.location.href = 'https://github.com/TechnicalUserX/proximoth' | ||
} | ||
|
||
function redirect_gitlab(){ | ||
window.location.href = 'https://gitlab.com/TechnicalUserX/proximoth' | ||
} | ||
|
||
function redirect_wordpress(){ | ||
window.location.href = 'https://technicaluserx.wordpress.com/2022/07/22/proximoth/' | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.