LearnTheShell (@learntheshell) 's Twitter Profile
LearnTheShell

@learntheshell

Command line tips, tricks, and recipes.

ID: 1780297451875827712

linkhttps://learntheshell.com/ calendar_today16-04-2024 18:09:47

94 Tweet

10 Followers

164 Following

LearnTheShell (@learntheshell) 's Twitter Profile Photo

🔄 Clean Commit History, use: git rebase to keep your project history linear and tidy! Skip messy merge commits and replay your changes on top of main. See more: medium.com/p/2ec089826dc7 #Git #DevTools

LearnTheShell (@learntheshell) 's Twitter Profile Photo

💡Quick Reset: Made a mistake? No worries! Use: git reset --soft HEAD~1 to undo your last commit without losing your changes. Learn more: learntheshell.com/posts/advanced… #git #DevOps

LearnTheShell (@learntheshell) 's Twitter Profile Photo

🔥 Cherry-picking: Got a perfect commit you want on another branch? Use: git cherry-pick <commit-hash> to grab that specific change without merging the whole branch! Learn more: medium.com/@learntheshell… #Git

LearnTheShell (@learntheshell) 's Twitter Profile Photo

🔥 Amend Your Commits: Forgot to add something? No problem! Use: git commit --amend to update the last commit. See more: medium.com/@learntheshell… #Git

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Git Credential Management: Exploring how to store and manage your credentials in various environments. link.medium.com/hMCPOhuuYMb #Git

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Do you need to match the response using regex while fuzzing with ffuf? Use: ffuf -w /path/to/wordlist.txt -u example.com/FUZZ -mr "success|welcome" Learn more: medium.com/p/016be44d0b07 #bugbounty #bugbountytip #bugbountytips

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Password spraying with ffuf? ffuf -w usernames.txt -u https://localhost/login -X POST -d "username=FUZZ&password=admin" See more: medium.com/@learntheshell… #bugbountytip #bugbountytips #BugBounty #websecurity

LearnTheShell (@learntheshell) 's Twitter Profile Photo

API user password brute-force with ffuf? ffuf -X POST -H "Content-Type: application/json" -d '{"username": "admin", "password": "FUZZ"}' -w /path/to/wordlist.txt -u https://target/api/login See more: medium.com/@learntheshell… #bugbountytip #bugbountytips #BugBounty #websecurity

LearnTheShell (@learntheshell) 's Twitter Profile Photo

📂 Organize Branches: Create and switch branches in one command with: git checkout -b new-feature Start feature development faster! 🚀 Learn more: learntheshell.com/cheatsheets/gi… #Git #ProductivityHacks #DevTips

LearnTheShell (@learntheshell) 's Twitter Profile Photo

📜 Visualize your project history with: git log --oneline --graph --decorate --all It’s magic for tracking changes! ✨ Learn more: learntheshell.com/cheatsheets/gi… #Git #CodeOrganization

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Reverse-shells cheat sheet: learntheshell.com/cheatsheets/re… #bugbountytip #bugbountytips #BugBounty #Pentesting #ethicalhacking

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Reverse Shells: A Practical Guide: link.medium.com/e2aORDennNb #bugbountytip #bugbountytips #BugBounty #Pentesting #ethicalhacking

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Bind Shells: A Practical Guide link.medium.com/bF0OzjeQ0Nb #bugbountytip #bugbountytips #BugBounty #Pentesting #ethicalhacking

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Bind Shells: A Practical Guide learntheshell.com/posts/bind-she… #bugbountytip #bugbountytips #BugBounty #Pentesting #ethicalhacking

LearnTheShell (@learntheshell) 's Twitter Profile Photo

Combine multiple wordlists in ffuf: ffuf -w users.txt:USER -w passwords.txt:PASS -u target.com/login?u=USER&p… see more: learntheshell.com/cheatsheets/ff… #bugbountytip #bugbountytips #BugBounty #websecurity