Apollo89 · Technical Notes

직접 설치하고, 직접 써보고, 문제를 해결해서 기록합니다.

AI Coding, Development, Security, Network, Automation을 중심으로 실제 구축 과정에서 만난 문제와 해결 방법을 정리합니다.

이 영역에는 쿠팡/토스 파트너스 제휴 링크가 포함되어 있으며, 구매 시 일정액의 수수료를 제공받을 수 있습니다.

Latest Articles

최근 작성한 글 10개

Development

보호된 글: [FHZ]Level20 – Clear!

  [FHZ]Level20 id : level20 pw : we are just regular guys [level20@ftz level20]$ ls attackme hint public_html tmp [level20@ftz level20]$ cat hint #include <stdio.h> main(int argc,char **argv) { char bleh[80]; setreuid(3101,3101); fgets(bleh,79,stdin); printf(bleh); } [level20@ftz level20]$ 드디어 마지막 문제다.. fgets으로 입력받은…

읽어보기 →
AI Coding

보호된 글: [FHZ]Level19

  [FHZ]Level19 id : level19 pw : swimming in pink [level19@ftz level19]$ ls attackme hint public_html tmp [level19@ftz level19]$ cat hint main() { char buf[20]; gets(buf); printf("%s\n",buf); } [level19@ftz level19]$ 이번 소스는 또 짧다 그리고 엄청 간단하다.. buf에 입력을 받아서 printf으로 출력한다..…

읽어보기 →
Development

보호된 글: [FHZ]Level18

  [FHZ]Level18 id : level18 pw : why did you do it [level18@ftz level18]$ ls attackme hint public_html tmp [level18@ftz level18]$ cat hint #include <stdio.h> #include <sys/time.h> #include <sys/types.h> #include <unistd.h> void shellout(void); int main() { char string[100]; int check; int x…

읽어보기 →
Tech

나를 바꾸는 심리학의 지혜 : 프레임

  [프레임 구매하기] 프레임이란 세상을 바라보는 마음의 창 편견 또는 선입견을 심리학적으로 풀어낸 책이다. 알게 모르게 우리는 모드 자신만의 프레임을 가지고 세상을 바라본다.. 이 책에서는 프레임에 관한 많은 심리학적 실험과 이야기로 프레임의 강력함을 설명해주고 있다. 그리고 책을 읽으면서 내가 자주 사용하는 프레임이…

읽어보기 →
Development

보호된 글: [FHZ]Level17

  [FHZ]Level17 id : level17 pw : king poetic [level17@ftz level17]$ ls attackme hint public_html tmp [level17@ftz level17]$ cat hint #include <stdio.h> void printit() { printf("Hello there!\n"); } main() { int crap; void (*call)()=printit; char buf[20]; fgets(buf,48,stdin); setreuid(3098,3098); call(); } 이번에도 level16과…

읽어보기 →
Development

보호된 글: [FHZ]Level16

  [FHZ]Level16 id : level16 pw : about to cause mass [level16@ftz level16]$ ls attackme attackme.c hint public_html tmp [level16@ftz level16]$ cat hint #include <stdio.h> void shell() { setreuid(3097,3097); system("/bin/sh"); } void printit() { printf("Hello there!\n"); } main() { int crap; void…

읽어보기 →
Development

보호된 글: [FHZ]Level15

  [FHZ]Level15 id : level15 pw : guess what [level15@ftz level15]$ ls attackme hint public_html tmp [level15@ftz level15]$ cat hint #include <stdio.h> main() { int crap; int *check; char buf[20]; fgets(buf,45,stdin); if (*check==0xdeadbeef) { setreuid(3096,3096); system("/bin/sh"); } } 문제는 level14와 동일하다. 단,…

읽어보기 →
Development

보호된 글: [FHZ]Level14

  [FHZ]Level14 id : level14 pw : what that nigga want? [level14@ftz level14]$ ll total 28 -rwsr-x--- 1 level15 level14 13801 Dec 10 2002 attackme -rw-r----- 1 root level14 346 Dec 10 2002 hint drwxr-xr-x 2 root level14 4096 Feb 24 2002…

읽어보기 →