[withoutCRA5] CRA없이 React앱 구성하기 - Webpack plugin
Webpack Mode option Webpack has mode props in config. production : More build time. Code Optimization process. Tree Shaking. Code spliting. Code obfuscation. Constant Folding. etc.. ...
Webpack Mode option Webpack has mode props in config. production : More build time. Code Optimization process. Tree Shaking. Code spliting. Code obfuscation. Constant Folding. etc.. ...
Windows + Arch Linux 듀얼부팅 환경을 구축하고자 할 때, Arch의 Grub에 windows를 추가하는 방법에 대해 정리한다. Procedure Install required packages os-prober, ntfs-3g $ sudo pacman -S os-prober ntfs-3g Edit /etc/default/gru...
pyenv install 3.x.x 시에 BUILD FAILED (Ubuntu 22.04 using python-build 20180424) 오류가 발생했을 때 해결 방법을 정리한다. 일반적으로 python 빌드를 위한 dependencies가 충족되어 있지 않았을 경우 발생한다. sudo apt update sudo apt install \ ...
pwntools 사용 중 [!] Could not populate PLT: No module named ‘distutils’ 가 나타났을때.. $ apt install python3-distutils $ pip install setuptools # This solved my problem
Git credential credential을 이용하면 Token을 Local에 저장하여 매번 입력하지 않고도 git을 사용할 수 있다. $ git config --global credential.helper store $ git config --global --list user.email=xxxxxxxxxxx@xxxxxxx.xxx user...
tcache_dup2 write-up (glibc2.30) tcache_dup2 문제의 코드 #include <stdio.h> #include <stdlib.h> #include <signal.h> #include <unistd.h> char *ptr[7]; void initialize() { ...
Tcache Duplication Concept을 정리한다. GLIBC2.26부터 tcache라는 개념이 도입됐다. 이 버전에서는 Double Free를 검증하는 보호기법이 없었으나 GLIBC2.29부터 key값을 사용하는 보호기법이 적용되었다. GLIBC source code Download $ wget "https://ftp.gnu...
Use-After-Free 취약점의 기본 컨셉과 이를 활용한 예제를 정리한다. ** ptmalloc2 Allocator 기준으로 정리했다. What is UAF? 해제된 메모리에 접근할 수 있을때 발생하는 취약점 임의 메모리를 참조하는 포인터를 메모리 해제 후에 초기화하지 않거나, (Dangling Pointer) ...
GLIBC2.27기준으로 작성되었다. uaf_overwrite 문제의 코드 // Name: uaf_overwrite.c // Compile: gcc -o uaf_overwrite uaf_overwrite.c #include <stdio.h> #include <stdlib.h> #include <string.h> ...
Github pages에 글을 추가해도 브라우저에서 Force Refresh 없이는 변경사항이 적용되지 않는것 처럼 보여지는 문제를 해결하는 방법에 대해 정리한다. PWA를 통해 브라우저에 저장된 캐시를 로드하는 기능이 있어서 생기는 문제인듯 하다. Solution @/_config.yml::pwa::deny_paths에 _posts경로...