일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Server Side Request Forgery
- php To Do List
- BANDiT
- file upload
- php 로그인 페이지 만들기
- Cryptography
- sql injection
- privilege escalation
- Recon
- php
- SQLi
- OS Command Injection
- tryhackme
- over the wire
- War Game
- access control
- active reconnaissance
- Cookie
- php file upload
- php 파일 업로드하기
- active recon
- Leviathan
- Reconnaissance
- FTZ
- THM
- overthewire
- Authentication
- 파일 업로드 취약점
- php login page
- ssrf
Archives
- Today
- Total
목록postfix (1)
R's Hacking Daily Log
prefix & postfix
[prefix & postfix : 전위식 & 후위식] prefix : 연산자를 우선으로 수식을 나열 postfix : 피연산자를 우선으로 수식을 나열 infix : 흔히 사용하는 수식의 형태 (*연산자 = 사칙연산 수식 +, -, /, *) example) 우선순위에 맞게 괄호를 쳐서 나타내면 전위식&후위식을 계산 하는 데에 수월해진다. infix : A+B prefix : A+B → +AB postfix : A+B → AB+ infix : A+B*C → A+(B*C) → (A+(B*C)) prefix : +A*BC [(A+(B*C)) → (A+*(BC)) → +A*BC] postfix : ABC*+ [(A+(B*C)) → (A+(BC)*) → ABC*+] :: 수식에 포함된 모든 피연산자에 대해 괄호..
Daily-Note
2023. 3. 7. 21:18