diff --git a/.img/slippin-db.png b/.img/slippin-db.png new file mode 100644 index 0000000..80df16f Binary files /dev/null and b/.img/slippin-db.png differ diff --git a/.img/slippin-ght.png b/.img/slippin-ght.png new file mode 100644 index 0000000..ec31782 Binary files /dev/null and b/.img/slippin-ght.png differ diff --git a/README.md b/README.md index 390a45a..71012b2 100644 --- a/README.md +++ b/README.md @@ -11,5 +11,10 @@ search for API keys, passwords, endpoints, and more. GitMon will also build a table that maps commit email addresses to GitHub usernames. +## Caught Slippin' +![Deleted GitHub token](.img/slippin-ght.png) + +![Cloud creds](.img/slippin-db.png) + ## Contributors - agathanonymous diff --git a/main.py b/main.py index d5dc970..7325fb4 100644 --- a/main.py +++ b/main.py @@ -23,7 +23,7 @@ def main(): while True: events = api.get_events() for event in events: - if event['type'] == 'CreateEvent': + if event['type'] in ['CreateEvent', 'DeleteEvent']: log_event(event) time.sleep(10)