THJCC CTF official writeup
Author:堇姬Naup
Source Code : https://github.com/Naupjjin/THJCC-CTF-source-code
CryptoJPG^PNG=?source1234567891011121314from itertools import cycledef xor(a, b): return [i^j for i, j in zip(a, cycle(b))]KEY= open("key.png", "rb").read()FLAG = ope
2024-04-272.6k words14 mins
Intigriti-August-XSS-challenge
Intigriti’s August XSS challenge
Author:堇姬Naup
題目https://challenge-0823.intigriti.io/有一個計算機可以輸入東西,只要有執行alert(document.domain)就可以過了
Source code1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
2024-04-25479 words2 mins
Assembly-x86
組合語言
Author:堇姬
電腦底層架構與程式執行相關硬體
CPU
實際運算硬體,配有暫存器,儲存運算資料
RAM
記憶體
指令集架構先設計好指令集架構再設計電路。
常見:
x86/x86-64
ARM
MIPS
大部分用的是intel x86/x86-64架構
CPU暫存器隨設計而改變用途
名稱
意思
rax
accumulator
rbx
base
rcx
count
rdx
data
固定用途
名稱
意思
rsi
source index
rdi
destination index
rbp
base poi