wget https://http.kali.org/kali/pool/main/k/kali-archive-keyring/kali-archive-keyring_2020.2_all.deb –no-check-certificate sudo dpkg -i kali-archive-keyring_2020.2_all.deb sudo apt update
Posts with the Linux tag
Clear mail from specific address from exim queue
We have alot of issues with people using open contact forms on their websites causing spammers to fill up the exim mail queues on webservers. Today I found a great set of commands to fix the issue. exim -bp will show the current queue exiqgrep -ir spam@example.com | xargs exim -Mrm will query the entire […]
Find big files in unix
find / -xdev -type f -size +100M