Skip to content

Commit

Permalink
Modifing generic-university app
Browse files Browse the repository at this point in the history
  • Loading branch information
Denan Musinovic committed Jul 17, 2023
1 parent 8511ca8 commit 06a8534
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 28 deletions.
23 changes: 23 additions & 0 deletions charts/generic-university/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
29 changes: 21 additions & 8 deletions charts/generic-university/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,24 @@
apiVersion: v2
name: university
description: Generic University's IT department are excited to release their new tool so students can see all their grades online! Although still under construction some hacker has used Sublist3r and found it despite it being under construction. Thankfully Generic University have a bug bounty program and *.genericuniversity.ac.uk is in scope, no one seems to have noticed this under construction tool yet so get out there are find those bugs!
description: A Helm chart for Kubernetes

# A chart can be either an 'application' or a 'library' chart.
#
# Application charts are a collection of templates that can be packaged into versioned archives
# to be deployed.
#
# Library charts provide useful utilities or functions for the chart developer. They're included as
# a dependency of application charts to inject those utilities and functions into the rendering
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application
keywords:
- university
version: 0.0.4
dependencies:
- name: simple-service
version: 0.0.1
repository: "file://../../simple-service"

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.0.0

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "1.16.0"
37 changes: 37 additions & 0 deletions charts/generic-university/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ .Release.Name }}-university
namespace: {{ .Release.Namespace }}
labels:
app: university
app.kubernetes.io/instance: {{ .Release.Name }}
spec:
selector:
matchLabels:
app.kubernetes.io/instance: {{ .Release.Name }}
template:
metadata:
labels:
app.kubernetes.io/instance: {{ .Release.Name }}
app: university
spec:
containers:
- name: {{ .Chart.Name }}
image: busk3r/genericuniversity
command: ["/bin/sh"]
args:
- -c
- |
service mysql start &&
sleep 10 &&
mysql -u root -p -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';" &&
php /root/Generic-University/artisan serve --host 0.0.0.0
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 100m
memory: 512Mi
29 changes: 29 additions & 0 deletions charts/generic-university/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: {{ .Release.Name }}-university-ingress
namespace: {{ .Release.Namespace }}
annotations:
kubernetes.io/ingress.class: nginx
nginx.ingress.kubernetes.io/proxy-ssl-protocols: "TLSv1.1 TLSv1.2"
nginx.ingress.kubernetes.io/ssl-redirect: "false"
{{ if eq .Values.ingress.cert "" }}
cert-manager.io/cluster-issuer: letsencrypt-cf-prod
{{ end }}
spec:
tls:
- hosts:
- {{ .Release.Name }}.{{ .Values.ingress.url }}
secretName: {{ if eq .Values.ingress.cert "" }}distributorwildcard{{ else }}{{ .Values.ingress.cert }}{{ end }}
rules:
- host: {{ .Release.Name }}.{{ .Values.ingress.url }}
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: {{ .Release.Name }}-university-service
port:
number: 8000
9 changes: 9 additions & 0 deletions charts/generic-university/templates/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
apiVersion: v1
kind: Service
metadata:
name: {{ .Release.Name }}-university-service
spec:
ports:
- port: 8000
selector:
app.kubernetes.io/instance: {{ .Release.Name }}
24 changes: 4 additions & 20 deletions charts/generic-university/values.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,4 @@
simple-service:
application:
image: busk3r/genericuniversity
command: ["/bin/sh"]
args:
- -c
- |
service mysql start &&
sleep 10 &&
mysql -u root -p -e "ALTER USER 'root'@'localhost' IDENTIFIED WITH caching_sha2_password BY 'password';" &&
php /root/Generic-University/artisan serve --host 0.0.0.0
port: 8000
resources:
requests:
cpu: 50m
memory: 128Mi
limits:
cpu: 100m
memory: 512Mi

ingress:
url: dev.vuln.nexploit.app
cert: ""
authlevel: "."

0 comments on commit 06a8534

Please sign in to comment.