>

Wireshark Port Filter vs Protocol Filter

Wireshark Port Filter vs Protocol Filter When analyzing network traffic using Wireshark, it’s crucial to understand the difference between the filters to effectively isolate and examine relevant data. We will discuss on the basis of port 80 filter and HTTP filter. Because HTTP itself uses the port 80. So, their will be some key difference when using these two filters. Port Filter: For this filter specifically targets traffic on ports. On this case port 80, which is the standard port for HTTP communication....

March 29, 2024 · 2 min · 302 words · Farhun

AutoCad Function Key Shortcut

Introduction AutoCAD provides several function key shortcuts (F1 through F12), each of which is associated with a specific command or action. These shortcuts are designed to expedite your workflow and reduce the need to navigate through menus and toolbars constantly. Let’s delve into the most commonly used function key shortcuts and their corresponding functions. Key Combinations F1 - Help F1 is the universal Help key in most software applications, including AutoCAD....

October 9, 2023 · 3 min · 469 words · Farhun

How to Run Yacht or Portainer on Ubuntu

Requirment needed to run Yacht or Portainer (Ubuntu) All we need to run yacht or Portainer to manage our docker container is docker itself. According to docker official documnetation we need to do the following. First command sudo apt-get update sudo apt-get install ca-certificates curl gnupg This will allow apt install over HTTPS. Second command sudo install -m 0755 -d /etc/apt/keyrings curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /etc/apt/keyrings/docker.gpg sudo chmod a+r /etc/apt/keyrings/docker....

August 31, 2023 · 2 min · 308 words · Farhun

Basics of Git: Part Two

In the last article we learned about git stage, commit, stash, reset and remove now we will move to some other commands to give this series a proper ending for basic idea and to get starting. Going back a commit This is essentially destroying history. So be cautious of this one. If we want a to go back to one commit behind or we want to delete a commit - git reset --hard HEAD~1 To revert to a specfic commit - git reset commit_id - git revert commit_id Then if we want to push that to remote (origin) - git push -f origin main checking a previous commit If we want to go back and just check a commit then - git checkout commit_id We cannot work while in this checkout mode After checking that commit and want to comeback to present - git checkout master Rebase Merge and rebase works in same way but with slight variation....

December 24, 2022 · 4 min · 748 words · Farhun

Basics of Git: Part One

Git in a nutshell What is git? Ans: Git is a program that constantly scans the file for changes and records them in order to create a version of those changes. That is why it is known as a version control system or version control tool. Flow of github Ans: There are different github with different flags to do many task. But here we mainly focusing on the basic git commands....

December 21, 2022 · 4 min · 795 words · Farhun

Powershell Customization

Powershell What exactly is PowerShell? Powershell is a task automation solution as well as a command line shell. Similar programs include bash, zsh, and others. PowerShell, on the other hand, is now cross-platform. It is now available for download on Windows, Mac, and Linux. This increases its versatility. But one thing people are afraid of is the command line. Powershell can only be run from the command line. So why not make it more appealing to use?...

October 25, 2022 · 2 min · 370 words · Farhun