일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- backend
- c
- 러닝 스칼라
- deep learning
- BOF
- php
- Linux
- mysql
- BOF 원정대
- Python
- hackerschool
- 백엔드
- flask
- Shellcode
- c++
- Web
- 인공지능
- Scala
- 챗GPT
- 웹해킹
- hacking
- 리눅스
- webhacking
- 딥러닝
- ChatGPT
- 러닝스칼라
- 파이썬
- Javascript
- 경제
- hackthissite
- Today
- Total
목록전체 글 (206)
jam 블로그
ftp를 설정한 폴더를 홈페이지에 연결 하고 싶을 경우 lighttpd.conf를 고쳐야 합니다. 예를 들어 다음과 같이 폴더가 되어있다고 생각해봅시다. www/ 폴더 아래에 image 파일을 만들고 외부 폴더를 심볼릭링크를 연결합니다. ln -sf [원본의 경로] [심볼릭 링크 경로] ln -sf /tmp/image image 그다음 먼전 lighttpd를 서비스를 끕시다. killall lighttpd 그리고 conf 파일 설정을 변경합니다. vi /etc/lighttpd.conf server.modules = { mod_alias,mod_auth,mod_fastcgi}를 추가 또는 주석해제를 해줍니다. 그리고 문서 마지막에 심볼릭관련해서 정보를 넣어줍니다. alias.url = ( "/image" ..
자주 까먹어서 구글에서 찾은 다음 여기에 기록합니다. 굵은 글씨와 같이 link 태그를 사용하시면 됩니다. rel에 타입, href에는 경로를 넣어서 쓰시면 됩니다.
다음 문제의 소스입니다. /* The Lord of the BOF : The Fellowship of the BOF - dark knight - remote BOF */ #include #include #include #include #include #include #include #include #include main() { char buffer[40]; int server_fd, client_fd; struct sockaddr_in server_addr; struct sockaddr_in client_addr; int sin_size; if((server_fd = socket(AF_INET, SOCK_STREAM, 0)) == -1){ perror("socket"); exit(1); } server..