Skip to content

Instantly share code, notes, and snippets.

@ironashram
ironashram / crashd.md
Created February 10, 2025 21:34 — forked from throwaway96/crashd.md
crashd instructions

News

EOL (2024-07-21)

I'm not going to be maintaining this document anymore. I'm leaving it as-is since much of the FAQ section is still accurate and has yet to be incorporated into other resources.

Use CanI.RootMy.TV to find an exploit for your TV.

New exploit for webOS 3.5+: DejaVuln (2024-04-21)

@ironashram
ironashram / delete_all_restarted_pods.sh
Last active February 10, 2025 21:32
Reset restart count (the ugly way)
# Oneliner to delete all pods with restart count > 0
kubectl get pods --all-namespaces -o json | jq -r '.items[] | select(any(.status.containerStatuses[]; .restartCount > 0)) | .metadata.name + " " + .metadata.namespace' | while read -r pod namespace; do kubectl delete pod "$pod" -n "$namespace"; done