An open API service indexing awesome lists of open source software.

https://github.com/codelassey/windows-running-processes

In this lab, I used TCP Endpoint Viewer, a tool in Sysinternals Suite, to identify any running processes on a windows machine.
https://github.com/codelassey/windows-running-processes

endpoint tcpview windows

Last synced: 12 months ago
JSON representation

In this lab, I used TCP Endpoint Viewer, a tool in Sysinternals Suite, to identify any running processes on a windows machine.

Awesome Lists containing this project

README

          

# Scenario
In this lab, I explored windows processes. Processes are programs or applications in execution. I explored
the processes using Process Explorer in the Windows Sysinternals Suite. I also started and observed a
new process.

# Steps
- Downloaded [Windows Systinternals Suite](https://technet.microsoft.com/en-us/sysinternals/bb842062.aspx)
- Extracted the contents of the zip file and opened `tcpview.exe`
- Closed most softwares that were running
- Explored the `Isass.exe` windows process and identified the folder in which it was located to be `C:\Windows\System32\lsass.exe`
- Closed the properties window and checked that of other processes.
- I opened Microsoft Edge and observed in tcpview that the service had started and running in green colour.
- I closed the browser and realised the processes turned red in colour and stopped gradually.
- I opened Microsoft Edge again and researched the `msedge.exe` process. This executable runs the browser and its related processes, such as rendering web pages and handling network connections. It appeared multiple times and it means Edge uses a multi=process architecture, creating separate instances for tabs, extensions, etc.

# Screenshots
![sysinternals_download](images/SYSINTERNALS_EXTRACTION.png)
![](images/TCPVIEW_OPEN.png)
![](images/ISASS.png)
![](images/CHROME.png)
![](images/WEB_OPEN.png)
![](images/WEB_CLOSE.png)