-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1516171
commit 314f081
Showing
1,553 changed files
with
692,885 additions
and
197 deletions.
There are no files selected for viewing
This file contains 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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
|
||
- hosts: all | ||
gather_facts: no | ||
become: no | ||
tasks: | ||
- ansible.builtin.wait_for_connection: | ||
- ansible.builtin.ping: |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains 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
File renamed without changes.
This file contains 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 file contains 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 file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Build-a-Backdoor Scenario | ||
|
||
Vulnerable company are called "Introspective Insights" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: networking.k8s.io/v1 | ||
kind: NetworkPolicy | ||
metadata: | ||
name: ii-mgmt-np | ||
namespace: ii-prod | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: ii | ||
ingress: | ||
- {} | ||
policyTypes: | ||
- Ingress | ||
--- | ||
apiVersion: networking.k8s.io/v1 | ||
kind: NetworkPolicy | ||
metadata: | ||
name: ii-mgmt-np | ||
namespace: ii-prod | ||
spec: | ||
podSelector: {} | ||
policyTypes: | ||
- Ingress | ||
ingress: | ||
- ports: | ||
- port: 8080 | ||
- port: 5724 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: ii-prod-mgmt-service | ||
namespace: ii-prod | ||
spec: | ||
selector: | ||
app: ii | ||
ports: | ||
- name: mgmt | ||
port: 80 | ||
targetPort: 8080 | ||
protocol: TCP | ||
- name: admin | ||
port: 5724 | ||
targetPort: 5724 | ||
protocol: TCP | ||
--- | ||
apiVersion: networking.k8s.io/v1 | ||
kind: NetworkPolicy | ||
metadata: | ||
name: ii-prod-mgmt-np | ||
namespace: ii-prod | ||
spec: | ||
podSelector: | ||
matchLabels: | ||
app: ii | ||
policyTypes: | ||
- Ingress | ||
ingress: | ||
- ports: | ||
- port: 8080 | ||
- port: 5724 | ||
--- | ||
apiVersion: networking.k8s.io/v1 | ||
kind: Ingress | ||
metadata: | ||
name: ingress-ii-mgmt | ||
namespace: ii-prod | ||
annotations: | ||
kubernetes.io/ingress.class: nginx | ||
spec: | ||
rules: | ||
- http: | ||
paths: | ||
- path: "/" | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: ii-prod-mgmt-service | ||
port: | ||
number: 80 | ||
- path: "/backdoor" | ||
pathType: Prefix | ||
backend: | ||
service: | ||
name: ii-prod-mgmt-service | ||
port: | ||
number: 5724 |
File renamed without changes.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Cease and Desist (a.k.a cilium and remote licensing) | ||
|
||
Example public valid license: `https://gist.githubusercontent.com/wakeward/b475d1e12c6bd869a70d65c74863f966/raw/049c866f829c3e36f570b013a7b0b58cd026b651/license.json` | ||
|
||
Example public invalid license: `https://gist.githubusercontent.com/jpts/41294862cca103cd91545108b4e05e19/raw/3fbc5ed204431056b1954a4b77ba60810d17a9dc/yes.json` | ||
|
||
licence server password: `access-2-reform-kube-server` | ||
|
||
command for activating trial license: `./reform-kube-licensing-server -trial -password access-2-reform-kube-server` | ||
|
||
test command for activating trial license: `./reform-kube-licensing-server -licenseURL https://gist.githubusercontent.com/wakeward/5224313fc51bcfbee5a40e58885aff87/raw/48919f37ddb76a9686bb9c93a8f2a44bc0ca5431/trial.json -password access-2-reform-kube-server` | ||
|
||
Blocked Domain command: `./reform-kube-licensing-server -licenseURL https://gitlab.com/crossref/manifold/-/raw/main/.releaserc.json -password access-2-reform-kube-server` | ||
|
||
command for activating trial license: `./reform-kube-licensing-server -licenseURL https://gist.githubusercontent.com/wakeward/b475d1e12c6bd869a70d65c74863f966/raw/049c866f829c3e36f570b013a7b0b58cd026b651/license.json -password access-2-reform-kube-server` |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Oops, something went wrong.