Apollo89 · Author

apollo89

아폴로89 입니다.
783 articles
Network

보호된 글: [LOB] Level4 (goblin)

  [LOB] Level4 (goblin) id : goblin pw : hackers proof [goblin@localhost goblin]$ ls orc orc.c [goblin@localhost goblin]$ ./orc argv error [goblin@localhost goblin]$ ./orc aaa stack is still your friend. [goblin@localhost goblin]$ orc이란 실행파일과 소스파일이 있다. 일단 실행해보니, 인자값을 받고 "stack is…

읽어보기 →
Security

보호된 글: [LOB] Level3 (cobolt)

  [LOB] Level3 (cobolt) id : cobolt pw : hacking exposed [cobolt@localhost cobolt]$ ls goblin goblin.c [cobolt@localhost cobolt]$ ./goblin aaa aaa [cobolt@localhost cobolt]$ goblin이란 실행파일과 소스파일이 있다. 일단 실행해보니, 인자값을 받아 그대로 출력한다. 소스를 보면.. [cobolt@localhost cobolt]$ cat goblin.c /* The Lord…

읽어보기 →
Security

보호된 글: [LOB] Level2 (gremlin)

  [LOB] Level2 (gremlin) id : gremlin pw : hello bof world [gremlin@localhost gremlin]$ ls cobolt cobolt.c [gremlin@localhost gremlin]$ ./cobolt argv error [gremlin@localhost gremlin]$ ./cobolt aaa aaa cobolt이란 실행파일과 소스파일이 있다. 일단 실행해보니, 인자값을 받아 그대로 출력한다. 소스를 보면.. [gremlin@localhost gremlin]$ cat…

읽어보기 →
Network

보호된 글: [LOB] Level1 (gate)

  [LOB] Level1 (gate) id : gate pw : gate [gate@localhost gate]$ ls gremlin gremlin.c [gate@localhost gate]$ ./gremlin argv error [gate@localhost gate]$ ./gremlin aaa aaa gremlin이란 실행파일과 소스파일이 있다. 일단 실행해보니, 인자값을 받아 그대로 출력한다. 소스를 보면.. [gate@localhost gate]$ cat gremlin.c /*…

읽어보기 →
Tech

[LOB]환경구성하기.

[LOB]환경구성하기. VM 이미지 다운로드 현준씨가 올린 이미지 다운로드 https://docs.google.com/uc?export=download&confirm=Q8e_&id=0B_TNCsczWm6tSzBIdVhCTVFRMms VMplayer 으로 open 첫 로그인 id : gate pw : gate 이제 풀어보자....

읽어보기 →
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와 동일하다. 단,…

읽어보기 →