Skip to content

Commit

Permalink
Merge pull request #4 from tenable/bug-fix/tuple-bug
Browse files Browse the repository at this point in the history
Fix bug
  • Loading branch information
ronpopov authored Aug 2, 2024
2 parents 7e1d713 + cbb5cde commit 44aa952
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jenganizer/jenganizer.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def filter_triggered_events(
time_end: datetime,
depth: int = 0,
output_file: str = "triggered_events.json",
event_sources: list = (),
event_sources: list = [],
):
# Create a session using your AWS credentials
session = boto3.Session(profile_name=profile_name, region_name=region_name)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = jenganizer
version = 0.1
version = 0.1.1
author = Tenable Inc.
author_email = [email protected]
description = Jenganizer is a tool to map hidden services in AWS. It does this by following the triggered events of a user's actions. When a user performs an action in AWS, it can trigger other events in other services. By following these events, users can identify services that are indirectly deployed by their actions. This can be important, as these resources can present security risks which should be managed and controlled.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="jenganizer",
version="0.1",
version="0.1.1",
packages=find_packages(),
install_requires=[
"boto3",
Expand Down

0 comments on commit 44aa952

Please sign in to comment.