Other articles


  1. Military Grade

    We are presented with a simple webservice written in go which randomly changes the encryption key every 672 ms and outputs the encrypted flag. However if we analyze the seed that is used to initialize the random number generator ...

    func changer() {
        ticker := time.NewTicker(time.Millisecond * 672).C
        for range …
    read more

social