Skip to content
View Eeko's full-sized avatar
  • Stockholm
Block or Report

Block or report Eeko

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

  1. boogiebutton boogiebutton Public

    A proof-of-concept for triggering website actions remotely with a custom IoT device.

    HTML 1

  2. go-whois go-whois Public

    Whois tool and library written in Go

    Go

  3. koodaripula.com koodaripula.com Public

    Parempaa tietoa kotimaisesta IT-työmarkkinasta

    Jupyter Notebook 2

  4. xcom2_pekaface xcom2_pekaface Public

    A sample project using Xcom 2 modding tools to add a new armor texture

  5. A mock socket server for simulating ... A mock socket server for simulating vulnerabilities for remote exploits
    1
    #!/usr/bin/python -u
    2
    # -*- coding: utf-8 -*-
    3
    # A multi-threadable server program to provide mock-answers to socket queries.
    4
    # Usable for simulating server processes for various remote exploits
    5
    # by Eeko, 2013
  6. Small bash-script for monitoring the... Small bash-script for monitoring the status of free times for Dublin Immigration Registration appointment system. Fetches the CSRF-tokens from the form and uses it to query for free times every 30 seconds from the page. Requires restart every once in a while since the CSRF-tokens do expire for the site.
    1
    #!/bin/bash
    2
    
                  
    3
    SITECONTENT=$(curl https://burghquayregistrationoffice.inis.gov.ie/Website/AMSREG/AMSRegWeb.nsf/AppSelect?OpenForm)
    4
    K=$(echo $SITECONTENT|egrep -o '<input id="k" type="hidden" value="\w+"'|cut -c36-67)
    5
    P=$(echo $SITECONTENT|egrep -o '<input id="p" type="hidden" value="\w+"'|cut -c36-67)