removing git history
sometimes you jsut want to wipe everything from a git repo but you want to hold on to the files.
We can do this by following this pattern:
– Remove history rm -rf .git
– recreate the repos from the current content only git init git add . git commit -m “Initial commit”
– push to the github remote repos ensuring you overwrite history git remote add origin git@github.com:/.git git push -u –force origin master
cyber chef
https://gchq.github.io/CyberChef/ cyber chef tool form the ctf for doing a lot of data manipulations and whatnot
root-me
sometimes there are good challenge to stretch your brain https://www.root-me.org/?lang=en information on all of it from root-me http://repository.root-me.org/