일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 챗GPT
- hackerschool
- Javascript
- Shellcode
- 경제
- c
- backend
- Linux
- hacking
- ChatGPT
- 러닝스칼라
- php
- 백엔드
- 인공지능
- BOF 원정대
- hackthissite
- 웹해킹
- c++
- Scala
- 리눅스
- Python
- webhacking
- 딥러닝
- mysql
- deep learning
- BOF
- flask
- 러닝 스칼라
- 파이썬
- Web
- Today
- Total
목록전체 글 (213)
jam 블로그
problem : when big files download, browser display 404 Error. SolutionIf big file is shared from friends or other people.1. open big file like click link2. open your google drive web page3. click the recent and make duplicate big files.4. download duplicated big files. If big file is just yours, I think start no 3. =============================================================문제점 : 큰 파일을 받으려고 할 때..
아래와 같이 앞에 옵션을 주시고 clone 해주시면 됩니다. env GIT_SSL_NO_VERIFY=true git clone https://git주소
http://shell-storm.org/shellcode/ 위 사이트를 참고 하세요~
nodejs make 시에 openssl 오류가 난다면 # ./configure \ --shared-openssl \ --shared-openssl-includes=/usr/include/openssl \ --shared-openssl-libpath=/usr/lib 위와 같이 옵션을 추가하면 됩니다.
form data를 json으로 변경해주는 소스 예제파일입니다. /* form data to json */ $.fn.serializeObject = function() { var o = {}; var a = this.serializeArray(); $.each(a, function() { if (o[this.name] !== undefined) { if (!o[this.name].push) { o[this.name] = [o[this.name]]; } o[this.name].push(this.value || ''); } else { o[this.name] = this.value || ''; } }); return o; }; var json_val = JSON.stringify($("Formdata").s..