2022๋ 9์ 5์ผ ์์คํ
- 2021๋ 4๋ถ๊ธฐ ๊ธฐ์ค Github ์ ์ ์จ 15์ ์ธ์ด
- C++ ์์ด์ ํฌ์ง์ (๊ฐ์ธ์ ์ผ๋ก 10๋ ์์ C++ ๋์ด์ค ๋ฏ)
- ๋ธ๋ก์ฒด์ธ, ์๋ฒ ๋๋, ์์คํ ํ๋ก๊ทธ๋๋ฐ, ์๋ฒ, ๋ถ์ฐ์ฒ๋ฆฌ, WASM ๋ฑ์์ ํ๋ฐํ ์ฌ์ฉ๋๋ ๊ณ ์ฑ๋ฅ ์ธ์ด
- ๋ชจ๋ํ๊ณ ๊น๋ํ ์ธ์ด ๋์์ธ, ํ๋ฅญํ ๊ฐ๋ฐํด๊ณผ ํจํค์ง ๋งค๋์
- ์์ค๋์ ์ฌ์ฉ์๋ค๊ณผ ์ปค๋ฎค๋ํฐ, ๋ ๋ณด์ ์ธ UX๋ฅผ ๊ธฐ๋ฐ์ผ๋ก ํ ์ฒ ์น์ฑ ๊ฐ์ ํฌ๋ค๋ค
์ด ๊ธ์ Heinrich Hartmann ๋์ด ์์ฑํ์ ๊ธ์ ํ๊ตญ์ด๋ก ๋ฒ์ญํ ๊ฒ์ ๋๋ค. ์๋ฌธ์ https://www.heinrichhartmann.com/posts/writing/ ์์ ํ์ธํ์ค ์ ์์ต๋๋ค.
๊ธ์ฐ๊ธฐ๋ ํฐ ์กฐ์ง์์ ์ํฅ๋ ฅ์ ๋ฐํํ๋ ๋ฐ ์ค์ํฉ๋๋ค. ๊ฒฝ๋ ฅ ์๋ ์ํํธ์จ์ด ์์ง๋์ด๋ก์์ ๊ธ์ฐ๊ธฐ๋ ์ง๋ฌด ๋ฒ์๋ฅผ ํ์ฅํ๊ณ ๊ฒฝ๋ ฅ์ ๋ฐ์ ์ํค๊ธฐ ์ํด ํ๋ํด์ผ ํ๋ ๊ฐ์ฅ ์ค์ํ ๊ธฐ์ ์ ๋๋ค.
๊ธ์ฐ๊ธฐ๋ ์ด๋ ต์ต๋๋ค. ๋ง์ ์ํํธ์จ์ด ์์ง๋์ด๋ค์ด ๊ธ์ฐ๊ธฐ์ ์จ๋ฆํ์ฃ . ์ ๋ ๊ฐ์ธ์ ์ผ๋ก ๋ฌธํ์ ๋ํ ๊ด์ฌ์ด ์๊ธฐ ๋๋ฌธ์ ๊ธ์ฐ๊ธฐ๊ฐ ์์ฐ์ค๋ฝ์ง ์์์ต๋๋ค.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# decoding_routines.py | |
# | |
# An example of using FLOSS as a library to identify potential decoding routines. | |
# It will print an ordered list of function addresses and their "score", | |
# ranked from most likely to least likely to be a decoding routine. | |
# | |
# Usage: | |
# | |
# $ python decoding_routines.py /path/to/input.exe | |
# 0x401000: 0.99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Original rule from: https://gist.github.com/g-les/0745a9d6cd7f4abb3083a8dee1eaf984 | |
Two variations on the original rule by @greglesnewich. | |
Conversation on Twitter at: https://twitter.com/edeca/status/1477650229709225990 | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
''' | |
compare vivisect analysis comparison across versions. | |
pip install devtools[pygments] pydantic viv-utils termcolor | |
''' | |
import sys | |
import time | |
import os.path | |
import logging |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#NoEnv | |
#Warn | |
SendMode Input | |
SetWorkingDir %A_ScriptDir% | |
SetCapsLockState AlwaysOff | |
CapsLock::Send {esc} | |
CapsLock & j::Send {Down} | |
CapsLock & k::Send {Up} | |
CapsLock & h::Send {Left} |
- https://freshrimpsushi.github.io/ # ์ํ,์๋ฆฌํต๊ณ ์ ๋ฐ
- https://darkpgmr.tistory.com/103?category=460967 # ์ ํ๋์ ๊ด๋ จ
- http://wolfpack.hannam.ac.kr/ # ๋ฌด์น ๋ฌด์น ๋ฌด์น ๋ฌด์น
NewerOlder