Author: Emiliano Carlesi
IP addresses analysis
This video shows how to use the web console to quickly analyze an IP address and configure a monitor that periodically checks the status of the TCP ports that you want to monitor. https://youtu.be/lXCmlamqGKY
Domain monitoring
This video shows how easy it is to receive notifications about registrations of new internet domains and newly created domain sites that display downloadable content. Finding phishing sites is a joke! https://youtu.be/kVfEh4b65kQ
Free resources for security analyst
This video shows which resources can be freely used by anyone, simply by visiting https://sec.itattitude.com https://youtu.be/7rDY7qhryC0
Internet domain analysis
This video shows how easy it is to gather useful information from a domain name. https://youtu.be/SD8GRux6o7I
A List of MIME Types by Content Type
Create Windows bootable USB with macOS
If you need to create a Windows 10 installation USB key using a macOS, you can use these commands to do it simply.This procedure deletes all data from the USB stick, so be careful 🙂 Open Terminal and use the following commands diskutil list diskutil eraseDisk MS-DOS "WIN10" GPT <USB disk> hdiutil mount <path to … Continue reading Create Windows bootable USB with macOS
About autonomous driving
In these days I'm driving an Infiniti Q30, I find it very pretty and even if it has the wrong wheel drive, it can be fun too 🙂 One of the things I like best about this machine is electronic stuff. One of the driving aids I noticed is the autonomous reading of the road … Continue reading About autonomous driving
Wait for an event in a WaterfallDialog
Working on a Skill, I needed to block the execution of a WaterfallDialog while waiting for a specific event to arrive. The solution is simple and based on the use of EventPrompt. Below I show how to use it. Register EventPrompt in the constructor AddDialog(new WaterfallDialog(nameof(WaterfallDialog), new WaterfallStep[] { HelloAsync, WaitForEventAsync, DoneAsync })); AddDialog(new EventPrompt(nameof(EventPrompt), … Continue reading Wait for an event in a WaterfallDialog
macOS disable WIFI on logout
I recently started using an Apple notebook as a development laptop. I realized that when I block the screen the WIFI connection goes down. This is a wanted behavior and can be changed using this command: cd /System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources sudo ./airport en1 prefs DisconnectOnLogout=NO Obviously you need to replace "en1" with the identifier of your WIFI … Continue reading macOS disable WIFI on logout
You must be logged in to post a comment.