반응형

2025/02/06 9

리눅스 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] Level6 -> Level7

Bandit Level 6 → Level 7 Level Goal The password for the next level is stored somewhere on the server and has all of the following properties: owned by user bandit7 owned by group bandit6 33 bytes in size Commands you may need to solve this level ls , cd , cat , file , du , find , grep  user가 bandit7인 것을 찾으니 permission denied가 나오면서 화면이 가득 채워짐.리눅스에서 쓰레기통명령인 2>/dev/null을 사용  에러명령어가 나타나지 않게 하려면 Fil..

카테고리 없음 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

[Bandit-OverTheWire] Level4 -> Level 5

Bandit Level 4 → Level 5 Level Goal The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “reset” command. Commands you may need to solve this level ls , cd , cat , file , du , find cat명령어를 썼지만 읽혀지지가 않았다.사용할 리눅스 명령어: type확인하기    bandit4@bandit:~/inhere$ file ./*   7번파일이 읽을수있는 파일임.    bandit4@bandit:~/inhere$..

카테고리 없음 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
반응형