>_ ~$ whoami

Engineer & Researcher

Building knowledge at the intersection of Cloud Security, DevSecOps, and Privacy & Compliance. Documenting hands-on experience with securing infrastructure, automating security operations, and navigating data protection frameworks.

Cloud Infra Security DevSecOps Privacy & Compliance

About

🛡️ Cloud & DevSecOps Engineering

Designing and automating cloud security architectures. Working with infrastructure as code, CI/CD security integration, and cloud-native security controls.

#AWS #Terraform #Kubernetes #GitHubActions

🛡️ Information Security & Compliance

Studying and applying framework-based security management including ISMS-P, ISO 27001, and privacy regulations. Documenting compliance implementation practices.

#ISMS-P #ISO27001 #Privacy #Governance

Virtual box 편리한 설정
·
Guidebook
Virtual box를 쓰다보면 loacl과의 복붙(Clipboard)이 잘 안되거나 화면 크기가 고정되어서 작은 창으로만 보는 것이 힘들 때가 있습니다. 🥲그럴 때 가장!! 간단하게 해결하는 방법입니다.다른 시도보다 간단하고 무엇보다 더 복잡한 방법이 안될 때가 많아서 기록해봅니다!✍️ 🖱️Clipboard 관련 오류 해결sudo killall VBoxClient관련 프로세스 종료 후 하나씩 재시작VBoxClient --clipboardVBoxClient --display 🖥️화면 크기 자동 조정관련 서비스 재시작sudo systemctl restart virtualbox-guest-utils또는 수동으로 프로세스를 확인하려면 다음 명령어를 사용하세요.VBoxClient --checkhostver..
KVM 삭제
·
Guidebook
1. 실행 중인 가상 머신 종료virsh list --all가상 머신이 실행 중이라면 종료 virsh shutdown 또는 강제 종료: virsh destroy 가상 머신을 삭제하려면: virsh undefine --remove-all-storage ps aux | grep qemu  sudo apt remove --purge -y qemu* libvirt-* virt-* bridge-utils  2. KVM 패키지 삭제Ubuntu/Debian 계열sudo apt remove --purge -y qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-managersudo apt autoremove -y   CentOS/RHEL/Fedora 계..
VS code 원격 연결 및 사용 방법
·
Guidebook
remote 설치 / Extentions 에 remote 검색하기VS coe 설치할 때 , remote 같이 설치 가능함  2. Host 연결 , Open a remote window 클릭  3. 연결할 Host 정보 입력 후 비밀번호 입력    ssh [Hostname]@[ip]   4. Host 연결 확인 및 사용Remote ExploerConnect in new window 5. … 선택 후 Terminal 창 이용
Wireshark
·
Guidebook
wireshark 보조 프로그램 mergecap : 여러 개의 pcap,pcapng 파일을 하나의 덤프 파일로 통합해주는 도구 wireshark를 설치할 때 같이 설치된다. 더보기Usage: mergecap [options] -w |- [ ...]Output: -a concatenate rather than merge files. default is to merge based on frame timestamps. -s truncate packets to bytes of data. -w |- set the output filename to or '-' for stdout. -F set the output file ..