본문 바로가기

기타[etc]

(63)
python idle 컬러 수정 [Obsidian]definition-foreground = #678CB1error-foreground = #FF0000string-background = #293134keyword-foreground = #93C763normal-foreground = #E0E2E4comment-background = #293134hit-foreground = #E0E2E4builtin-background = #293134stdout-foreground = #678CB1cursor-foreground = #E0E2E4break-background = #293134comment-foreground = #66747Bhilite-background = #2F393Chilite-foreground = #E0E2E4definit..
Mips 환경 구축 $apt-get install qemu URL : https://people.debian.org/~aurel32/qemu/mipsel/ 해당 URL에서 kernel과 image를 다운 받는다. $wget https://people.debian.org/~aurel32/qemu/mipsel/debian_squeeze_mipsel_standard.qcow2$wget https://people.debian.org/~aurel32/qemu/mipsel/vmlinux-2.6.32-5-5kc-malta $qemu-system-mipsel -M malta -kernel vmlinux-2.6.32-5-5kc-malta -hda debian_squeeze_mipsel_standard.qcow2 -append \"root=..
Makefile Makefile을 사용하면서 문법? 들을 조금 조금 모아 놓는 용도 [1] 다른 Directory에 src가 있을 때다른 Directory에 소스가 있을 때.. 뭐 cd src 해서 하는 방법이 있겠지만... 잘 안되서.. CSRC_PATH = ./srcvpath %.c $(CSRC_PATH) 와 같이 소스의 경로를 적어주고, %[*].c 즉 .c 파일과 관련된 소스는 해당 경로를 찾아보세요라고 컴파일이 알아서 된다. 편하다. [2] 헤더파일이 이것 저곳에 있을 때#Header IncludeINC = -I/usr/include/glib-2.0/ \ -I/usr/lib/i386-linux-gnu/glib-2.0/include/ \ -I$(HOME)/openvas/openvas-libraries-9.0.1/..
Daemon 만들기 nix 환경에서 Daemon형식을 파일을 만드는 방법을 정리해 놓으려 한다. Daemon : background Process를 말한다. 서비스 프로그램이다. 1. Controlling terminal 제어 터미널, 말 그대로 프로세스를 제어할 수 있는 터미널을 말한다. 우리가 ctrl+c, ctrl+z와 같이 인터럽트?를 발생시켜서 프로세스가 동작하는것을 강제로 멈춘다. 또한 xshell과 같은 프로그램으로 특정 터미널에서 프로세스를 동작시키고, 해당 터미널을 종료시키면 해당 프로세스는 죽게된다. 서비스 프로그램이 위와 같은 외부 변화에 의해서 종료된다면 안될 것이다. 그렇기 때문에 제어터미널을 삭제한다. 1.01 Controlling terminal Delete 제어 터미널을 없애기 위해서는 세션, ..
Android Forensic [/Data 추출] 보호되어 있는 글입니다.
pydbg 보호되어 있는 글입니다.
Makefile 보호되어 있는 글입니다.
python lambda [(lambda x : x*x) (x) for x in range(10)] 람다~ 축약함수for문하고 합치면 편하다.