Skip to content
View tkisason's full-sized avatar
🔓
👾
🔓
👾

Organizations

@foi-oss
Block or Report

Block or report tkisason

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. unhash unhash Public

    unhash is a set of tools designed to enable better password auditing

    Python 119 18

  2. getting-started-in-infosec getting-started-in-infosec Public

    A noob friendly guide for juniors starting off in infosec. Pull requests welcome!

    280 42

  3. vulnapi vulnapi Public

    Intentionaly very vulnerable API with bonus bad coding practices

    Python 35 19

  4. This AWS lambda function will add th... This AWS lambda function will add the source IP from a GET request to a EC2 security group. Useful for CTF's where you want to have a vulnerable AWS infra, but want to "pre-clear" players (by them accessing/curling one URL) and allow them access through a secgroup.
    1
    import json
    2
    import boto3
    3
    from botocore.exceptions import ClientError
    4
    ec2 = boto3.client('ec2')
    5
    security_group_id = "sg-..." ## add your security group ID here!