Skip to content

Commit

Permalink
update files config
Browse files Browse the repository at this point in the history
  • Loading branch information
nair0lf32 committed Jun 7, 2024
1 parent 7215e09 commit fb8ff29
Show file tree
Hide file tree
Showing 34 changed files with 47 additions and 0 deletions.
Binary file added public/hackerlab2023/agoodjie.pdf
Binary file not shown.
Binary file added public/hackerlab2023/amazone.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/cut.bmp
Binary file not shown.
Binary file added public/hackerlab2023/fa/chall
Binary file not shown.
1 change: 1 addition & 0 deletions public/hackerlab2023/fa/password_01
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
test
1 change: 1 addition & 0 deletions public/hackerlab2023/fa/username_01
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
root
Binary file added public/hackerlab2023/ghezo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/gj.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/heviosso-nou-gue.pdf
Binary file not shown.
Binary file added public/hackerlab2023/hotagantin.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/php.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/puzzle/behanzin.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/puzzle/part1.fbx
Binary file not shown.
Binary file added public/hackerlab2023/puzzle/part2.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/rank.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/res.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/solves.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/team.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
45 changes: 45 additions & 0 deletions public/hackerlab2023/utc.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
import random
import os
import time


tresor = "CTF_XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"

t = int(time.time())
random.seed(t)


def encrypt(data):
assert isinstance(data, bytes)

cipher = []
for b in data:
r = random.randint(0, 255)
c = (b+r) % 256
cipher.append(c)
return cipher


def intro():
print("[+] U.T.C [+]")
print("Choisir (e) pour récupérer le trésor et (q) pour quitter")


def main():
intro()

while True:
try:
choice = input()
except:
exit()

if choice == "e":
tresor_enc = encrypt(tresor.encode())
print("-".join(map(str, tresor_enc)))
if choice == "q":
print("Byeeeeeeeeeee !!!")
exit()


main()
Binary file added public/hackerlab2023/zebra.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/hackerlab2023/zero.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/One Piece/boat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/One Piece/kaido.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/One Piece/king_kong_gun.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/One Piece/luffy.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/Steel Mountain/HVTz2Ca.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/Steel Mountain/Uo9F3uE.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/Steel Mountain/steel-mountain.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/cicada-3301/3301.wav
Binary file not shown.
Binary file added public/thm/cicada-3301/cicada.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/cicada-3301/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/cicada-3301/undefined.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/cicada-3301/welcome.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/thm/pokemon/pokemon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit fb8ff29

Please sign in to comment.