Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- frida-dump
- ntwritefile
- windows kernel
- HOS
- ioploaddrivers
- 계산기
- elf 헤더
- return to libraty
- patchelf
- top chunk
- Android
- PLT
- sgerrand
- randtbl
- JOP
- dangling pointer
- brop
- kaslr
- fastbin
- windows
- RAO
- kernel debug
- SCP
- canary leak
- libc-database
- libc.so
- pwndbg
- WinDBG
- cmake
- house of force
Archives
- Today
- Total
목록SCP (1)
sh711 님의 블로그

로컬과 wsl로의 파일 전송 및 여러가지 테스트를 할때 주로 ssh를 통해 진행한다. SCP를 통한 파일 전송1. 단일 파일을 원격지로 전송할 때구문 : scp [옵션] [파일명] [원격지_id]@[원격지_ip]:[받는 위치]scp testfile [user]@[IP]:~/test 파일이 전송된 것을 확인 2. 여러 파일을 포함하고 있는 디렉터리를 원격지로 전송할 때구문 : scp [옵션] [디렉터리 이름] [원격지_id]@[원격지_ip]:[보낼 경로]scp -r scpTest [user]@[IP]:~/test 디렉터리가 전송된 것을 확인 3. 단일 파일을 원격지에서 로컬로 가져올 때구문 : # scp [옵션] [원격지_id]@[원격지_ip]:[원본 위치] [받는 위치]scp [user]@[IP]:~..
Tools/ssh
2025. 3. 4. 23:52