Skip to main content

WPF – PasswordBox Helper

passwordbox

Because security matters, you will need at one point to use a PasswordBox in your WPF application (you know, the textBox hiding the password with stars). But Microsoft didn’t make this control bindable for security reasons (in memory access). So if you’re using MVVM, it will be a bit tricky. Different solutions exist, but really […]

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

The Power of Windows 10 Bash Shell

Hello Devz, You may want to use Linux for many reasons: services, development, scripting, or just for the environment. And you can use it in a few different ways: Install (dual boot) a distro like Ubuntu, Fedora, Mint, … Use a virtual machine with VMWare or VirtualBox Use “Bash on Ubuntu on Windows” or also […]