-
Notifications
You must be signed in to change notification settings - Fork 555
Comparing changes
Open a pull request
base repository: cdk-team/CDK
base: v1.0.4
head repository: cdk-team/CDK
compare: main
Commits on Oct 6, 2021
-
Merge pull request #29 from cdk-team/dependabot/go_modules/github.com…
…/containerd/containerd-1.4.11
Configuration menu - View commit details
-
Copy full SHA for 40c5131 - Browse repository at this point
Copy the full SHA 40c5131View commit details -
Configuration menu - View commit details
-
Copy full SHA for c1d4aff - Browse repository at this point
Copy the full SHA c1d4affView commit details
Commits on Oct 18, 2021
-
Configuration menu - View commit details
-
Copy full SHA for 8a8f753 - Browse repository at this point
Copy the full SHA 8a8f753View commit details
Commits on Nov 1, 2021
-
Bump github.com/tidwall/gjson from 1.6.7 to 1.9.3
Bumps [github.com/tidwall/gjson](https://github.com/tidwall/gjson) from 1.6.7 to 1.9.3. - [Release notes](https://github.com/tidwall/gjson/releases) - [Commits](tidwall/gjson@v1.6.7...v1.9.3) --- updated-dependencies: - dependency-name: github.com/tidwall/gjson dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 533e439 - Browse repository at this point
Copy the full SHA 533e439View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a92459 - Browse repository at this point
Copy the full SHA 4a92459View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e9752f - Browse repository at this point
Copy the full SHA 5e9752fView commit details -
Merge pull request #30 from cdk-team/dependabot/go_modules/github.com…
…/tidwall/gjson-1.9.3 Bump github.com/tidwall/gjson from 1.6.7 to 1.9.3
Configuration menu - View commit details
-
Copy full SHA for 4d54661 - Browse repository at this point
Copy the full SHA 4d54661View commit details -
Configuration menu - View commit details
-
Copy full SHA for a75c1d5 - Browse repository at this point
Copy the full SHA a75c1d5View commit details -
fix action: cedrickring/golang-action is archived, offical actions/se…
…tup-go action instead
Configuration menu - View commit details
-
Copy full SHA for f96cd30 - Browse repository at this point
Copy the full SHA f96cd30View commit details
Commits on Nov 21, 2021
-
Bump github.com/containerd/containerd from 1.4.11 to 1.4.12
Bumps [github.com/containerd/containerd](https://github.com/containerd/containerd) from 1.4.11 to 1.4.12. - [Release notes](https://github.com/containerd/containerd/releases) - [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md) - [Commits](containerd/containerd@v1.4.11...v1.4.12) --- updated-dependencies: - dependency-name: github.com/containerd/containerd dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 2c5d184 - Browse repository at this point
Copy the full SHA 2c5d184View commit details
Commits on Nov 22, 2021
-
Merge pull request #31 for security issue (to containerd v1.4.12)
Bump github.com/containerd/containerd from 1.4.11 to 1.4.12
Configuration menu - View commit details
-
Copy full SHA for 0156d55 - Browse repository at this point
Copy the full SHA 0156d55View commit details
Commits on Jan 28, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3a5a713 - Browse repository at this point
Copy the full SHA 3a5a713View commit details -
Configuration menu - View commit details
-
Copy full SHA for 25b66b1 - Browse repository at this point
Copy the full SHA 25b66b1View commit details
Commits on Feb 27, 2022
-
Configuration menu - View commit details
-
Copy full SHA for b22f683 - Browse repository at this point
Copy the full SHA b22f683View commit details
Commits on Mar 6, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 98ec2d1 - Browse repository at this point
Copy the full SHA 98ec2d1View commit details -
Configuration menu - View commit details
-
Copy full SHA for dbd9257 - Browse repository at this point
Copy the full SHA dbd9257View commit details
Commits on Mar 7, 2022
-
optimize(util/common.go): Quicker Random String Generator
Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ef056df - Browse repository at this point
Copy the full SHA ef056dfView commit details -
optimize(exp/mount-cgroup): update build constraint, cgroup is linux …
…only Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ecfadba - Browse repository at this point
Copy the full SHA ecfadbaView commit details -
fix(exp/mount-cgroup): fix #35 in shell-style in a simple way
Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 60b44e5 - Browse repository at this point
Copy the full SHA 60b44e5View commit details
Commits on Mar 9, 2022
-
fix(util/cgroup.go): typo: marjor -> major
Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4c640ae - Browse repository at this point
Copy the full SHA 4c640aeView commit details -
feat(util/cgroup.go): add superBlockOptions when parsing /proc/self/m…
…ountinfo Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 043d6b6 - Browse repository at this point
Copy the full SHA 043d6b6View commit details -
feat(exp/mount_cgroup.go): completely fix #35 in golang-style
This implemented mount-cgroup exploit totally in Golang. Detailed information: - Change whole "create-mount-write" process using Golang native Unix API. - To avoid conflict, increase length of random string from 3 to 4. Tasks sub-cgroup are also in the same kind of random name. - Read mounted filesystem information from /proc/self/mountinfo, instead of /etc/mtab . - Due to the limitation of exec.Command, output redirect is implemented in another way: manually get pid and write to cgroups.proc Further enhancement: - To read the container filesystem path on the host, implement to read `superBlockOptions` of MountInfo. - To implement CVE-2022-0492 in this PR further, I modified EscapeCgroup function, so that it can be re-used for other subsystems. Chores: - `go mod tidy` Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1b94046 - Browse repository at this point
Copy the full SHA 1b94046View commit details -
Configuration menu - View commit details
-
Copy full SHA for 96d2984 - Browse repository at this point
Copy the full SHA 96d2984View commit details -
refactor(exp): Merge pull request #40 from kmahyyg/main
[PR40] Implement mount-cgroup exploit in Golang style. Detailed information: * Change whole "create-mount-write" process using Golang native Unix API. * To avoid conflict, increase length of random string from 3 to 4. * Tasks sub-cgroup are also in the same kind of random name. * Read mounted filesystem information from /proc/self/mountinfo, instead of /etc/mtab . * Due to the limitation of exec.Command, output redirect is implemented in another way: manually get pid and write to cgroups.procs
Configuration menu - View commit details
-
Copy full SHA for 05c907b - Browse repository at this point
Copy the full SHA 05c907bView commit details
Commits on Mar 10, 2022
-
feat(exploit/abuse-unpriv-userns): exploit of CVE-2022-0492 (#41)
* feat(exploit/abuse_unpriv_userns.go): exploit of CVE-2022-0942 co-operate with PR #40. Signed-off-by: kmahyyg <16604643+kmahyyg@users.noreply.github.com> Reviewer: neargle
Configuration menu - View commit details
-
Copy full SHA for 19d8c3e - Browse repository at this point
Copy the full SHA 19d8c3eView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 19fdff2 - Browse repository at this point
Copy the full SHA 19fdff2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9e47892 - Browse repository at this point
Copy the full SHA 9e47892View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a004b6 - Browse repository at this point
Copy the full SHA 7a004b6View commit details
Commits on Mar 12, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 7cf4bfd - Browse repository at this point
Copy the full SHA 7cf4bfdView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6722038 - Browse repository at this point
Copy the full SHA 6722038View commit details
Commits on Mar 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 6cab6db - Browse repository at this point
Copy the full SHA 6cab6dbView commit details
Commits on Mar 20, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 5c611b4 - Browse repository at this point
Copy the full SHA 5c611b4View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2b1b8c1 - Browse repository at this point
Copy the full SHA 2b1b8c1View commit details
Commits on Mar 26, 2022
-
Configuration menu - View commit details
-
Copy full SHA for f7f5e37 - Browse repository at this point
Copy the full SHA f7f5e37View commit details -
Configuration menu - View commit details
-
Copy full SHA for dd5456d - Browse repository at this point
Copy the full SHA dd5456dView commit details
Commits on Apr 26, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3c6b0c1 - Browse repository at this point
Copy the full SHA 3c6b0c1View commit details
Commits on May 4, 2022
-
Configuration menu - View commit details
-
Copy full SHA for ad8ce9d - Browse repository at this point
Copy the full SHA ad8ce9dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 9118872 - Browse repository at this point
Copy the full SHA 9118872View commit details
Commits on May 25, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 2474a08 - Browse repository at this point
Copy the full SHA 2474a08View commit details -
Configuration menu - View commit details
-
Copy full SHA for 032d08c - Browse repository at this point
Copy the full SHA 032d08cView commit details -
Configuration menu - View commit details
-
Copy full SHA for e7d820c - Browse repository at this point
Copy the full SHA e7d820cView commit details -
Merge pull request #48 from wywwzjj/main
add DNS-Based Service Discovery
Configuration menu - View commit details
-
Copy full SHA for f8d186d - Browse repository at this point
Copy the full SHA f8d186dView commit details
Commits on May 30, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 46918aa - Browse repository at this point
Copy the full SHA 46918aaView commit details -
Configuration menu - View commit details
-
Copy full SHA for 52bab3e - Browse repository at this point
Copy the full SHA 52bab3eView commit details
Commits on Jun 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for fd1190e - Browse repository at this point
Copy the full SHA fd1190eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 71d0646 - Browse repository at this point
Copy the full SHA 71d0646View commit details -
Merge pull request #50 from cdk-team/fix-shadow-apiserver-49
Fix #49 (shadow-apiserver): Flag --insecure-port has been deprecated
Configuration menu - View commit details
-
Copy full SHA for b71d8d6 - Browse repository at this point
Copy the full SHA b71d8d6View commit details
Commits on Jun 23, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 3d87478 - Browse repository at this point
Copy the full SHA 3d87478View commit details -
feat(etcd) #52: get K8s service account token in ETCD
* add etcd get k8s token * etcd 代码补充 * something fix, not support etcd v2 * Remove unnecessary code
Configuration menu - View commit details
-
Copy full SHA for 4eaa69e - Browse repository at this point
Copy the full SHA 4eaa69eView commit details
Commits on Jun 24, 2022
-
Merge pull request #53 from cdk-team/probe-get-ending
perf(probe): output ending message
Configuration menu - View commit details
-
Copy full SHA for 7fed802 - Browse repository at this point
Copy the full SHA 7fed802View commit details
There are no files selected for viewing