mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-12 05:18:33 +03:00
Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
646ea3cb51 | ||
|
|
3e18a3301a | ||
|
|
d4b595d79e | ||
|
|
0f247d1dd8 | ||
|
|
1b2c441237 | ||
|
|
2723c2f8dd | ||
|
|
7576fa64a1 | ||
|
|
79a97a7883 |
@@ -10,10 +10,14 @@ A framework for gathering open-source intelligence on GitHub users, repositories
|
|||||||

|

|
||||||

|

|
||||||
|
|
||||||
|
> About
|
||||||
|

|
||||||
|
|
||||||

|
> User profile
|
||||||
|

|
||||||
|
|
||||||

|
> Organisation profile
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
# Wiki
|
# Wiki
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ from octosuite.config import red, white, green, reset, Tree
|
|||||||
|
|
||||||
# banner.py
|
# banner.py
|
||||||
# This file holds the program's banner and version tag
|
# This file holds the program's banner and version tag
|
||||||
version_tag = "3.0.1"
|
version_tag = "3.0.4"
|
||||||
|
|
||||||
|
|
||||||
def banner():
|
def banner():
|
||||||
@@ -16,7 +16,7 @@ def banner():
|
|||||||
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
|
| |.----.| |_.-----.| __|.--.--.|__| |_.-----.
|
||||||
| - || __|| _| _ ||__ || | || | _| -__|
|
| - || __|| _| _ ||__ || | || | _| -__|
|
||||||
|_______||____||____|_____||_______||_____||__|____|_____|
|
|_______||____||____|_____||_______||_____||__|____|_____|
|
||||||
v{version_tag}#dev
|
v{version_tag}
|
||||||
{white}— Advanced Github {red}OSINT{white} Framework
|
{white}— Advanced Github {red}OSINT{white} Framework
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ An advanced and lightning fast framework for gathering open-source intelligence
|
|||||||
|
|
||||||
|
|
||||||
Whats new in v{version_tag}?
|
Whats new in v{version_tag}?
|
||||||
[{green}FIXED{reset}] Fixed a bug '[ERROR] An error occurred: can only concatenate str (not "NoneType") to str'
|
[{green}FIXED{reset}] Merged pull request from #9: bad indentation leading to reference before assignment error #9
|
||||||
|
|
||||||
Read the wiki: https://github.com/bellingcat/octosuite/wiki
|
Read the wiki: https://github.com/bellingcat/octosuite/wiki
|
||||||
GitHub REST API documentation: https://docs.github.com/rest
|
GitHub REST API documentation: https://docs.github.com/rest
|
||||||
@@ -769,8 +769,8 @@ class Octosuite:
|
|||||||
events_tree = Tree("\n" + event['id'])
|
events_tree = Tree("\n" + event['id'])
|
||||||
events_tree.add(f"Type: {event['type']}")
|
events_tree.add(f"Type: {event['type']}")
|
||||||
events_tree.add(f"Created at: {event['created_at']}")
|
events_tree.add(f"Created at: {event['created_at']}")
|
||||||
xprint(events_tree)
|
xprint(events_tree)
|
||||||
xprint(event['payload'])
|
xprint(event['payload'])
|
||||||
# log_org_events(event, organization)
|
# log_org_events(event, organization)
|
||||||
else:
|
else:
|
||||||
xprint(response.json())
|
xprint(response.json())
|
||||||
|
|||||||
2
setup.py
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="3.0.1",
|
version="3.0.4",
|
||||||
author="Richard Mwewa",
|
author="Richard Mwewa",
|
||||||
author_email="rly0nheart@duck.com",
|
author_email="rly0nheart@duck.com",
|
||||||
packages=["octosuite"],
|
packages=["octosuite"],
|
||||||
|
|||||||
Reference in New Issue
Block a user