6kittylog
close
프로필 사진

6kittylog

github: @6kitty

  • 분류 전체보기 (259)
    • proj (3)
      • ARM analysis (2)
      • 한이음: PBM (0)
      • 한이음: Quant (0)
      • CJ security wave (1)
    • security: study (61)
      • web: dreamhack (11)
      • Bug hunting (2)
      • pwn: dreamhack (38)
      • cryptohack (3)
      • 시큐어코딩 (5)
      • tool (2)
    • wargame (51)
      • dreamhack (18)
      • CodeEngn (2)
      • picoCTF (3)
      • Root-me (1)
      • pwnable.kr (2)
      • webhacking.kr (6)
      • mobilehacking.kr (0)
      • ctf+ (15)
      • 아직 푸는중 (˃̣̣̥᷄ ̯ ˂̣̣̥᷅ ◦) (4)
    • WHS 4th (1)
      • infra (1)
    • SWING (51)
      • forensic (24)
      • web hacking (11)
      • reversing (12)
      • cpp study (3)
      • 우녕진 ꒰๑ᴖ o ᴖ๑꒱ (1)
    • CS (6)
      • computer (1)
      • linux (3)
      • windows (2)
    • 최신동향 (8)
      • 뉴스 스터디 (4)
      • vul (2)
      • 개인정보보호 (2)
    • dev (8)
    • work (3)
    • AX (2)
    • coding (53)
      • 바킹독 (13)
      • baekjoon: python (4)
      • baekjoon: cpp (12)
      • CryptoZombies (2)
      • 프로그래머스 알고리즘 고득점 kit : cpp (20)
      • + (2)
    • 일기 (12)
  • 홈
  • 태그
  • 방명록

tmux 세션 생성, 나가기, 재접속, 삭제

세션 생성% tmux new -s 세션 나가기 (삭제는 아님) 단축키 control(^) + b, then d 윈도우는 아마 control이 ctrl 세션 재접속 % tmux attach -t 세션 삭제 % tmux kill-session -t 활성화된 세션 리스트 % tmux ls

  • format_list_bulleted dev
  • · 2026. 8. 4.

Linux 로그 분석하려는데 표준 시간 korea로 바꾸기

┌──(kali㉿kali)-[~]└─$ if test -f /var/log/auth.log; then sudo tail -n 20 /var/log/auth.log; else echo '/var/log/auth.log not found; using journalctl -u ssh'; sudo journalctl -u ssh --since '30 minutes ago' --no-pager | tail -20; fi/var/log/auth.log not found; using journalctl -u sshJun 23 20:10:05 kali sshd-session[5555]: pam_unix(sshd:session): session opened for user kali(uid=1000) by kali(uid..

  • format_list_bulleted dev
  • · 2026. 6. 24.
UTM에 띄운 Kali SSH 연결하기

UTM에 띄운 Kali SSH 연결하기

mac 기준 control+shift+v 하면 로컬 내용을 복붙할 수 있긴 한데 뭔가 불편하니까 SSH로 kali 접속해서 로컬에서 사용하는 것이 좋다. 근데 kali에 openssh-server를 깔아서 먼저 ssh를 열어줘야 한다. sudo apt updatesudo apt install -y openssh-server위 명령어로 설치하고 sudo systemctl start sshsudo systemctl enable ssh위 명령어로 실행 sudo systemctl status ssh위 명령어는 상태 확인 이후 kali에서 ip addr 치면 수많은 내용중에 eth0 옆에 있는 IP 주소가 있을 것이다. ssh kali@로 terminal에서 접속하면 된다.

  • format_list_bulleted dev
  • · 2026. 6. 24.

mac에서 vulhub의 도커 빌드가 안되는데...

vulhub로 도커 구축하고 nuclei 하는 실습이 있었는데 내 UTM kali는 arm64라서 vulhub 대부분이 amd 기준이라 거의 다 튕기는 거 같다. 이와 관련한 트러블슈팅 두 가지를 정리했다. 1. QEMU 애뮬레이션으로 amd64 실행하는 방법1. QEMU/binfmt 설치 ┌──(kali㉿kali)-[~/…/day02-cve/vulhub/tomcat/CVE-2025-24813]└─$ sudo apt install -y qemu-user-static binfmt-supportNote, selecting 'qemu-user-binfmt' instead of 'qemu-user-static' ┌──(kali㉿kali)-[~/…/day02-cve/vulhub/tomcat/CVE-2025-24..

  • format_list_bulleted dev
  • · 2026. 6. 23.

[Infra] 단일 노드에서 고가용성 클러스터로 - 로드밸런서가 필요한 이유

1. TL;DR단일 노드 구조는 단순하고 빠르게 만들 수 있지만, 노드 하나가 죽으면 서비스 전체가 멈춘다.고가용성 구조는 여러 노드에 서비스를 분산하고, 로드밸런서가 정상 노드로만 요청을 보내는 방식으로 장애 영향을 줄인다.로드밸런서는 단순히 트래픽을 나눠주는 장치가 아니라, 장애 감지, 우회, 확장성의 출발점이다.2. 단일 노드 구조처음 서비스를 만들 때는 보통 단일 노드 구조로 시작한다.구조는 단순하다.user→ nginx→ ssh-tunnel→ node→ DB여기서 하나의 node가 애플리케이션 서버, 내부 연결, DB 접근 등 대부분의 역할을 맡는다.작은 프로젝트나 MVP 단계에서는 이 구조가 나쁘지 않다.구성이 쉽고, 배포도 단순하다.서버 한 대에 접속해서 프로세스를 띄우고, nginx로 요청..

  • format_list_bulleted dev
  • · 2026. 5. 15.
[Codex CLI + Azure AI Foundry] Apple Silicon Mac 개발환경 셋업 - classic endpoint 아니고 Foundry v1 방법

[Codex CLI + Azure AI Foundry] Apple Silicon Mac 개발환경 셋업 - classic endpoint 아니고 Foundry v1 방법

TL;DRApple Silicon Mac에 Codex CLI + OMX + Azure AI Foundry v1을 붙이는 과정을 정리했다.classic Azure OpenAI(openai.azure.com)와 Foundry v1(cognitiveservices.azure.com) 설정은 wire_api와 base_url 처리 방식이 다르다.삽질 포인트가 많아서 자동화 스크립트 3개로 정리했다.배경Azure AI Foundry로 프로비저닝한 리소스를 Codex CLI에 붙이려고 했다.공식 가이드는 classic Azure OpenAI(openai.azure.com) 기준으로 작성된 게 많은데, Foundry v1 리소스는 엔드포인트 형태가 다르다.대상 환경은 아래와 같다.macOS 26.x (Apple Si..

  • format_list_bulleted dev
  • · 2026. 5. 8.
  • navigate_before
  • 1
  • 2
  • navigate_next
공지사항
전체 카테고리
  • 분류 전체보기 (259)
    • proj (3)
      • ARM analysis (2)
      • 한이음: PBM (0)
      • 한이음: Quant (0)
      • CJ security wave (1)
    • security: study (61)
      • web: dreamhack (11)
      • Bug hunting (2)
      • pwn: dreamhack (38)
      • cryptohack (3)
      • 시큐어코딩 (5)
      • tool (2)
    • wargame (51)
      • dreamhack (18)
      • CodeEngn (2)
      • picoCTF (3)
      • Root-me (1)
      • pwnable.kr (2)
      • webhacking.kr (6)
      • mobilehacking.kr (0)
      • ctf+ (15)
      • 아직 푸는중 (˃̣̣̥᷄ ̯ ˂̣̣̥᷅ ◦) (4)
    • WHS 4th (1)
      • infra (1)
    • SWING (51)
      • forensic (24)
      • web hacking (11)
      • reversing (12)
      • cpp study (3)
      • 우녕진 ꒰๑ᴖ o ᴖ๑꒱ (1)
    • CS (6)
      • computer (1)
      • linux (3)
      • windows (2)
    • 최신동향 (8)
      • 뉴스 스터디 (4)
      • vul (2)
      • 개인정보보호 (2)
    • dev (8)
    • work (3)
    • AX (2)
    • coding (53)
      • 바킹독 (13)
      • baekjoon: python (4)
      • baekjoon: cpp (12)
      • CryptoZombies (2)
      • 프로그래머스 알고리즘 고득점 kit : cpp (20)
      • + (2)
    • 일기 (12)
인기 글
전체 방문자
오늘
어제
Copyright © 육키티 모든 권리 보유.
SKIN: Copyright © 쭈미로운 생활 All rights reserved. Designed by JJuum.
and Current skin "dev-roo" is modified by Jin.

티스토리툴바