y1w3n's blog


一個正在學資訊的人

2024picoCTF General Skills writeups

write by y1w3n(2024.05) General SkillsSuper SSH題目說明 solve照題目說的做就得到flag了 answerpicoCTF{s3cur3_c0nn3ct10n_07a987ac} note 輸入密碼的時候它不會顯示出來你打什麼 Time Machine題目說明 challenge message.txt solve git log : 查看提交歷史得到flag answerpicoCTF{t1m3m@ch1n3_8defe16a} noteCommitment Issues題目說明 一個壓...

2024picoCTF Reverse writeups

write by y1w3n(2024.05) Reverse EngineeringWinAntiDbg0x100題目說明 hint: Hints will be displayed to the Debug console. Good luck! 執行下來發現他叫我using a debugger slove 進到IDA中看看哪裡會輸出flag 發現這裡是判斷會不會輸出flag的地方 在jz short loc_C6161B設中斷點 使用Debugger功能執行 會發現直接執行後輸出: 也就是說沒嘗試bypass不會跳到輸出flag的地方 回去看看上面跳轉的條件 call d...

Machine Learning

機器學習 BY y1w3n 隨手記版本 定義問題->蒐集資料->資料分析->處理資料集->訓練模型->推論和預測 名詞 監督式學習 透過特徵跟目標變數(正確答案)來學習 KNN 分類器 資料放進去之後找離它最近的K筆資料,結果就會推測在被選中的K筆資料中找多的(分類)或平均(回歸) 決策樹 一棵可用於決策分類的樹形分類器 回歸 : 預測有意義的數值 for監督式學習 有意義的數值(例:鞋子尺寸23.5cm、24cm…) 沒意義的數值(例:性別男視為0、女視為1) 分類 非監督式學習 不提供目標變數(正確答案) 所以就要去分析輸...

Hello World

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo ser...