Skip to content
View latsku's full-sized avatar
Block or Report

Block or report latsku

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. Camera_test Camera_test Public

    ASCII art camera software for STM32F4 Discovery board and OV2640 camera module

    C 6 5

  2. P2Pprotocol_dissector P2Pprotocol_dissector Public

    Wireshark Lua protocol dissector for my school project. Project uses Gnutella 0.6 stylish protocol to form a peer-to-peer network.

    Lua 1

  3. TPM2.0 hashing with just the device ... TPM2.0 hashing with just the device node
    1
    import binascii
    2
    import struct
    3
    import logging
    4
    
                  
    5
    logger = logging.getLogger()
  4. Powershell TCP server Powershell TCP server
    1
    $endpoint = New-Object System.Net.IPEndPoint ([System.Net.IPAddress]::any, 1600)
    2
    $Listener = New-Object System.Net.Sockets.TcpListener $endpoint
    3
    $Listener.Start()
    4
    $client = $Listener.AcceptTcpClient()
    5
    $stream = $client.GetStream()
  5. hellokernel hellokernel Public

    Hello World printing x86 kernel

    C

  6. sntp_for_things sntp_for_things Public

    SNTP client library and example for Unix

    C 1