Email from log file

Get email address  from log file grep -E -o “\b[a-zA-Z0-9.-]+@[a-zA-Z0-9.-]+\.[a-zA-Z0-9.-]+\b” emails.log > email.log

Vivaldi – New opera like browser on top of chromium

Hi, People talking on many forums that chrome or firefox like browsers are sending data to their server, and making the service very insecure. In many forums people are talking about building their own browser and services but its very tedious task. So this guy made vivaldi for us that... [Read More]

Keep safe your online identity – anonymity

Hi, You are browsing this post and almost all the websites in the world keep log of your activities and browser information. They can identify who you are and what you are reading/searching. I have heard people saying I have nothing to hide, but we all know that no one can... [Read More]

Set up git with bitbucket.org

First check if have set up ssh-keygen Or set up with this command $ssh-keygen Test connection ssh -T git@bitbucket.org Then Check if ssh-Agent is working ssh-add -l If not then start with this command eval `ssh-agent -s` Now get you .pub create file in ssh-keygen process and paste content in... [Read More]

share phone internet connected to pc with wifi and connected devices

check detail of ip with ifconfig iptables -t nat -A POSTROUTING -o phone-conn -j MASQUERADE iptables -A FORWARD -i phone-conn -o eth0 -m state --state RELATED,ESTABLISHED -j ACCEPT iptables -A FORWARD -i eth0 -o phone-conn -j ACCEPT also do not forget to set dns https://www.cyberciti.biz/faq/howto-linux-bsd-unix-set-dns-nameserver/ I got this idea when... [Read More]