>

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. Use this filter when you want to focus solely on TCP connections established on port 80. It captures the entire TCP communication process, including TCP handshakes, acknowledgments, and data transfers. This filter is useful for gaining insights into low-level TCP interactions. Applying filter for port 80 ...

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. Pressing F1 brings up context-sensitive help, allowing you to quickly access information about the tool or command you’re using. It’s a valuable resource for learning and troubleshooting. ...

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.gpg This will add docker GPG keyrings for safety purpose. ...

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. Merge squashes all the commit and puts it as one commit in the branch. On the other hand rebase takes those commits and puts infront of the branch. Image below describes it well. ...

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. One of the basic command is status command to check on the repository. ...

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