1. Tortoise Git 설치https://tortoisegit.org/ TortoiseGit – Windows Shell Interface to GitGet Support Manuals, FAQ, bug reporting, mailing list, and more…tortoisegit.org 2. GIT 설치https://git-scm.com/ Git git-scm.com 3. GIT 계정 설정git config --global user.name "이름"git config --global user.email "이메일"
1. 오라클 VirtualBox 다운로드https://www.virtualbox.org/ Oracle VM VirtualBoxWelcome to VirtualBox.org! News Flash New May 3rd, 2024VirtualBox 7.0.18 released! Oracle today released a 7.0 maintenance release which improves stability and fixes regressions. See the Changelog for details. New April 16th, 2024VirtualBox 7.0.16 releasedwww.virtualbox.org VirtualBox 및 설치 후 USB 사용을 위해 확장팩(Extension Pack)도 함께 ..
Chromdriver를 사용하도록 설정하기 if getattr(sys, 'frozen', False) and hasattr(sys, "_MEIPASS"): driver_path = os.path.join(sys._MEIPASS, "chromedriver.exe") driver = webdriver.Chrome() # print('running in a Pyinstaller bundle') else: driver = webdriver.Chrome() # print('running in a normal Python process') pyinstaller로 실행파일 생성 pyinstaller -w -F "파이썬 소스코드 경로"
라이브러리 설치 # pip install opencv-python # pip install tensorflow-datasets==4.6.0 # 'cats_vs_dogs'는 tfds 버전 4.6.0 에서 실행됨 # tfds 최신 버전 에러 해결 # pip install tfds-nightly import cv2 import matplotlib.pyplot as plt import tensorflow_datasets as tfds import tensorflow as tf 오류 발생시 # URL 변경 오류 시 다시 세팅 setattr(tfds.image_classification.cats_vs_dogs, '_URL',"https://download.microsoft.com/download/3/E/1/3E1C..
Window 로컬에서 설치가상 환경 생성python 버전 : 3.10 이상conda create -n 가상환경명 python==3.10 가상 환경 활성화conda activate mobSF MobSF Clonehttps://github.com/MobSF/Mobile-Security-Framework-MobSFgit clone https://github.com/MobSF/Mobile-Security-Framework-MobSF.git Settings.py 파일 내 JAVA 경로 수정JAVA_DIRECTORY = '자바 설치 경로' Python 라이브러리 설치1. Django 설치conda install -c conda-forge Django 2. MobSF 설정 1) setup.bat OpenSSL 오류..
Frida 설치1. anaconda 설치https://www.anaconda.com/download 2. 가상환경 생성conda create -n 가상환경명 python==3.7conda activate 가상환경명 3. 가상환경 내 Frida 설치pip install fridapip install frida-tools 4. 단말기 내에 frida 서버 설치 frida-server : https://github.com/frida/frida/releases adb push '다운받은 frida 서버' /data/local/tmp FRIDA 실행1. frida 실행adb shellsucd /data/local/tmpls -al./frida-server-설치버전 & Permission denied 오류 발생시 ..