Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8eea84e546 | ||
|
|
acd65e7919 | ||
|
|
4a7b199929 | ||
|
|
2723e75735 | ||
|
|
0365616478 | ||
|
|
befd61eea0 | ||
|
|
daa426d73b | ||
|
|
22df1eae73 | ||
|
|
51c1efbcec | ||
|
|
d091125c15 | ||
|
|
e2c94fcc89 | ||
|
|
16f9a80818 | ||
|
|
66d7a2c42c |
11
README.md
@@ -3,11 +3,15 @@
|
||||
[](https://github.com/rly0nheart/octosuite/actions/workflows/python-publish.yml)
|
||||
[](https://github.com/rly0nheart/octosuite/actions/workflows/codeql.yml)
|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

|
||||

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

|
||||

|
||||
|
||||
|
||||
## Wiki
|
||||
[Refer to the Wiki](https://github.com/rly0nheart/octosuite/wiki) for installation instructions, in addition to all other documentation.
|
||||
@@ -46,8 +50,7 @@
|
||||
|
||||
## Note
|
||||
> 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
|
||||

|
||||
|
||||
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
|
||||
This file holds the program's banner logo and version tag
|
||||
'''
|
||||
version_tag = "2.2.0"
|
||||
version_tag = "2.2.2"
|
||||
name_logo = f"""{white}
|
||||
_______ __ _______ __ __
|
||||
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
|
||||
|
||||
@@ -20,32 +20,6 @@ from octosuite.banner import name_logo, version_tag
|
||||
from octosuite.colors import red, white, green, red_bold, white_bold, green_bold, header_title, reset
|
||||
|
||||
|
||||
global endpoint
|
||||
global path_attrs
|
||||
global path_attr_dict
|
||||
global org_attrs
|
||||
global org_attr_dict
|
||||
global repo_attrs
|
||||
global repo_attr_dict
|
||||
global repo_releases_attrs
|
||||
global repo_releases_attr_dict
|
||||
global profile_attrs
|
||||
global profile_attr_dict
|
||||
global user_attrs
|
||||
global user_attr_dict
|
||||
global topic_attrs
|
||||
global topic_attr_dict
|
||||
global gists_attrs
|
||||
global gists_attr_dict
|
||||
global issue_attrs
|
||||
global issue_attr_dict
|
||||
global repo_issues_attrs
|
||||
global repo_issues_attr_dict
|
||||
global user_orgs_attrs
|
||||
global user_orgs_attr_dict
|
||||
global author_dict
|
||||
|
||||
|
||||
# API endpoint
|
||||
endpoint = 'https://api.github.com'
|
||||
# Path attribute
|
||||
@@ -940,8 +914,6 @@ def versionInfo():
|
||||
'''
|
||||
xprint(f"""
|
||||
{white_bold}Whats new in v{version_tag}?{reset}
|
||||
[ {green}improved{reset} ] added 'csv' command with 3 subcommands (view, read, delete)
|
||||
[ {green}improved{reset} ] using the rich library for coloring and tables
|
||||
[ {green}improved{reset} ] logs and commands will be displayed in a table
|
||||
[ {green}fixed{reset} ] minor bug fixes
|
||||
[ {green}improvement{reset} ] The Octosuite GUI (.exe/.app) is now available on GitHub
|
||||
|
||||
""")
|
||||
|
||||