├── .gitignore ├── README.md ├── css ├── code.css └── markdown.css ├── index.html ├── posts ├── 2013-03-08-wpa2-vulnerability-tplink │ ├── _main.md │ └── index.html ├── 2013-03-30-virtualdj-73-buffer-overflow │ ├── _main.md │ └── index.html ├── 2013-03-31-wpa2-vulnerability-linksys-dlink │ ├── _main.md │ └── index.html ├── 2013-04-20-virtualdj-74-buffer-overflow │ ├── _main.md │ └── index.html ├── 2016-03-16-ps3-gpu-exploit │ ├── _main.md │ └── index.html ├── 2016-08-22-observations │ ├── _main.md │ └── index.html ├── 2016-09-14-jit-compiled-maps │ ├── _main.md │ └── index.html ├── 2016-10-12-xchg-rax-rax-solutions │ ├── _main.md │ ├── index.html │ ├── xorpd_0x3c_hilbert.png │ ├── xorpd_0x3c_hilbert.py │ ├── xorpd_0x3d_morton.png │ ├── xorpd_0x3d_morton.py │ └── xorpd_0x3f_hanoi.png ├── 2017-07-19-googlectf-2017-moon │ ├── _main.md │ ├── _main.pdf │ ├── apitrace.png │ ├── bruteforcer.py │ ├── ida.png │ ├── index.html │ ├── latex-1.png │ ├── latex-2.png │ ├── moon.glsl │ └── moon.zip ├── 2018-04-18-lle-vs-hle │ ├── _main.md │ └── index.html ├── 2019-02-16-cell-miner-alu │ ├── _main.md │ ├── arithmetic.s │ └── index.html └── 2024-04-28-quotes │ └── _main.md ├── requirements.txt └── templates ├── index.html └── post.html /.gitignore: -------------------------------------------------------------------------------- 1 | *.ffs_db 2 | debug.log 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/README.md -------------------------------------------------------------------------------- /css/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/css/code.css -------------------------------------------------------------------------------- /css/markdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/css/markdown.css -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/index.html -------------------------------------------------------------------------------- /posts/2013-03-08-wpa2-vulnerability-tplink/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-08-wpa2-vulnerability-tplink/_main.md -------------------------------------------------------------------------------- /posts/2013-03-08-wpa2-vulnerability-tplink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-08-wpa2-vulnerability-tplink/index.html -------------------------------------------------------------------------------- /posts/2013-03-30-virtualdj-73-buffer-overflow/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-30-virtualdj-73-buffer-overflow/_main.md -------------------------------------------------------------------------------- /posts/2013-03-30-virtualdj-73-buffer-overflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-30-virtualdj-73-buffer-overflow/index.html -------------------------------------------------------------------------------- /posts/2013-03-31-wpa2-vulnerability-linksys-dlink/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-31-wpa2-vulnerability-linksys-dlink/_main.md -------------------------------------------------------------------------------- /posts/2013-03-31-wpa2-vulnerability-linksys-dlink/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-03-31-wpa2-vulnerability-linksys-dlink/index.html -------------------------------------------------------------------------------- /posts/2013-04-20-virtualdj-74-buffer-overflow/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-04-20-virtualdj-74-buffer-overflow/_main.md -------------------------------------------------------------------------------- /posts/2013-04-20-virtualdj-74-buffer-overflow/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2013-04-20-virtualdj-74-buffer-overflow/index.html -------------------------------------------------------------------------------- /posts/2016-03-16-ps3-gpu-exploit/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-03-16-ps3-gpu-exploit/_main.md -------------------------------------------------------------------------------- /posts/2016-03-16-ps3-gpu-exploit/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-03-16-ps3-gpu-exploit/index.html -------------------------------------------------------------------------------- /posts/2016-08-22-observations/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-08-22-observations/_main.md -------------------------------------------------------------------------------- /posts/2016-08-22-observations/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-08-22-observations/index.html -------------------------------------------------------------------------------- /posts/2016-09-14-jit-compiled-maps/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-09-14-jit-compiled-maps/_main.md -------------------------------------------------------------------------------- /posts/2016-09-14-jit-compiled-maps/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-09-14-jit-compiled-maps/index.html -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/_main.md -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/index.html -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3c_hilbert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3c_hilbert.png -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3c_hilbert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3c_hilbert.py -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3d_morton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3d_morton.png -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3d_morton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3d_morton.py -------------------------------------------------------------------------------- /posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3f_hanoi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2016-10-12-xchg-rax-rax-solutions/xorpd_0x3f_hanoi.png -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/_main.md -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/_main.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/_main.pdf -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/apitrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/apitrace.png -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/bruteforcer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/bruteforcer.py -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/ida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/ida.png -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/index.html -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/latex-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/latex-1.png -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/latex-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/latex-2.png -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/moon.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/moon.glsl -------------------------------------------------------------------------------- /posts/2017-07-19-googlectf-2017-moon/moon.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2017-07-19-googlectf-2017-moon/moon.zip -------------------------------------------------------------------------------- /posts/2018-04-18-lle-vs-hle/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2018-04-18-lle-vs-hle/_main.md -------------------------------------------------------------------------------- /posts/2018-04-18-lle-vs-hle/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2018-04-18-lle-vs-hle/index.html -------------------------------------------------------------------------------- /posts/2019-02-16-cell-miner-alu/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2019-02-16-cell-miner-alu/_main.md -------------------------------------------------------------------------------- /posts/2019-02-16-cell-miner-alu/arithmetic.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2019-02-16-cell-miner-alu/arithmetic.s -------------------------------------------------------------------------------- /posts/2019-02-16-cell-miner-alu/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2019-02-16-cell-miner-alu/index.html -------------------------------------------------------------------------------- /posts/2024-04-28-quotes/_main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/posts/2024-04-28-quotes/_main.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | markdown==3.3.3 2 | pygments==2.15.0 3 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexAltea/blog/HEAD/templates/post.html --------------------------------------------------------------------------------