├── .gitattributes ├── .gitignore ├── README.md └── solid_cover.jpg /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | 7 | # Standard to msysgit 8 | *.doc diff=astextplain 9 | *.DOC diff=astextplain 10 | *.docx diff=astextplain 11 | *.DOCX diff=astextplain 12 | *.dot diff=astextplain 13 | *.DOT diff=astextplain 14 | *.pdf diff=astextplain 15 | *.PDF diff=astextplain 16 | *.rtf diff=astextplain 17 | *.RTF diff=astextplain 18 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Windows thumbnail cache files 2 | Thumbs.db 3 | ehthumbs.db 4 | ehthumbs_vista.db 5 | 6 | # Folder config file 7 | Desktop.ini 8 | 9 | # Recycle Bin used on file shares 10 | $RECYCLE.BIN/ 11 | 12 | # Windows Installer files 13 | *.cab 14 | *.msi 15 | *.msm 16 | *.msp 17 | 18 | # Windows shortcuts 19 | *.lnk 20 | 21 | # ========================= 22 | # Operating System Files 23 | # ========================= 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 화이트 해커를 위한 웹 해킹의 기술 2 | 3 | 소스코드 다운로드 4 | https://bjpublic-my.sharepoint.com/:f:/g/personal/bjpublic_bjpublic_co_kr/EvfjnnSYqI9AoKdEXxYRFzcB-JCYK-cQtA9uGVmLOw3FXQ?e=wJ1G6M 5 | -------------------------------------------------------------------------------- /solid_cover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bjpublic/whitehacker/9f57b890d1a4b331c8f7322f0e1e2b1092cfd03d/solid_cover.jpg --------------------------------------------------------------------------------