일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- c
- 러닝스칼라
- backend
- Javascript
- hackerschool
- Web
- 러닝 스칼라
- BOF
- c++
- 백엔드
- Scala
- 인공지능
- flask
- Shellcode
- Python
- ChatGPT
- 파이썬
- Linux
- 딥러닝
- mysql
- php
- webhacking
- 웹해킹
- 경제
- deep learning
- 리눅스
- hackthissite
- BOF 원정대
- 챗GPT
- hacking
- Today
- Total
목록전체보기 (206)
jam 블로그
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..
2002 MySQL 서버에 로그인할 수 없습니다. 와 같이 phpmyadmin에서 접속이 되지 않을 경우 해결 방법입니다. php.ini 안에 다음과 같이 변경해줍니다. mysql.default_socket =/var/lib/mysql/mysql.sock mysqli.default_socket =/var/lib/mysql/mysql.sock 그다음 apache 또는 php-fpm을 재시작 해주시면 해결됩니다.
1. centos 설치시에 basic server로 설치 2. 첫번째 스크립트를 돌립니다. hostname에 주소를 넣어줍니다. #!/bin/sh hostname = "" cd /usr/local/src wget -O /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 https://www.fedoraproject.org/static/0608B895.txt rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 rpm -Uvh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm touch /etc/yum.repos.d/PUIAS_6_computational.repo echo "[P..