Bandit Level 3 → Level 4 [3/34]
·
CTF/Bandit
Level Goal The password for the next level is stored in a file called spaces in this filename located in the home directory Commands you may need to solve thi" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit3.html" data-og-url="https://overthewire.org/wargames/bandit/bandit3.html" data-og-image=""> OverTheWire: Level GoalWe're hackers, and we are..
Bandit Level 2 → Level 3 [2/34]
·
CTF/Bandit
Level Goal The password for the next level is stored in a file called - located in the home directory Commands you may need to solve this level ls , cd , cat " data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit2.html" data-og-url="https://overthewire.org/wargames/bandit/bandit2.html" data-og-image=""> OverTheWire: Level GoalWe're hackers, and we are..
Bandit Level 1 → Level 2 [1/34]
·
CTF/Bandit
Level Goal The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. W" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit1.html" data-og-url="https://overthewire.org/wargames/bandit/bandit1.html" data-og-image=""> OverTheWire: Level GoalWe're hackers, and we are..
Bandit Level 0 → Level 1 [0/34]
·
CTF/Bandit
Level Goal The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 222" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit0.html" data-og-url="https://overthewire.org/wargames/bandit/bandit0.html" data-og-image=""> OverTheWire: Level GoalWe're hackers, and we are..
[리눅스마스터 1급] 18. 방화벽 설정 (iptables)
·
Certification/리눅스마스터 1급
iptablesiptables는 리눅스에서 네트워크 패킷 필터링과 방화벽 기능을 담당하는 커맨드라인 도구이다. 실제 동작은 리눅스 커널 안의 netfilter 프레임워크에서 처리되고, iptables는 그 규칙을 설정, 조회, 관리하는 역할을 한다. 즉, 리눅스에서 “어떤 네트워크 패킷을 허용할지, 차단할지, 수정할지” 결정하는 방화벽 도구이다. OPTIONS옵션설명예시-p프로토콜 지정 (tcp, udp, icmp)-p tcp-s / -d출발지 / 목적지 IP 주소 (또는 대역) 지정-s 192.168.1.0/24-d 10.0.0.5--sport / --dport출발지 / 목적지 포트 지정--dport 22-i / -o입력 / 출력 인터페이스 지정-i eth0-o eth1-m state --state상..
[리눅스마스터 1급] 17. 슈퍼 데몬
·
Certification/리눅스마스터 1급
슈퍼데몬 이란?슈퍼 데몬은 다른 여러 서비스 데몬을 관리하고, 요청이 들어올 때만 그 서비스를 실행시켜 주는 통합 관리 데몬이다. 사용 빈도가 낮은 서비스를 관리할 때 매우 적합하며 덕분에 메모리 사용을 줄일 수 있다.xinetd 설치 및 설정xinetd는 슈퍼 데몬중 하나로 기존 inetd의 확장 버전이다. 보안 기능과 로깅 기능이 더 강화되었다. xinetd 설치 및 실행$ sudo dnf install -y xinetd$ sudo systemctl start xinetd$ sudo systemctl enable xinetd xinetd.confxinetd가 전체적으로 어떤 방식으로 동작할지 정하는 글로벌 설정을 정의하는 파일이다. 즉, 전체 공통 설정에 대한 내용이 담겨있다.defaults { ..