SYMPLIFY LEARNING

Using CloudWatch Log Insights

Cloudwatch Insights allows you to search and analyze your log data that was sent to Amazon CloudWatch. CloudWatch Log Insights automatically discovers fields in logs from AWS services such as Amazon Route 53, AWS Lambda, AWS CloudTrail and Amazon VPC When you navigate to Logs Insights in the AWS Console and select the log group … Read more

Capture filters in Wireshark

Capture filters are filters specified in Wireshark BEFORE you start the capture. It allows you limit the traffic captured to the packets that match your filter. This is different from the display filters in Wireshark. You use the display filters AFTER you have captured packets so that the packets that are displayed are limited to … Read more

Using dumpcap for extended packet captures

What is dumpcap? Dumpcap is a network traffic dump tool that is installed as part of the Wireshark installation package. Because Wireshark offers a simple-to-use GUI, we are usually able to use Wireshark without needing to interact with some of the lower level packages that really make Wireshark work. One of such packages is dumpcap. … Read more

Useful tips when using Wireshark

1. Creating separate profiles for different troubleshooting tasks By default, when you open Wireshark, you are running the default profile. You can confirm this by looking at the bottom right corner of your Wireshark interface. Now, within that default profile, you can make changes. For example, you can add a column for ‘Destination port’. If … Read more

Using the get() method with dictionaries in python

The get() method is a very useful method for retrieving values from dictionaries. While methods like keys(), values(), and items() are also useful for retrieving values from dictionaries, the get() method is unique in that it let’s you specify a default value that will be returned if the key you’ve tried to retrieve from the dictionary does not exist.

Read more