반응형

해킹 9

Ubuntu에 docker설치방법

Docker 설치방법   1. 우분투 시스템 패키지 업데이트 sudo apt-get update 2. 필요한 패키지 설치 sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-properties-common 3. Docker의 공식 GPG키를 추가curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add -  4. Docker의 공식 apt 저장소를 추가 sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) s..

해킹/해킹기초 2025.02.08

[Bandit-OverTheWire] Level7 -> Level8

Bandit Level 7 → Level 8 Level Goal The password for the next level is stored in the file data.txt next to the word millionth Commands you may need to solve this level man, grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd   data.txt파일이 있다. cat실행해보니 파일내용이 아주 많았다. in the file data.txt next to the word millionth millionth문자를 검색하는 리눈스 명령어 grep.    비밀번호 획득~!  * grep 명령어로 특정 문자 검색하기   grep..

해킹/해킹기초 2025.02.07

리눅스 find 명령어 완벽 정리! 초보부터 실무까지

🐧 리눅스 find 명령어 완벽 정리! 초보부터 실무까지 📂리눅스에서 파일을 찾는 가장 강력한 명령어 find!사용법부터 실전 예제까지 한 번에 정리해드립니다.✅ find 명령어란?리눅스에서 파일 및 디렉터리를 검색하는 강력한 명령어입니다.다양한 옵션과 조합을 사용해 파일 이름, 크기, 생성 날짜, 권한 등으로 세밀하게 검색할 수 있습니다.🔹 기본 사용법bash복사편집find [검색할 디렉터리] [옵션] [조건] 예제: 현재 디렉터리에서 모든 파일 찾기bash복사편집find . . (점)은 현재 디렉터리를 의미합니다.🏆 find 명령어 핵심 옵션 10가지📌 1. 특정 파일 이름으로 찾기bash복사편집find /path/to/search -name "파일명" 예제: test.txt 찾기bash복사..

해킹/해킹기초 2025.02.06

[Bandit-OverTheWire] Level5 -> Level 6

Bandit Level 5 → Level 6 Level Goal The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties: human-readable 1033 bytes in size not executable Commands you may need to solve this level    디렉토리가 너무 많다.사용해야할 명령어 : find많은 디렉터리 속에 조건에 맞는 파일을 하나 찾아야 함.find [경로] [옵션] : 해당 경로에 있는 파일을 옵션에 맞게 검색. find 명령어를 사용하여 1033 bytes인 파일을 찾기  ba..

해킹/해킹기초 2025.02.06

SSH 프로그램(PUTTY대신 MobaXterm)

putty를 사용하다보니www.putty.org  Download PuTTY - a free SSH and telnet client for WindowsIs Bitvise affiliated with PuTTY? Bitvise is not affiliated with PuTTY. We develop our SSH Server for Windows, which is compatible with PuTTY. Many PuTTY users are therefore our users as well. From time to time, they need to find the PuTTY download link. Wwww.putty.org 로그아웃하면 창이 닫혀져서 불편한 면이 있어서다른 SSH프로그램을 찾아보았다...

해킹/해킹기초 2025.02.06

[Bandit-OverTheWire] Level 0 -> Level 1

해킹을 하려면 리눅스와 먼저 친해져야한다.윈도우와는 다르기때문에 리눅스와 해킹의 기초를 위해 추천받은 사이트가 Banditwar이다.레벨별로 문제를 푸는 형식으로 되어있다. https://overthewire.org/wargames/bandit/ Bandit The Bandit wargame is aimed at absolute beginners. It will teach the basics needed to be able to play other wargames. If you notice something essential" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/" data-og..

해킹/해킹기초 2025.02.06
반응형