当前位置:网站首页>Port inspection steps - 7680 port analysis - Dosvc service
Port inspection steps - 7680 port analysis - Dosvc service
2022-07-31 03:32:00 【Luming Tianya】
Introduction: Find the main process for the process started through the service, and there are a large number of intranet connections on port 7680. Baidu cannot find the port information. It needs to be proved that it is a system service, otherwise it is a worm.
1. Confirm the process PID corresponding to the port
netstat -ano

Port 7680 corresponds to pid: 6128
2. Find the process corresponding to pid
tasklist | find "6128"

The corresponding process is svchost.exe, a system service process, which is the general host process name of the service running from the dynamic link library (DLL). Many services are started by injecting into the program, so there will be manyprocess of this file.Indicates that the process is started from a service, and finds the corresponding service.
3. Find the service name corresponding to pid 6128 through tasklist /svc:

The service name is: DoSvc, enter "Services" to find the service, but you may not be able to find the service, because the above is "Service name", and the management tool"Services" shows "display name", as shown below
4. You can use the command to find the corresponding "display name"
wmic service where name = "dosvc" get displayname

Got "Display Name": Delivery Optimization
5. Microsoft's query to get Delivery Optimization is a mode of Windows 10 patch update called "delivery optimization". The intranet host can download the patch from the downloaded host, and it also occupies the network speed of your host.

Close this port: "Update"-"Advanced Options"-"Delivery Optimization"-"Turn off allow downloads from other computers"
Many backdoors also use "services" to load processes, making it impossible to directly view the main process name in the process
边栏推荐
猜你喜欢
![[Swift]自定义点击APP图标弹出的快捷方式](/img/d4/84b237995fc3d3700916eb57f6670d.png)
[Swift]自定义点击APP图标弹出的快捷方式

接口测试关键技术
![[C language] Three-pointed chess (classic solution + list diagram)](/img/64/18ed08b64f9618bbd7f24ee16e6a6f.jpg)
[C language] Three-pointed chess (classic solution + list diagram)

Web container and IIS --- Middleware penetration method 1

A brief introduction to the CheckboxListTile component of the basic components of Flutter

postgresql 15源码浅析(5)—— pg_control

Ambiguous method call.both

BP神经网络

IIR filter and FIR filter

一份高质量的测试用例如何养成?
随机推荐
一份高质量的测试用例如何养成?
RESTful api接口设计规范
Automation strategies for legacy systems
Know the showTimePicker method of the basic components of Flutter
endian mode
数据库文件中的未分配的块和未使用的块的区别
LeetCode简单题之两个数组间的距离值
addressable in Golang
【CocosCreator 3.5】CocosCreator get network status
CloudCompare&PCL 计算两个点云之间的重叠度
STM32问题合集
[Compilation principle] Design principle and implementation of recursive descent parsing
5. How does the SAP ABAP OData service support the $filter operation
[C language] General method of expression evaluation
With 7 years of experience, how can functional test engineers improve their abilities step by step?
Several common errors when using MP
解析小结—自用
Atomic operation CAS
「 每日一练,快乐水题 」1331. 数组序号转换
Golang中的addressable