We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SECCON 2018 domestic の本番で使ったのは以下のようなものでした。
#include <stdlib.h> time_t time(time_t *tloc) { return atoll(getenv("TIME")); }
# Python 3.x t = int(time.time()) proc = subprocess.run([ './generate_random_hands', str(t) ], env={ 'TIME': str(t), 'LD_PRELOAD': './libtime.so' }, stdout=subprocess.PIPE)
The text was updated successfully, but these errors were encountered:
ところで、ちゃんと復習していてえらい
Sorry, something went wrong.
外部で時間計算して環境変数で渡すの賢いですね
No branches or pull requests
SECCON 2018 domestic の本番で使ったのは以下のようなものでした。
The text was updated successfully, but these errors were encountered: