This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" ?> | |
<rootthebox api="1"> | |
<configuration> | |
<game_name>Juice Shop CTF</game_name> | |
<game_version>1.0</game_version> | |
<org_footer><a href='https://www.owasp.org/'>OWASP Foundation</a></org_footer> | |
<story_character>/9j/4Qq9RXhpZgAATU0AKgAAAAgABwESAAMAAAABAAEAAAEaAAUAAAABAAAAYgEbAAUAAAABAAAAagEoAAMAAAABAAIAAAExAAIAAAAkAAAAcgEyAAIAAAAUAAAAlodpAAQAAAABAAAArAAAANgAFfkAAAAnEAAV+QAAACcQQWRvYmUgUGhvdG9zaG9wIENDIDIwMTkgKE1hY2ludG9zaCkAMjAxOTowNTowNSAwOTozNDo0MQAAAAADoAEAAwAAAAH//wAAoAIABAAAAAEAAAKAoAMABAAAAAEAAAFoAAAAAAAAAAYBAwADAAAAAQAGAAABGgAFAAAAAQAAASYBGwAFAAAAAQAAAS4BKAADAAAAAQACAAACAQAEAAAAAQAAATYCAgAEAAAAAQAACX8AAAAAAAAASAAAAAEAAABIAAAAAf/Y/+0ADEFkb2JlX0NNAAH/7gAOQWRvYmUAZIAAAAAB/9sAhAAMCAgICQgMCQkMEQsKCxEVDwwMDxUYExMVExMYEQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMAQ0LCw0ODRAODhAUDg4OFBQODg4OFBEMDAwMDBERDAwMDAwMEQwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAz/wAARCABaAKADASIAAhEBAxEB/90ABAAK/8QBPwAAAQUBAQEBAQEAAAAAAAAAAwABAgQFBgcICQoLAQABBQEBAQEBAQAAAAAAAAABAAIDBAUGBwgJCgsQAAEEAQMC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#this is the simple docker-compose yaml file for elasticsearch only (I am writing python client CRUD applciation) version 7.5.2 | |
version: '3.7' | |
# username password is root:root , just local dev so no ssl | |
services: | |
elasticsearch: | |
image: docker.elastic.co/elasticsearch/elasticsearch:7.5.2 | |
container_name: elasticsearch | |
environment: | |
- node.name=elasticsearch |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"workbench.iconTheme": "vs-seti", | |
"editor.mouseWheelZoom": true, | |
"editor.fontSize": 18, | |
"terminal.integrated.fontSize": 24, | |
"terminal.integrated.shell.linux": "/usr/bin/tmux", | |
"terminal.integrated.profiles.linux": { | |
"tmux": { | |
"path": "/usr/bin/tmux", | |
"icon": "terminal-tmux" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: networking.k8s.io/v1 | |
kind: NetworkPolicy | |
metadata: | |
name: allow-egress | |
spec: | |
podSelector: {} # Tüm pod'ları seç | |
egress: | |
- to: | |
- ipBlock: | |
cidr: 0.0.0.0/0 # Tüm IP adreslerine çıkış izni ver |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: ubu-focal-systemd-docker | |
annotations: | |
io.kubernetes.cri-o.userns-mode: "auto:size=65536" | |
spec: | |
runtimeClassName: sysbox-runc | |
containers: | |
- name: ubu-focal-systemd-docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"runtimes": { | |
"sysbox-runc": { | |
"path": "/usr/bin/sysbox-runc" | |
} | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: ubu-focal-systemd-docker | |
annotations: | |
io.kubernetes.cri-o.userns-mode: "auto:size=65536" | |
spec: | |
runtimeClassName: sysbox-runc | |
containers: | |
- name: ubu-focal-systemd-docker |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
kubectl create serviceaccount argocd-master | |
echo ' | |
apiVersion: rbac.authorization.k8s.io/v1 | |
kind: ClusterRole | |
metadata: | |
name: argocd-master | |
rules: | |
- apiGroups: [""] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM rockylinux:8.7 | |
# update | |
RUN yum -y update | |
# install systemd | |
RUN yum -y install initscripts curl systemd | |
# minio client | |
RUN curl -L https://dl.min.io/client/mc/release/linux-amd64/mc -o /usr/local/bin/mc && \ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# simple docker-compose.yaml for rockylinux on dockerfile "./dockerfiles/rockylinux8/Dockerfile" and Minio. | |
version: '3.7' | |
services: | |
minio: | |
image: rancher/minio-minio:RELEASE.2020-07-13T18-09-56Z | |
container_name: minio | |
restart: unless-stopped | |
networks: |