본문 바로가기
  • Tried. Failed. Logged.
728x90

분류 전체보기720

디지털 포렌식 - USB 접속 기록 확인 장치 관리자 장치 관리자 - 보기(V) - 숨겨진 장치 표시(W) 디스크 드라이브 - 우클릭 속성(R) - 자세히 - 마지막 제거 날짜   레지스트리 HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\USBSTOR -확인가능 정보 : USB의 Unique Instance 및 USBSTOR의 Subkey를 분석할 경우 이미 해당 시스템에서 사용하거나 사용했던 USB 장치를 확인   HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Enum\USB -확인가능 정보 : USBSTOR에서 확인한 USB의 Unique Instance를 찾으면 USB의 제조사 아이디(VID)와 제품ID(PID) 확인 가능   HKEY_LOCAL_MACHINE\SOFTWARE\Mi.. 2022. 9. 12.
파이썬 - APScheduler 스케줄 from apscheduler.schedulers.background import BackgroundScheduler scheduler = BackgroundScheduler(daemon=True, timezone='Asia/Seoul') scheduler.start() scheduler.add_job(custom_function, 'date', run_date="2022-09-12 10:10:00", args=[1, '2', [3]]) 참고: https://mkwilson.tistory.com/215 Python APScheduler 스케줄 설정 python 에서 스케줄을 적용할때는 보통 리눅스의 cron 을 사용하였다 좀더 편한 방법을 찾던중 파이썬내에서 스케줄을 제어 할 수 있는 라이브러리가 있었다.. 2022. 9. 12.
파이썬 - APScheduler 스케줄 모듈 if obj.zone == 'local': 에러 해결 방법 sched = BlockingScheduler(timezone='Asia/Seoul') sched.add_job(job,'interval', seconds=3, id='test',args=['hello?']) sched.start() BlockingScheduler(timezone='Asia/Seoul') timezone을 한국으로 설정해준다. 출처: https://ffoorreeuunn.tistory.com/466 [ Python ] 파이썬 스케줄러 작성하기(APScheduler) - BlockingScheduler | 파이썬 반복 작업 수행 서버 위에서 항상 돌아가는 프로그램을 만드는 중이다. 해당 프로그램이 하위 프로세스를 만들어서 계속해서 어떤 동작을 수행 후 데이터를 출력하고 있다. 이때, wh.. 2022. 9. 12.
리눅스 - network manager의 dns 자동 변경 비활성화 NetWorkManager 비활성화 sudo vim /etc/NetworkManager/NetworkManager.conf [NetworkManager.conf] [main] dns=none rc-manager=unmanaged DNS 서버 아이피 수정 sudo nano /etc/resolv.conf [resolv.conf] nameserver 8.8.8.8 출처: https://askubuntu.com/questions/623940/network-manager-how-to-stop-nm-updating-etc-resolv-conf network manager: how to stop nm updating /etc/resolv.conf I do not want network manager to add DN.. 2022. 9. 9.
MySQL - root 계정 비밀번호 초기화 명령어 sudo mysql -uroot -p 우선 수퍼 유저 권한으로 root 로그인 ALTER USER 'root'@'localhost' IDENTIFIED BY 'NewPassword'; 출처: https://phoenixnap.com/kb/how-to-reset-mysql-root-password-windows-linux How to Change MySQL Root Password in Linux or Windows Learn How to Reset or Change MySQL Root Password in Linux or Windows. Forget the root userpassword for your MySQL database? Get started with this easy tutorial!.. 2022. 9. 9.
웹 보안 - 취약점 관련 검색 엔진(shodan.io, censys.io, criminalIP.io) https://www.shodan.io/dashboard shodan.io는 인터넷에 연결된 각종 디바이스들을 검색하는 IoT 검색 도구이다. 정보를 가져올 때 서비스 중인 포트와 인증서, 서비스 배너(FTB banner, SMTP banner, Telnet banner) 등 같은 취약점이 되는 정보들을 가져오기도 해서 버그바운트용으로 많이 사용하는 검색 엔진이다. 쇼단에서 자체적으로 취약점 여부를 알려주는 기능을 포함하고 있다. * 무료 사용에는 많은 제약들이 있다(검색에 횟수 제한, API 요청 제한 등). 만약 가입할 때 이메일의 주소가 .edu, .ac.kr 같은 학교 도메인은 제약들이 느슨해진다. (https://help.shodan.io/the-basics/academic-upgrade 참고).. 2022. 9. 6.
다크넷 - 암호화폐 결제 익명 VPS 모음 Njalla clear url: https://njal.la/ Njalla — Worlds most notorious privacy provider for domains, VPS' and VPNs. Bures (hello)! Considered the worlds most notorious "Privacy as a Service" provider for domains, VPS' and VPNs. njal.la onion url: https://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion/ SporeStack clear url: SporeStack.com SporeStack: VPS hosting for Monero, Bitcoin, an.. 2022. 9. 4.
C# - .NET 디컴파일러 및 어셈블리 브라우저(dotPeek) https://www.jetbrains.com/ko-kr/decompiler/ dotPeek: JetBrains가 만든 무료 .NET 디컴파일러 및 어셈블리 브라우저 www.jetbrains.com 2022. 9. 4.
암호 - 사이트에서 다운 받는 프로그램이 변조 됐는지 확인하기(PGP Verify) 사전 준비. gpg4win 설치 https://www.gpg4win.org/ Gpg4win - Secure email and file encryption with GnuPG for Windows Gpg4win - a secure solution... ... for file and email encryption. Gpg4win (GNU Privacy Guard for Windows) is Free Software and can be installed with just a few mouse clicks. Discover Gpg4win Learn what Gpg4win is and read more about the features of our sol www.gpg4win.org 예시. 베라크립트 파일 검증하.. 2022. 9. 3.
암호 - 메시지, 파일을 암호화하는 보안 통신 도구(GPG/PGP) GPG와 PGP 차이 PGP(Pretty Good Privacy)는 RSA 기반 이메일 암호화 프로그램인데 이를 오픈 소스로 구현한게 GPG(Gnu Privacy Guard)이다. 대충 GPG로 내가 생성한 공개 키를 상대방에게 줘서 상대방은 공개 키로 자신의 연락처나 중요한 파일을 암호화시켜서 암호화한 암호문을 나에게 다시 전달하면 나만 가지고 있는 개인 키로 암호문을 복호화하는 원리 gpg4usb https://www.gpg4usb.org/ gpg4usb - project : home Welcome to the gpg4usb project gpg4usb is a very easy to use and small portable editor to encrypt and decrypt any text-mes.. 2022. 9. 3.
다크넷 - .onion 웹 주소 검색 엔진들 면웹 주소 Ahmia https://ahmia.fi/ 어니언 주소 TorDex http://tordexu73joywapk2txdr54jed4imqledpcvcuf75qsas2gwdgksvnyd.onion/ Ahmia http://juhanurmihxlp77nkq76byazcldy2hlmovfu2epvl5ankdibsot4csyd.onion/ Torch! http://torchdeedp3i2jigzjdmfpn5ttjhthh5wbmda2rr3jvqjg5p77c54dqd.onion OurRealm http://orealmvxooetglfeguv2vp65a3rig2baq2ljc7jxxs4hsqsrcemkxcad.onion/ 2022. 9. 3.
암호 - 폴더 암호화 소프트웨어(베라크립트) 설치 https://www.veracrypt.fr/en/Downloads.html VeraCrypt - Free Open source disk encryption with strong security for the Paranoid www.veracrypt.fr 사용 방법 https://www.veracrypt.fr/en/Beginner%27s%20Tutorial.html VeraCrypt - Free Open source disk encryption with strong security for the Paranoid Beginner's Tutorial How to Create and Use a VeraCrypt Container This chapter contains step-by-step instruc.. 2022. 9. 3.
728x90