| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | 5 | ||
| 6 | 7 | 8 | 9 | 10 | 11 | 12 |
| 13 | 14 | 15 | 16 | 17 | 18 | 19 |
| 20 | 21 | 22 | 23 | 24 | 25 | 26 |
| 27 | 28 | 29 | 30 | 31 |
- svn update
- why error
- javascript
- h5py.File
- idb2pat
- Ransomware
- error
- ida pro
- Rat
- x64
- Python
- idapro
- mock.patch
- 포인터 매핑
- idapython
- malware
- error fix
- TensorFlow
- commandline
- debugging
- open office xml
- hex-rays
- NumPy Unicode Error
- Injection
- Analysis
- data distribution
- MySQL
- pytest
- ida
- ecma
- Today
- Total
목록2013/01 (2)
13 Security Lab
소켓통신중 패킷의 헤더에 데이터 파일의 전체 길이를 담기위해 파일 크기를 구하는 방법을 찾게되었다 stat함수 이용 #include #include #include #include int main() { struct stat buf; int ret; ret = stat("test.c", &buf); if ( ret != 0 ) { perror("stat()"); exit(errno); } printf("len = %ld\n", buf.st_size); return 0; } 파일포인터의이동#include int main() { FILE *fp; fp = fopen("test.c", "rb"); fseek(fp, 0L, SEEK_END); printf("%ld \n", ftell(fp)); fclose(fp..
요구사항 Set Top Box(리눅스) - 윈도우(PC) 간 네트웍 연결셋톱박스 setup파일 pc로 자동 설치 윈도우 공유폴더 cifs 관련 링크upnphttp://onecellboy.tistory.com/2 upnp개요, 관련문서 블로그 http://www.upnp.org/ upnp포럼 http://blog.naver.com/serenax?Redirect=Log&logNo=60008033593 계층및 서비스 설명http://kldp.org/node/124739http://kurapa.com/content_UPnP upnp공부http://blog.naver.com/PostView.nhn?blogId=wisdomcolor&logNo=90095421467&redirect=Dlog&widgetTypeCall..