Skip to content
View seclist's full-sized avatar
💤
i hate coding
💤
i hate coding
  • United Kingdom
Block or Report

Block or report seclist

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
seclist/README.md

seclist

using System;

class Info
{
    public string Name { get; set; }
    public string Role { get; set; }
    public string[] LanguagesSpoken { get; set; }

    public Info()
    {
        Name = "seclist";
        Role = "student";
        LanguagesSpoken = new string[] { "en_UK" };
    }

    public void SayFact()
    {
        Console.WriteLine("survived another meeting...that couldve been an email");
    }
}

class Program
{
    static void Main()
    {
        Info me = new Info();
        me.SayFact();
    }
}

Pinned

  1. tcp-listener tcp-listener Public

    free tcp listener python

    Python

  2. restful restful Public

    short and simple OSINT username checker (DEMO)

    Python