일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- vigenere cipher
- AVR
- reversing
- 카이사르 암호
- JavaScript
- sha1
- cookie
- assembly
- aslr
- Linux
- Pigpen Cipher
- php_extract
- Javscript
- base16
- 시저 암호
- overthewire
- sql injection
- Fortran 90
- webhacking
- BASE64
- Masonic Cipher
- 비즈네르 암호
- Caesar Cipher
- Python
- Web Hacking
- Navajo alphabet
- burpsuit
- Qrcode
- Mail Header injection
- base32
- Today
- Total
목록linux (6)
My Drive
iptables 규칙을 이용해 트래픽을 NFQUEUE로 넘겨주면, 콜백형식으로 구현한 코드에서 패킷을 먼저 처리한 후에 내보낼 수 있음. (패킷 분석 및 조작 가능)ex) - 웹페이지의 응답 패킷을 받아서 원하는 내용의 웹페이지가 뜨도록 내용 변조- 특정 패킷은 drop시켜서 받지 못하도록 libnetfilter 설치 http://www.netfilter.org/projects/libnfnetlink/downloads.html>> yum install bzip2>> tar –xvf libnfnetlink-1.0.1.tar.bz2>> cd libnfnetlink-1.0.1>> ./configure --prefix=/usr>> make>> make install libmnl 설치 http://www.netf..
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..
컴파일gcc -Wall -o vulnerable vulnerable.c 권한 부여sudo chown root: vulnerablesudo chmod u+s vulnerable 스택 컴파일 옵션gcc -o bookw0rm b.c -fno-stack-protector -z execstack -fno-builtin -mpreferred-stack-boundary=2 [스택 보호 ] [스택 실행= DEP] [까나리 해제] dep 없애기 echo 0 > /proc/sys/kernel/exec-shield ASLR 없애기 echo 0 > /proc/sys/kernel/exec-shield-randomize sysctl -w kernel.randomize_va_space=
open ssh 설치 (putty 에서도 접속할 수 있게)sudo apt-get install openssh-server APM 설치>> sudo apt-get install apache2>> sudo apt-get install mysql-client mysql-server>> sudo apt-get install php5 php5-common>> sudo apt-get install libapache2-mod-php5>> sudo apt-get install php5-mysql