일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- 파일 업로드 취약점
- Reconnaissance
- php To Do List
- php
- overthewire
- War Game
- FTZ
- php file upload
- THM
- OS Command Injection
- over the wire
- php 파일 업로드하기
- BANDiT
- php 로그인 페이지 만들기
- php login page
- file upload
- Recon
- SQLi
- access control
- tryhackme
- Cryptography
- active reconnaissance
- ssrf
- Cookie
- Leviathan
- sql injection
- Authentication
- privilege escalation
- active recon
- Server Side Request Forgery
- Today
- Total
R's Hacking Daily Log
ls command 본문
[ ls ]
: 현재 directory를 기준으로, 존재하는 file을 list
: 결과로 file&directory가 출력
: 기본적으로 file name만 output으로 나옴
: ls command를 사용할 때, 많이 사용하는 option을 간단히 살펴보자.
: 추가적인 option은 " ls --help " or " man ls " 로 확인해볼 수 있다.
option ]
: option을 사용하기 전에 ls command의 default output을 확인하자.
[ ls ]
현재 directory에 있는 file or directory name이 출력된다.
[ ls -a ] " . "으로 시작하는 이름의 file&directory를 포함해서 output을 출력
-a option을 사용하지 않았을 때와 비교해 보면,
" . "으로 시작하는 이름의 file&directory가 포함되어 output으로 출력되는 것을 볼 수 있다.
[ ls -l ] file or directory의 information을 포함하여 list형식으로 출력
-l option을 사용하면 각 file(or directory)에 대한 권한, size, 수정 일시 등의 정보를 포함하여 output을 출력한다.
[ ls -al ] ls command에 a, l option을 동시에 사용
▼
현재 위치에서 " . "으로 시작하는 file&directory를 모두 포함하여
간단한 정보와 함께 list 하는 것을 볼 수 있다.
directory에 command 사용해보기 ]
directory에 ls command를 사용하면 해당 directory 안에 있는 file & directory에 대한 내용이 출력된다.
file에 command 사용해보기 ]
file에는 왠만해서 ls command를 단독으로 사용하기 보다 option을 함께 사용하는 경우가 대부분이다.
(directory가 아니라서 딱히 list시킬 내용이 없기 때문에)
특히 -l option을 사용하여 해당 file에 대한 권한을 확인하는 경우가 많다.
'Tool & Command' 카테고리의 다른 글
Gobuster (0) | 2023.01.20 |
---|---|
Pytorch(install error) (0) | 2023.01.18 |
Chmod command (0) | 2023.01.13 |
Kali Linux 설치 (0) | 2022.12.17 |
Nmap (0) | 2022.10.13 |