'System' 카테고리의 다른 글
Intel x86 Assembler Instruction Set Opcode Table (0) | 2018.09.13 |
---|---|
python binary 데이터 (0) | 2018.09.11 |
python으로 서버 시간 알아내는 방법 (2) | 2018.09.10 |
qemu mips 실행 (0) | 2018.08.20 |
환경변수 LD_PRELOAD를 이용한 후킹 (0) | 2018.07.18 |
Intel x86 Assembler Instruction Set Opcode Table (0) | 2018.09.13 |
---|---|
python binary 데이터 (0) | 2018.09.11 |
python으로 서버 시간 알아내는 방법 (2) | 2018.09.10 |
qemu mips 실행 (0) | 2018.08.20 |
환경변수 LD_PRELOAD를 이용한 후킹 (0) | 2018.07.18 |
The kernel’s command-line parameters (0) | 2020.02.01 |
---|---|
python binary 데이터 (0) | 2018.09.11 |
python으로 서버 시간 알아내는 방법 (2) | 2018.09.10 |
qemu mips 실행 (0) | 2018.08.20 |
환경변수 LD_PRELOAD를 이용한 후킹 (0) | 2018.07.18 |
The kernel’s command-line parameters (0) | 2020.02.01 |
---|---|
Intel x86 Assembler Instruction Set Opcode Table (0) | 2018.09.13 |
python으로 서버 시간 알아내는 방법 (2) | 2018.09.10 |
qemu mips 실행 (0) | 2018.08.20 |
환경변수 LD_PRELOAD를 이용한 후킹 (0) | 2018.07.18 |
response 메시지 헤더에 있는 서버 시간정보 값을 가져온다.
strptime() : 문자열을 날짜/시간으로 변환
mktime() : 일시를 초 단위 시간으로 변환
1 2 3 4 5 6 7 8 9 10 | import urllib2 import time date = urllib2.urlopen('http://www.google.com').headers['Date'] print date time = int(time.mktime(time.strptime(date, '%a, %d %b %Y %H:%M:%S %Z'))) print time | cs |
Intel x86 Assembler Instruction Set Opcode Table (0) | 2018.09.13 |
---|---|
python binary 데이터 (0) | 2018.09.11 |
qemu mips 실행 (0) | 2018.08.20 |
환경변수 LD_PRELOAD를 이용한 후킹 (0) | 2018.07.18 |
qemu arm 실행 (0) | 2018.05.10 |