Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 러닝스칼라
- Shellcode
- c
- 웹해킹
- 인공지능
- hacking
- 백엔드
- backend
- BOF
- Javascript
- flask
- 파이썬
- Web
- 리눅스
- hackthissite
- Linux
- c++
- hackerschool
- ChatGPT
- BOF 원정대
- deep learning
- webhacking
- 경제
- 챗GPT
- mysql
- php
- Python
- Scala
- 딥러닝
- 러닝 스칼라
Archives
- Today
- Total
목록전체 글 (206)
jam 블로그
[시스템] shellcode 모음 사이트
http://shell-storm.org/shellcode/ 위 사이트를 참고 하세요~
해킹/시스템
2014. 9. 25. 09:58
[Archlinux] nodejs 컴파일(compile, make) 시 openssl 오류 난다면?
nodejs make 시에 openssl 오류가 난다면 # ./configure \ --shared-openssl \ --shared-openssl-includes=/usr/include/openssl \ --shared-openssl-libpath=/usr/lib 위와 같이 옵션을 추가하면 됩니다.
시스템/리눅스
2014. 8. 14. 15:08
[javascript] form 타입을 json으로 변형하기
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..
개발 및 관련 자료/HTML&CSS&Javascript
2014. 7. 21. 13:16