Having to work on a remote machine every day, I’ve encountered a few times a really annoying issue: when you launch the MSTSC application and once connected to the remote machine, it says “Please Wait” forever. Especially when you don’t have admin rights on the machine you are on, there is not a lot you […]
C# – Web Scraping – a simple HTML Agility Pack example
Hello Devz, Sometimes it can be useful to copy a part of the content from a website. That’s where web scraping is useful and HTML Agility Pack is one of the best tools to do it. In this tutorial, I will show you a simple HTML Agility Pack example. Decide what content you need Say […]
Verify vulnerabilities on your WordPress site with WPScan
WPScan is a good tool to discover vulnerabilities on your WordPress website. To install it: sudo apt-get install git sudo apt-get install libcurl4-openssl-dev libxml2 libxml2-dev libxslt1-dev ruby-dev build-essential cd ~ git clone https://github.com/wpscanteam/wpscan.git cd wpscan sudo gem install bundler && bundle install –without test Execute the scan on www.example.com: ruby wpscan.rb –url www.example.com Happy hacking! […]
Verify common vulnerabilities on your router with RouterSploit
We will never say it enough, security and privacy are important. But what if your router has an old firmware and is vulnerable to some common exploits? One easy way to test it: RouterSploit. If you are familiar with the well know MetaSploit, it is more or less the same. It’s some kind of a […]
Share your Windows WiFi – Make your HotSpot – no app needed
Useful tip when you’re travelling and you are in a hotel where they give you only one voucher for one device. Use that voucher on your Windows 10 and you will be able to share your Internet connection with your other devices. No software needed, Windows 10 have a scriptable command called NetSh which is […]