diff --git a/examples/add_github_user.py b/examples/add_github_user.py index ef6005e..07b8abb 100755 --- a/examples/add_github_user.py +++ b/examples/add_github_user.py @@ -46,10 +46,20 @@ if __name__ == '__main__': followers = rfollowers.json() rfollowing = requests.get("https://api.github.com/users/{}/following".format(args.username)) followings = rfollowing.json() + rkeys = requests.get("https://api.github.com/users/{}/keys".format(args.username)) + keys = rkeys.json() misp_object.add_attributes("follower", *[follower['login'] for follower in followers]) misp_object.add_attributes("following", *[following['login'] for following in followings]) + misp_object.add_attributes("ssh-public-key", *[sshkey['key'] for sshkey in keys]) misp_object.add_attribute('bio', github_user['bio']) misp_object.add_attribute('link', github_user['html_url']) misp_object.add_attribute('user-fullname', github_user['name']) misp_object.add_attribute('username', github_user['login']) + misp_object.add_attribute('twitter_username', github_user['twitter_username']) + misp_object.add_attribute('location', github_user['location']) + misp_object.add_attribute('company', github_user['company']) + misp_object.add_attribute('public_gists', github_user['public_gists']) + misp_object.add_attribute('public_repos', github_user['public_repos']) + misp_object.add_attribute('blog', github_user['blog']) + misp_object.add_attribute('node_id', github_user['node_id']) retcode = pymisp.add_object(args.event, misp_object)