일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- aslr
- BASE64
- sha1
- JavaScript
- Pigpen Cipher
- webhacking
- 비즈네르 암호
- Web Hacking
- base16
- vigenere cipher
- base32
- AVR
- Qrcode
- sql injection
- 시저 암호
- Mail Header injection
- Linux
- Python
- Caesar Cipher
- Fortran 90
- 카이사르 암호
- cookie
- Javscript
- burpsuit
- Masonic Cipher
- php_extract
- overthewire
- assembly
- Navajo alphabet
- reversing
- Today
- Total
목록분류 전체보기 (75)
My Drive
1. -(dash)들어간 파일명 다루기ex) cat ./- 2. find 명령에서 size 다루기* 사이즈 단위 - b : 블록단위- c : byte- k : kbyte- w : 2byte 워드ex) find -size 1033c 3. sort 명령으로 파일 정렬ex) sort data.txt 4. uniq 명령으로 중복된 열 삭제* 옵션-d : 중복되어 나오는 라인 중 한 열만 출력-D : 중복되는 모든 열을 출력-u : 중복 열이 없는 것만 출력ex) uniq -u 5. 압축파일 magic값1f 8b : gz42 5a 68 (BZh) : bz2 6. ssh -i 옵션[-i identity_file]ex) ssh bandit14@localhost -Q ./sshkey.private* identity_f..
Download page : http://www.sublimetext.com/2 * SFTP 설정Console 창 : Ctrl + `명령어 : import urllib2,os; pf='Package Control.sublime-package'; ipp=sublime.installed_packages_path(); os.makedirs(ipp) if not os.path.exists(ipp) else None; urllib2.install_opener(urllib2.build_opener(urllib2.ProxyHandler())); open(os.path.join(ipp,pf),'wb').write(urllib2.urlopen('http://sublime.wbond.net/'+pf.replace(' ',..
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..
//pkt_send.c #include #include #include #include #include // #include typedef struct mac_address {u_char byte1;u_char byte2;u_char byte3;u_char byte4;u_char byte5;u_char byte6;}mac_address; typedef struct ip_address{u_char byte1;u_char byte2;u_char byte3;u_char byte4;}ip_address; typedef struct ip_header{u_char ver_ihl;u_chartos;u_short tlen;u_short identification;u_short flags_fo;u_charttl;u_ch..
//pkt_dump.c #include "pcap.h" typedef struct mac_address {u_char byte1;u_char byte2;u_char byte3;u_char byte4;u_char byte5;u_char byte6;}mac; #define ETHER_ADDR_LEN6struct ether_header{u_char ether_dhost[ETHER_ADDR_LEN];u_char ether_shost[ETHER_ADDR_LEN];u_short ether_type;}eth; typedef struct ip_address{u_char byte1;u_char byte2;u_char byte3;u_char byte4;}ip_address; typedef struct ip_header{u..
// udp_header.c #include "pcap.h" typedef struct mac_address {u_char byte1;u_char byte2;u_char byte3;u_char byte4;u_char byte5;u_char byte6;}mac; #define ETHER_ADDR_LEN6struct ether_header{u_char ether_dhost[ETHER_ADDR_LEN];u_char ether_shost[ETHER_ADDR_LEN];u_short ether_type;}eth; typedef struct ip_address{u_char byte1;u_char byte2;u_char byte3;u_char byte4;}ip_address; typedef struct ip_heade..
// tcp_header.c #include "pcap.h" typedef struct mac_address {u_char byte1;u_char byte2;u_char byte3;u_char byte4;u_char byte5;u_char byte6;}mac; #define ETHER_ADDR_LEN6struct ether_header{u_char ether_dhost[ETHER_ADDR_LEN];u_char ether_shost[ETHER_ADDR_LEN];u_short ether_type;}eth; typedef struct ip_address{u_char byte1;u_char byte2;u_char byte3;u_char byte4;}ip_address; typedef struct ip_heade..