diff --git a/dist/octosuite-3.0.0-py3-none-any.whl b/dist/octosuite-3.0.0-py3-none-any.whl new file mode 100644 index 0000000..d1776b2 Binary files /dev/null and b/dist/octosuite-3.0.0-py3-none-any.whl differ diff --git a/dist/octosuite-3.0.0.tar.gz b/dist/octosuite-3.0.0.tar.gz new file mode 100644 index 0000000..05ddb25 Binary files /dev/null and b/dist/octosuite-3.0.0.tar.gz differ diff --git a/octosuite.egg-info/PKG-INFO b/octosuite.egg-info/PKG-INFO new file mode 100644 index 0000000..ce70b7f --- /dev/null +++ b/octosuite.egg-info/PKG-INFO @@ -0,0 +1,83 @@ +Metadata-Version: 2.1 +Name: octosuite +Version: 3.0.0 +Summary: Advanced Github OSINT Framework +Home-page: https://github.com/bellingcat/octosuite +Author: Richard Mwewa +Author-email: rly0nheart@duck.com +License: GNU General Public License v3 (GPLv3) +Classifier: Development Status :: 5 - Production/Stable +Classifier: Intended Audience :: Information Technology +Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3) +Classifier: Operating System :: OS Independent +Classifier: Natural Language :: English +Classifier: Programming Language :: Python :: 3 +Description-Content-Type: text/markdown +License-File: LICENSE + +![logo](https://user-images.githubusercontent.com/74001397/175805580-fffc96d4-e0ef-48bb-a55c-80b2da3e714d.png) + +A framework fro gathering osint on GitHub users, repositories and organizations + +[![Upload Python Package](https://github.com/bellingcat/octosuite/actions/workflows/python-publish.yml/badge.svg)](https://github.com/bellingcat/octosuite/actions/workflows/python-publish.yml) +[![CodeQL](https://github.com/bellingcat/octosuite/actions/workflows/codeql.yml/badge.svg)](https://github.com/bellingcat/octosuite/actions/workflows/codeql.yml) +![GitHub](https://img.shields.io/github/license/bellingcat/octosuite?style=flat) +![PyPI](https://img.shields.io/pypi/v/octosuite?style=flat&logo=pypi) +![PyPI - Downloads](https://img.shields.io/pypi/dw/octosuite?style=flat&logo=pypi) +![PyPI - Status](https://img.shields.io/pypi/status/octosuite?style=flat&logo=pypi) +![GitHub repo size](https://img.shields.io/github/repo-size/bellingcat/octosuite?style=flat&logo=github) + + +![octosuite_gui_exe (2)](https://user-images.githubusercontent.com/74001397/186889610-4530ee26-d3c6-46fc-8c92-8709f89617fd.png "Octosuite' about window") + +![octosuite_gui_exe (4)](https://user-images.githubusercontent.com/74001397/186889897-c1c17fac-fddc-4967-9084-39cfe2d1307f.png "Octosuite user profile window") + + +# Wiki +[Refer to the Wiki](https://github.com/bellingcat/octosuite/wiki) for installation instructions, in addition to all other documentation. + +# Features +- [x] Fetches an organization's profile information +- [x] Fetches an oganization's events +- [x] Returns an organization's repositories +- [x] Returns an organization's public members +- [x] Fetches a repository's information +- [x] Returns a repository's contributors +- [x] Returns a repository's languages +- [x] Fetches a repository's stargazers +- [x] Fetches a repository's forks +- [x] Fetches a repository's releases +- [x] Returns a list of files in a specified path of a repository +- [x] Fetches a user's profile information +- [x] Returns a user's gists +- [x] Returns organizations that a user owns/belongs to +- [x] Fetches a user's events +- [x] Fetches a list of users followed by the target +- [x] Fetches a user's followers +- [x] Checks if user A follows user B +- [x] Checks if user is a public member of an organizations +- [x] Returns a user's subscriptions +- [x] Gets a user's subscriptions +- [x] Gets a user's events +- [x] Searches users +- [x] Searches repositories +- [x] Searches topics +- [x] Searches issues +- [x] Searches commits +- [x] Automatically logs network activity (.logs folder) +- [x] User can view, read and delete logs +- [x] ...And more + +## Note +> Octosuite automatically logs network and user activity of each session, the logs are saved by date and time in the .logs folder + + +# License +![license](https://user-images.githubusercontent.com/74001397/137917929-2f2cdb0c-4d1d-4e4b-9f0d-e01589e027b5.png) + +# Donations +If you like Octosuite and would like to show support, you can Buy A Coffee for the developer using the button below + +Buy Me A Coffee + +Your support will be much appreciated😊 diff --git a/octosuite.egg-info/SOURCES.txt b/octosuite.egg-info/SOURCES.txt new file mode 100644 index 0000000..d1d90bf --- /dev/null +++ b/octosuite.egg-info/SOURCES.txt @@ -0,0 +1,18 @@ +LICENSE +README.md +setup.py +octosuite/__init__.py +octosuite/banners.py +octosuite/colors.py +octosuite/csv_loggers.py +octosuite/helper.py +octosuite/log_roller.py +octosuite/main.py +octosuite/message_prefixes.py +octosuite/octosuite.py +octosuite.egg-info/PKG-INFO +octosuite.egg-info/SOURCES.txt +octosuite.egg-info/dependency_links.txt +octosuite.egg-info/entry_points.txt +octosuite.egg-info/requires.txt +octosuite.egg-info/top_level.txt \ No newline at end of file diff --git a/octosuite.egg-info/dependency_links.txt b/octosuite.egg-info/dependency_links.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/octosuite.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/octosuite.egg-info/requires.txt b/octosuite.egg-info/requires.txt new file mode 100644 index 0000000..d4d1a3e --- /dev/null +++ b/octosuite.egg-info/requires.txt @@ -0,0 +1,3 @@ +requests +rich +psutil diff --git a/octosuite.egg-info/top_level.txt b/octosuite.egg-info/top_level.txt new file mode 100644 index 0000000..194678a --- /dev/null +++ b/octosuite.egg-info/top_level.txt @@ -0,0 +1 @@ +octosuite diff --git a/octosuite/colors.py b/octosuite/colors.py index 487ff93..1ddb230 100644 --- a/octosuite/colors.py +++ b/octosuite/colors.py @@ -2,6 +2,7 @@ import psutil import platform from rich.tree import Tree from datetime import datetime +from rich import print as xprint # This file is responsible for enabling/disabling colors in OctoSuite