[Linux] CentOS 7 서비스 관리 명령어 Definition 정의CentOS 7 부터 기존의 init system 에서 systemd 로 기본 시스템 관리 데몬이 변경되었습니다. 1. 서비스 재실행 systemctl restart sshd.service 2. 서비스 중지 systemctl stop sshd.service 3. 서비스 시작 systemctl start sshd.service 4. 서비스 상태보기 systemctl status sshd.service 5. 부팅시 서비스 시작 systemctl enable sshd.service 6. 부팅시 서비스 시작하지 않음 systemctl disable sshd.service 7. 부팅시 실행되는 서비스인지 검사 systemctl is-enabled sshd 8. 서비스 목록보기 systemc.. LINUX/리눅스 관리 2021. 2. 9. 17:36
[TOOL][OllyDbg] 디버거툴 Program Name OllyDbg Features 디버거 프로그램 Download www.ollydbg.de SECURITY TOOL/동적분석툴 2020. 12. 30. 20:43
[TOOL][Detect It Easy] 패킹 분석툴 Program Name Detect It Easy Features - PE파일 생성에 사용했던 패커나 컴파일러를 확인 할 수 있다 - 과거 가장 많이 사용되던 패킹 분석툴인 PEiD 와 같은 기능을 함 Download http://ntinfo.biz/index.html SECURITY TOOL/정적분석툴 2020. 12. 30. 19:20
[TOOL][Resource Hacker] 리소스 섹션 분석툴 Program Name Resource Hacker Features - 리소스(.rsrc) 섹션 확인 - 리소스 섹션 내 저장된 추가 실행 파일 추출 기능 - 추출방법: Action -> Save resource as binary file Download www.angusj.com/resourcehacker/#download SECURITY TOOL/정적분석툴 2020. 12. 28. 21:54
[TOOL][Process Hacker] 시스템 프로세스 모니터링 툴 Program Name Process Hacker Features - MS(sysinternals)의 Process Explorer 와 동일한 기능 - 프로세스, 서비스, 네트워크 정보 실시간 출력 Download processhacker.sourceforge.io/downloads.php SECURITY TOOL/동적분석툴 2020. 12. 28. 21:23
[TOOL][PEStudio] PE 파일 정적분석툴 Program Name PEStudio Features - PE 파일 구조 출력 - 파일 내 스트링값 출력 - 악의적으로 사용하는 윈도우 API 위험도 확인 - 리소스 파일 내 숨김 여부 표시 - PEStudio 로 분석되는 파일은 실행되지 않음 Download www.winitor.com/download SECURITY TOOL/정적분석툴 2020. 12. 28. 20:39
[네트워크] 네트워크 어댑터 MAC Address 에서 OUI(제조회사) 확인방법 Definition MAC 주소는 48bit (AA-BB-CC-DD-EE-FF)로 구성되어 있으며, 앞 24bit (AA-BB-CC)는 NIC 제조회사의 고유 번호이며 OUI 라고 한다. OUI Lookup Site www.wireshark.org/tools/oui-lookup.html NETWORK/네트워크 일반 2020. 7. 21. 16:26
[HTTP] Nmap 으로 Cipher Suite 확인하는 방법 Solution nmap --script ssl-enum-ciphers.nse example.com -p 443 References https://jybaek.tistory.com/549 WEB/HTTP 2020. 7. 20. 17:52
[TOOL][x64dbg] 디버거툴 Program Name x64dbg Features 디버거 프로그램 Download https://x64dbg.com/ SECURITY TOOL/동적분석툴 2020. 7. 20. 17:17
[TOOL][BlackWidow] Python 기반 웹사이트 크롤링 도구 Program Name BlackWidow Features - 대상 웹 사이트에서 모든 URL 자동 수집 - 대상 웹 사이트에서 모든 동적 URL 및 매개 변수를 자동으로 수집 - 대상 웹 사이트에서 모든 하위 도메인을 자동으로 수집 - 대상 웹 사이트에서 모든 전화 번호를 자동으로 수집 - 대상 웹 사이트에서 모든 이메일 주소를 자동으로 수집 - 대상 웹 사이트에서 모든 양식 URL 자동 수집 - 일반적인 OWASP TOP 취약점에 대해 자동으로 스캔 / 퍼지 - 모든 데이터를 정렬 된 텍스트 파일에 자동 저장 Linux Install sudo bash install.sh Download github.com/1N3/BlackWidow SECURITY TOOL/동적분석툴 2020. 7. 20. 15:56