eggshell.c

This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters Show hidden characters ...
Read more

메모리 확인, ASLR 설정

- 메모리 보기 /proc/$pid/map - ASLR 설정하기 임시로 끄기 /proc/sys/kernel/randomize_va_stace0: OFF 1: ON(stack only) 2: ON(stack, heap) 영구적 끄기 sysctl -w kernel.randomize_va_space...
Read more

c로 작성된 python module 만들기

c로 작성된 python module 만들기 C로 작성된 함수를 파이썬에서 import 해서 사용하기 위해서는 C로 작성된 프로그램 코드를 파이썬이 import할 수 있는 라이브러리 파일로 변환해 주어야 한다. (ubuntu 환경에서 할거임) swig(Simplified Wrapper and Interface Generator)라는 툴을 사용하면 간단히 라이브러리파일로 만들어 낼 수 있다. swig는 파이썬뿐만 아니라 다른 언어에서도...
Read more