'전체 글'에 해당되는 글 589건

lofty87.tistory.com/39

 

FTP 설치 (FileZilla 접속)

​1. vsftpd 설치 [root@localhost~]# yum install vsftpd 2. /etc/vsftpd/vsftpd.conf 환경설정 (yum vsftpd 설치시 기본경로) [root@localhost~]# vi /etc/vsftpd/vsftpd.conf > anonymous_enable=no (익명유..

lofty87.tistory.com

sssssssssssssssss.tistory.com/424

 

frp active 능동모드 passive 수동모드

파일 전송 프로토콜(File Transfer Protocol, FTP)은 TCP/IP 프로토콜을 가지고 서버와 클라이언트 사이의 파일 전송을 하기 위한 프로토콜이다. 파일 전송 프로토콜은 TCP/IP 프로토콜 테이블의 응용

sssssssssssssssss.tistory.com

 

 

'경로 및 정보' 카테고리의 다른 글

Subdomain Finder URL  (0) 2020.12.06
IIS Crypto 설정 툴(비영리)  (0) 2020.11.25
크롬 UTF 인코딩 확장  (0) 2020.11.08
Kubernetes Nginx Ingress Controller  (0) 2020.01.06
A Practical Attack Framework  (0) 2019.11.21
블로그 이미지

wtdsoul

,

DNS 캐시 포이즈닝 CVE

CVE 2020. 11. 19. 11:44

 

www.boho.or.kr/data/secNoticeView.do?bulletin_writing_sequence=35790

 

KISA 인터넷 보호나라&KrCERT

KISA 인터넷 보호나라&KrCERT

www.boho.or.kr

 

 

'CVE' 카테고리의 다른 글

Zero To Logon, Domain  (0) 2021.08.25
MS Exchange Server 취약점 건  (0) 2021.03.11
trendmicro UAF  (0) 2020.11.19
SMB Ghost 취약점 분석(KISA)  (0) 2020.10.14
CVE-2020-1472 취약점 분석 글 (경로 참고)  (0) 2020.10.08
블로그 이미지

wtdsoul

,

m.blog.naver.com/PostView.nhn?blogId=chandong83&logNo=220919119436&proxyReferer=https:%2F%2Fwww.google.com%2F

 

apk 추출시 퍼미션 에러 해결하기

포켓몬 고(PokeMon Go)의 APK를 추출하다 보니 문제가 생겼다. 바로 퍼미션 문제! 일단 뭐 패키지 위...

blog.naver.com

 
(추가)

다음 명령어로 안드로이드 쉘에 접속한다.

$ adb shell

 

접속된 안드로이드 쉘에서 다음 명령을 실행하면 /system을 rw로 마운트 할 수 있다.

$ su -

# /system/bin/mount -o remount,rw /system

 

다시 read only로 바꾸려면 다음과 같은 명령어를 실행한다.

# /system/bin/mount -o remount,ro /system



출처: https://dcmru.tistory.com/2511061 [Everything is possible]

$ adb shell android $ cp /data/app/com.nianticlabs.pokemongo-1/base.apk /sdcard/

 

이제 복사할 수 있는 영역으로 넘어 간 것이다.
adb를 빠져나와 다음과 같이 명령을 실행하면 된다.

$ adb pull /sdcard/base.apk

 

본인도 갤럭시7이 테스트 기기인데 동일한 접근 제한이 걸려서 해당 방법으로 기기 내 파일을 추출함

 

cp /data/data/~~/~file~/ /sdcard

adb pull /sdcard/~file/ E:\test

블로그 이미지

wtdsoul

,