일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Web Hacking
- base16
- burpsuit
- Fortran 90
- overthewire
- AVR
- Qrcode
- Navajo alphabet
- Caesar Cipher
- Masonic Cipher
- php_extract
- 카이사르 암호
- Linux
- Mail Header injection
- JavaScript
- webhacking
- cookie
- 시저 암호
- sha1
- 비즈네르 암호
- reversing
- assembly
- Pigpen Cipher
- sql injection
- Javscript
- vigenere cipher
- BASE64
- base32
- Python
- aslr
- Today
- Total
My Drive
web server 설치>> yum install httpd>> service httpd start>> yum install php>> yum install php-mysql web server http 포트변경 (80 -> 8080)>> vi /etc/httpd/conf/httpd.conf 수정- Listen 8080>> vi /etc/httpd/conf/httpd.conf 마지막에 추가------------------------------------------------------# Virtual hostsInclude conf/extra/httpd-vhosts.conf------------------------------------------------------>> mkdir /etc/httpd/..
MariaDB 5.5 설치>> yum -y install mariadb-server mariadb>> systemctl start mariadb>> systemctl enable mariadb * mysql –u root –p 로 접속 안될시- mysql –u root로 접속 후, use mysql;- update user set password=password('**********') where user='root';- flush privileges; python connector 설치>> yum install mysql-connector-python--------------------------------------------------------------------------------------..
1. http://ftp.daumkakao.com/centos/7.2.1511/isos/x86_64/에서 CentOS Minimal 버전 다운 (CentOS-7-x86_64-Minimal-1511.iso) 후 설치 2. vi /etc/selinux/config- SELINUX=disabled 로 변경 후 재부팅 3. vi /etc/sysconfig/network-scripts/ifcfg-enp3s0- ONBOOT=yes로 변경 후 service network restart 4. 패키지 설치- yum install epel-release- yum update- yum install net-tools- yum install ntp- yum groupinstall 'Development Tools' 5. nt..