본문 바로가기

Hacking & Security

(31)
[ Security_Windows ] _ETHREAD 구조체. _ETHREAD 구조체 lkd> dt nt!_ETHREAD +0x000 Tcb : _KTHREAD +0x1c0 CreateTime : _LARGE_INTEGER +0x1c0 NestedFaultCount : Pos 0, 2 Bits +0x1c0 ApcNeeded : Pos 2, 1 Bit +0x1c8 ExitTime : _LARGE_INTEGER +0x1c8 LpcReplyChain : _LIST_ENTRY +0x1c8 KeyedWaitChain : _LIST_ENTRY +0x1d0 ExitStatus : Int4B +0x1d0 OfsChain : Ptr32 Void +0x1d4 PostBlockList : _LIST_ENTRY +0x1dc TerminationPort : Ptr32 _TERMINATIO..
[ Security_Windows ] _EPROCESS 구조체. _EPROCESS 구조체 lkd> dt nt!_EPROCESS nt!_EPROCESS +0x000 Pcb : _KPROCESS +0x06c ProcessLock : _EX_PUSH_LOCK +0x070 CreateTime : _LARGE_INTEGER +0x078 ExitTime : _LARGE_INTEGER +0x080 RundownProtect : _EX_RUNDOWN_REF +0x084 UniqueProcessId : Ptr32 Void // ProcessID +0x088 ActiveProcessLinks : _LIST_ENTRY // ProcessList +0x090 QuotaUsage : [3] Uint4B +0x09c QuotaPeak : [3] Uint4B +0x0a8 CommitCharge..
[ Security_Windows ] Windows System Call Table. Windows System Call Table.
[ Security_Windows ] Listing of the NT Native API functions. Listing of the NT Native API functions.
[ Security_Linux ] php.ini 내용. [PHP.ini] ;;;;;;;;;;;;;;;;;;;;;;; ; 이 파일에 대해 ;;;;;;;;;;;;;;;;;;;;;;; ; ; 이것은 추천 되는 설정을 기술한 PHP 4 스타일의 php.ini-dist 파일 이다. ; 이 안에는 PHP 를 보다 유용하고 안전하게 해 ; 그를 지원하기 위한 약간 비표준의 설정이 있다. ; ; 이러한 설정을 실시하는 일에 의해, 몇개의 어플리케이션에 대해 ; PHP 의 호환성이 없어지거나 또 개발이 곤란하게 되는 일도 있을 지도 모르다. ; ; 그런데도 이 파일의 설정을 추천하고 싶다. ; ; 표준 설정으로부터 변경하는 곳은 모두 자세하게 설명하고 있으므로, ; 각각의 엔트리에 대해서 채용해야할 것인가 어떤가를 심사숙고해 주었으면 한다. ; ; php.ini 파일에 관한..
[ Security_Linux ] 아파치 환경설정 파일(httpd.conf) 완벽 가이드. httpd.conf 파일은 크게 세부분으로 나누어져 있다. Section 1: Global Environment : 아파치 전체적인 영향이 미치는 설정 Section 2: 'Main' server configuration : 주 서버에 대한 설정 Section 3: Virtual Hosts : 가상 호스트에 대한 설정 자, 그럼 이제부터 이 아파치웹서버의 모든 환경을 설정하는 아파치환경파일 httpd.conf파일의 설정방법에 대해서 상세히 알아보도록 하자. ### Section 1: Global Environment 전제환경설정 파트로 Section 1에서 설정하는 것들은 아파치 웹서버에 전반적인 영향을 미친다. ServerType standalone 서버의 구동방법으로는 standalone과 inetd..
[ Security_Linux ] mysql root 패스워드 변경. [root@ubuntu ~]# mysql -uroot -p mysql> use mysql; mysql> update user set password=password('암호') where user='root'; mysql> flush privileges; [root@ubuntu ~]# /etc/init.d/mysql restart