일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- base32
- Caesar Cipher
- Web Hacking
- Qrcode
- Mail Header injection
- burpsuit
- JavaScript
- vigenere cipher
- Masonic Cipher
- webhacking
- 비즈네르 암호
- AVR
- Navajo alphabet
- 시저 암호
- sha1
- base16
- sql injection
- php_extract
- Pigpen Cipher
- cookie
- Javscript
- 카이사르 암호
- Python
- Linux
- Fortran 90
- aslr
- overthewire
- reversing
- BASE64
- assembly
- Today
- Total
My Drive
// 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..
// ip_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_header..
// mac_address.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; void packet_handler(u_char *param, const struct pcap_pkthdr *header, const u_char *pkt_data); main(){pcap_if_t *a..