Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8eea84e546 | ||
|
|
acd65e7919 | ||
|
|
4a7b199929 | ||
|
|
2723e75735 | ||
|
|
0365616478 | ||
|
|
befd61eea0 | ||
|
|
daa426d73b | ||
|
|
22df1eae73 | ||
|
|
51c1efbcec |
@@ -9,6 +9,9 @@
|
|||||||

|

|
||||||
|
|
||||||
> *Simply gather OSINT on Github users & organizations like a God🔥*
|
> *Simply gather OSINT on Github users & organizations like a God🔥*
|
||||||
|

|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
## Wiki
|
## Wiki
|
||||||
[Refer to the Wiki](https://github.com/rly0nheart/octosuite/wiki) for installation instructions, in addition to all other documentation.
|
[Refer to the Wiki](https://github.com/rly0nheart/octosuite/wiki) for installation instructions, in addition to all other documentation.
|
||||||
@@ -47,8 +50,7 @@
|
|||||||
|
|
||||||
## Note
|
## Note
|
||||||
> octosuite automatically logs network and minor user activity of each session. The logs are saved by date and time in the .logs folder
|
> octosuite automatically logs network and minor user activity of each session. The logs are saved by date and time in the .logs folder
|
||||||
>> Although octosuite was developed to work on Mac, Windows, or any Linux Distribution, it has only been tested on Termux and Kali Linux
|
>> If you believe octosuite can be better, feel free to open a pull request with your improvements✌🏾🙂
|
||||||
>>> If you believe octosuite can be better, feel free to open a pull request with your improvements✌🏾🙂
|
|
||||||
|
|
||||||
## License
|
## License
|
||||||

|

|
||||||
|
|||||||
BIN
images/octosuite_app.png
Normal file
|
After Width: | Height: | Size: 1.2 MiB |
BIN
images/octosuite_app1.png
Normal file
|
After Width: | Height: | Size: 1.0 MiB |
BIN
images/octosuite_exe.png
Normal file
|
After Width: | Height: | Size: 1.1 MiB |
BIN
images/octosuite_gui_exe (1).png
Normal file
|
After Width: | Height: | Size: 248 KiB |
BIN
images/octosuite_gui_exe (2).png
Normal file
|
After Width: | Height: | Size: 264 KiB |
BIN
images/octosuite_gui_exe (3).png
Normal file
|
After Width: | Height: | Size: 257 KiB |
BIN
images/octosuite_gui_exe (4).png
Normal file
|
After Width: | Height: | Size: 234 KiB |
BIN
images/octosuite_gui_exe.png
Normal file
|
After Width: | Height: | Size: 207 KiB |
@@ -5,7 +5,7 @@ from octosuite.colors import red, white, green, reset
|
|||||||
banner.py
|
banner.py
|
||||||
This file holds the program's banner logo and version tag
|
This file holds the program's banner logo and version tag
|
||||||
'''
|
'''
|
||||||
version_tag = "2.2.1"
|
version_tag = "2.2.2"
|
||||||
name_logo = f"""{white}
|
name_logo = f"""{white}
|
||||||
_______ __ _______ __ __
|
_______ __ _______ __ __
|
||||||
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
|
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
|
||||||
|
|||||||
@@ -914,5 +914,6 @@ def versionInfo():
|
|||||||
'''
|
'''
|
||||||
xprint(f"""
|
xprint(f"""
|
||||||
{white_bold}Whats new in v{version_tag}?{reset}
|
{white_bold}Whats new in v{version_tag}?{reset}
|
||||||
[ {green}fixed{reset} ] minor mistakes in code
|
[ {green}improvement{reset} ] The Octosuite GUI (.exe/.app) is now available on GitHub
|
||||||
|
|
||||||
""")
|
""")
|
||||||
|
|||||||
2
setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as file:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="octosuite",
|
name="octosuite",
|
||||||
version="2.2.1",
|
version="2.2.2",
|
||||||
author="Richard Mwewa",
|
author="Richard Mwewa",
|
||||||
author_email="richardmwewa@duck.com",
|
author_email="richardmwewa@duck.com",
|
||||||
packages=["octosuite"],
|
packages=["octosuite"],
|
||||||
|
|||||||