일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Recon
- overthewire
- php login page
- OS Command Injection
- file upload
- php 파일 업로드하기
- 파일 업로드 취약점
- php
- SQLi
- Leviathan
- php 로그인 페이지 만들기
- sql injection
- access control
- Authentication
- ssrf
- Server Side Request Forgery
- THM
- FTZ
- BANDiT
- over the wire
- tryhackme
- active recon
- Reconnaissance
- War Game
- Cryptography
- Cookie
- php To Do List
- php file upload
- active reconnaissance
- privilege escalation
Archives
- Today
- Total
목록find (1)
R's Hacking Daily Log
find / -type -perm -ls
root 권한이 설정된 파일을 찾는 명령을 실행한다고 웬 find commnad를 실행하는 걸 본 적이 있다. 단순하게 파일 이름 갖다 위치를 찾는 정도로만 사용하던 find에 뭔가가 길게 나열되니 생소했던 기억.. 오늘은 그 command에 대해 간단히 기록해보자. find / -type f -perm -04000 -ls 2>/dev/null 1. " / " root directory 기준으로 아래에 있는 모든 경로에 대해. 결국 모든 디렉토리를 대상으로 내가 찾고 싶은 파일 찾을 거야!!라는 의미 2. -type : 찾아볼 대상의 유형을 지정 f = file & d = directory 찾고자하는 파일이 있을 경우는 f로 지정하면 된다. (반대의 경우는 d) 3. -perm : permissions ..
Daily-Note
2023. 3. 9. 14:09