Usb class ff subclass 00 prot 00

Author: E | 2025-04-24

★★★★☆ (4.8 / 898 reviews)

cyd network utilities

USB CLASS 00 SUBCLASS 00 PROT 00 drivers. Here is 1 driver compatible with USB CLASS 00 SUBCLASS 00 PROT 00. This is Device ID of NetComm USB Port Driver.

kgb archiver 2.0 beta 1

Usb Class Ff Subclass Ff Software - Free Download Usb Class

Realtek 8192FU Linux USB无线网卡驱动原始代码来源于: Internet Archive 。点击这里:下载原文件 。原始文档里说支持Linux内核版本2.6.18 ~ 5.1。但不支持 Linux 内核5.1+以上的版本,也不支持 RHEL/CentOS > 7.0以上的版本。经过多次修改后,在原来的基础上,增加了对 Linux 内核5.2 ~ 5.19 / 6.0 ~ 6.4 的支持,以及对 RHEL/CentOS 7.x/8.x的支持。目前已测试的Linux发行版及结果:已通过:Red Hat server 7.0;CentOS 7.0~7.9/8.3/8.4/8.5;Rocky Linux 8.4/8.5/8.6/9.0;Fedora 36-1.5 / 38-1.6;Ubuntu Server 16.04/18.04/20.04/21.04/21.10/22.04;Ubuntu Desktop 18.04/20.04/22.04;linux mint 20.1;kali 2021.1;archlinux 2021.09.01/2022.06.01/2022.08.05/2022.10.01;其他未测试的,如果内核版本符合上述要求,通常情况下是可以使用的,但不能完全肯定。使用方式安装内核头文件# ubuntu、kali 用户通过以下命令安装sudo apt install -y linux-headers-$(uname -r)# Arch 用户通过以下命令安装sudo pacman -S linux-headers# centos 用户通过以下命令安装sudo yum install -y kernel-headers-$(uname -r) kernel-devel-$(uname -r)# centos 7.x/8.x 的 yum 源通常只提供对最新发行版的支持,所以像CentOS 7.8等非最新发行版就需要手动到 下载rpm文件,然后进行手动安装安装编译器:# ubuntu、kali 用户通过以下命令安装sudo apt install make gcc bc# Arch 用户通过以下命令安装sudo pacman -S make gcc bc# centos 用户通过以下命令安装sudo yum install make gcc bc elfutils-libelf-devel然后进入驱动代码目录:编译并安装:make -j$(nproc)sudo make install装载到内核模块:注意:USB网卡上的LED指示灯可能不会闪烁,但是设备这时候可以使用了。查看USB接口列表:如果出现command not found的问题就需要先安装usbutils:# ubuntu 用户通过以下命令安装sudo apt install usbutils# Arch 用户通过以下命令安装sudo pacman -S usbutils# centos 用户通过以下命令安装sudo yum install usbutils查看USB设备信息:usb-devices | grep "Vendor=0bda ProdID=f192" -B2 -A5关键信息看最后一行: Driver=rtl8192fu 则说明该设备已经跟驱动匹配上了;Driver=(none) 则说明没有找到设备对应的驱动。驱动跟设备匹配成功的情况:ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#= 0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=rtl8192fu">T: Bus=03 Lev=01 Prnt=01 Port=01 Cnt=02 Dev#= 5 Spd=480 MxCh= 0D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#= 0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=rtl8192fu驱动匹配失败的情况:ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#=0x0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)">T: Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 3 Spd=480 MxCh= 0D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#=0x0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)成功之后,就可以去配置无线网络了。驱动的卸载:sudo modprobe -r 8192fucd rtl8192fu/sudo make uninstall对 dkms的支持每次内核更新之后,驱动都需要手动重新编译安装,可能比较麻烦。使用dkms,可以在更新内核时自动完成驱动的编译和安装。安装内核头文件# ubuntu、kali 用户通过以下命令安装sudo apt install -y linux-headers-$(uname -r)# centos 用户通过以下命令安装sudo yum install -y kernel-headers-$(uname -r) kernel-devel-$(uname -r)# centos 7.x/8.x 的 yum 源通常只提供对最新发行版的支持,所以像CentOS 7.8等非最新发行版就需要手动到 下载rpm文件,然后进行手动安装安装编译器:# ubuntu、kali 用户通过以下命令安装sudo apt install make gcc bc# centos 用户通过以下命令安装sudo yum install make gcc bc elfutils-libelf-devel安装dkms# ubuntu、kali 用户通过以下命令安装sudo apt install build-essential dkms -y# centos 用户通过以下两条命令安装sudo yum install epel-release -ysudo yum install dkms -y使用:# 进入驱动源码目录cd rtl8192fu/# 赋予可执行权限sudo chmod a+x ./dkms-*# 使用 dkms安装驱动sudo ./dkms-install.sh# 然后将驱动装载到内核模块sudo modprobe 8192fu# 如果需要卸载驱动的话可以使用以下命令sudo modprobe -r 8192fusudo ./dkms-remove.sh USB CLASS 00 SUBCLASS 00 PROT 00 drivers. Here is 1 driver compatible with USB CLASS 00 SUBCLASS 00 PROT 00. This is Device ID of NetComm USB Port Driver. The device is a WinUSB Device.Install the driver by specifying the system-provided device class in Device Manager.Install the driver by using a custom INF. You can get the INF in either of these two ways:Get the INF from the hardware vendor.Write a custom INF that references the Microsoft-provided Winusb.inf file. For more information, see WinUSB (Winusb.sys) installation.Get information about your deviceGet the device interface GUID, hardware ID, and device class information about your device.You can obtain that information from the device manufacturer.Vendor and product identifiersIn Device Manager, view the device properties. On the Details tab, view the Hardware Id property value. That value is a combination of those two identifiers. For example, for the SuperMUTT device, the Hardware Id is "USB\VID_045E&PID_F001"; vendor ID is "0x045E" and product ID is "0xF001".Device class, subclass, and protocol codesDevice interface GUIDAlternatively, you can view information the registry. For more information, see USB device registry entries.Determine if the USB API set allows the device class, subclass, and protocolYou can write a UWP app, if device class, subclass, and protocol code of the device is in the following list:name:cdcControl, classId:02 * *name:physical, classId:05 * *name:personalHealthcare, classId:0f 00 00name:activeSync, classId:ef 01 01name:palmSync, classId:ef 01 02name:deviceFirmwareUpdate, classId:fe 01 01name:irda, classId:fe 02 00name:measurement, classId:fe 03 *name:vendorSpecific, classId:ff * *Create a basic Visual Studio projectCreate a basic Visual Studio project that you can extend in this tutorial.For more information, see Getting started with UWP apps.Add USB device capabilities to the app manifestLearn how to add USB device capabilities to the app manifest.QuickStart: How to add USB device capabilities to the app manifestOpen your Package.appxmanifest file in a text editor and add the DeviceCapability element with Name attribute set to "usb" as shown in this example.NoteYou cannot modify the USB device capability in Visual Studio. You must right-click the Package.appxmanifest file

Comments

User7279

Realtek 8192FU Linux USB无线网卡驱动原始代码来源于: Internet Archive 。点击这里:下载原文件 。原始文档里说支持Linux内核版本2.6.18 ~ 5.1。但不支持 Linux 内核5.1+以上的版本,也不支持 RHEL/CentOS > 7.0以上的版本。经过多次修改后,在原来的基础上,增加了对 Linux 内核5.2 ~ 5.19 / 6.0 ~ 6.4 的支持,以及对 RHEL/CentOS 7.x/8.x的支持。目前已测试的Linux发行版及结果:已通过:Red Hat server 7.0;CentOS 7.0~7.9/8.3/8.4/8.5;Rocky Linux 8.4/8.5/8.6/9.0;Fedora 36-1.5 / 38-1.6;Ubuntu Server 16.04/18.04/20.04/21.04/21.10/22.04;Ubuntu Desktop 18.04/20.04/22.04;linux mint 20.1;kali 2021.1;archlinux 2021.09.01/2022.06.01/2022.08.05/2022.10.01;其他未测试的,如果内核版本符合上述要求,通常情况下是可以使用的,但不能完全肯定。使用方式安装内核头文件# ubuntu、kali 用户通过以下命令安装sudo apt install -y linux-headers-$(uname -r)# Arch 用户通过以下命令安装sudo pacman -S linux-headers# centos 用户通过以下命令安装sudo yum install -y kernel-headers-$(uname -r) kernel-devel-$(uname -r)# centos 7.x/8.x 的 yum 源通常只提供对最新发行版的支持,所以像CentOS 7.8等非最新发行版就需要手动到 下载rpm文件,然后进行手动安装安装编译器:# ubuntu、kali 用户通过以下命令安装sudo apt install make gcc bc# Arch 用户通过以下命令安装sudo pacman -S make gcc bc# centos 用户通过以下命令安装sudo yum install make gcc bc elfutils-libelf-devel然后进入驱动代码目录:编译并安装:make -j$(nproc)sudo make install装载到内核模块:注意:USB网卡上的LED指示灯可能不会闪烁,但是设备这时候可以使用了。查看USB接口列表:如果出现command not found的问题就需要先安装usbutils:# ubuntu 用户通过以下命令安装sudo apt install usbutils# Arch 用户通过以下命令安装sudo pacman -S usbutils# centos 用户通过以下命令安装sudo yum install usbutils查看USB设备信息:usb-devices | grep "Vendor=0bda ProdID=f192" -B2 -A5关键信息看最后一行: Driver=rtl8192fu 则说明该设备已经跟驱动匹配上了;Driver=(none) 则说明没有找到设备对应的驱动。驱动跟设备匹配成功的情况:ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#= 0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=rtl8192fu">T: Bus=03 Lev=01 Prnt=01 Port=01 Cnt=02 Dev#= 5 Spd=480 MxCh= 0D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#= 0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=rtl8192fu驱动匹配失败的情况:ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#=0x0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)">T: Bus=01 Lev=01 Prnt=01 Port=00 Cnt=01 Dev#= 3 Spd=480 MxCh= 0D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00 MxPS=64 #Cfgs= 1P: Vendor=0bda ProdID=f192 Rev=02.00S: Manufacturer=RealtekS: Product=802.11n WLAN AdapterS: SerialNumber=60EE5CBDFDE9C: #Ifs= 1 Cfg#= 1 Atr=80 MxPwr=500mAI: If#=0x0 Alt= 0 #EPs= 8 Cls=ff(vend.) Sub=ff Prot=ff Driver=(none)成功之后,就可以去配置无线网络了。驱动的卸载:sudo modprobe -r 8192fucd rtl8192fu/sudo make uninstall对 dkms的支持每次内核更新之后,驱动都需要手动重新编译安装,可能比较麻烦。使用dkms,可以在更新内核时自动完成驱动的编译和安装。安装内核头文件# ubuntu、kali 用户通过以下命令安装sudo apt install -y linux-headers-$(uname -r)# centos 用户通过以下命令安装sudo yum install -y kernel-headers-$(uname -r) kernel-devel-$(uname -r)# centos 7.x/8.x 的 yum 源通常只提供对最新发行版的支持,所以像CentOS 7.8等非最新发行版就需要手动到 下载rpm文件,然后进行手动安装安装编译器:# ubuntu、kali 用户通过以下命令安装sudo apt install make gcc bc# centos 用户通过以下命令安装sudo yum install make gcc bc elfutils-libelf-devel安装dkms# ubuntu、kali 用户通过以下命令安装sudo apt install build-essential dkms -y# centos 用户通过以下两条命令安装sudo yum install epel-release -ysudo yum install dkms -y使用:# 进入驱动源码目录cd rtl8192fu/# 赋予可执行权限sudo chmod a+x ./dkms-*# 使用 dkms安装驱动sudo ./dkms-install.sh# 然后将驱动装载到内核模块sudo modprobe 8192fu# 如果需要卸载驱动的话可以使用以下命令sudo modprobe -r 8192fusudo ./dkms-remove.sh

2025-04-08
User5097

The device is a WinUSB Device.Install the driver by specifying the system-provided device class in Device Manager.Install the driver by using a custom INF. You can get the INF in either of these two ways:Get the INF from the hardware vendor.Write a custom INF that references the Microsoft-provided Winusb.inf file. For more information, see WinUSB (Winusb.sys) installation.Get information about your deviceGet the device interface GUID, hardware ID, and device class information about your device.You can obtain that information from the device manufacturer.Vendor and product identifiersIn Device Manager, view the device properties. On the Details tab, view the Hardware Id property value. That value is a combination of those two identifiers. For example, for the SuperMUTT device, the Hardware Id is "USB\VID_045E&PID_F001"; vendor ID is "0x045E" and product ID is "0xF001".Device class, subclass, and protocol codesDevice interface GUIDAlternatively, you can view information the registry. For more information, see USB device registry entries.Determine if the USB API set allows the device class, subclass, and protocolYou can write a UWP app, if device class, subclass, and protocol code of the device is in the following list:name:cdcControl, classId:02 * *name:physical, classId:05 * *name:personalHealthcare, classId:0f 00 00name:activeSync, classId:ef 01 01name:palmSync, classId:ef 01 02name:deviceFirmwareUpdate, classId:fe 01 01name:irda, classId:fe 02 00name:measurement, classId:fe 03 *name:vendorSpecific, classId:ff * *Create a basic Visual Studio projectCreate a basic Visual Studio project that you can extend in this tutorial.For more information, see Getting started with UWP apps.Add USB device capabilities to the app manifestLearn how to add USB device capabilities to the app manifest.QuickStart: How to add USB device capabilities to the app manifestOpen your Package.appxmanifest file in a text editor and add the DeviceCapability element with Name attribute set to "usb" as shown in this example.NoteYou cannot modify the USB device capability in Visual Studio. You must right-click the Package.appxmanifest file

2025-03-26
User4727

Install MonitorMirekusoft LLCThis is a self-extracting archive and installer.File name:setupinstallmonitor_x64.exeDescription:Install Monitor InstallerMD5:9da9fa27758335e71a1b42220a7caf3aSHA-1:e435b070386af81a94023a4e097a405d78ed1496SHA-256:0fd0e0a095dcef3fda47406060942fdc7ebd0cec8283ab1db460870506f183c2Scanner detections:0 / 68Status:Clean (as of last analysis)Analysis date:3/23/2025 10:26:28 AM UTC (today)File size:2.6 MB (2,688,840 bytes)Copyright:Copyright © 2011 Mirekusoft LLC. All rights reserved.Original file name:WEXTRACT.EXEFile type:Executable application (Win32 EXE)Language:English (United States)Common path:C:\users\{user}\downloads\downloads\setupinstallmonitor_x64.exeValid from:12/3/2011 12:00:00 AMValid to:12/2/2012 11:59:59 PMSubject:CN=Mirekusoft LLC, OU=Digital ID Class 3 - Microsoft Software Validation v2, O=Mirekusoft LLC, L=Sunnyvale, S=California, C=USIssuer:CN=VeriSign Class 3 Code Signing 2010 CA, OU=Terms of use at (c)10, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=USSerial number:46641A18FE3390E0A5B8514499E52D47Compilation timestamp:3/8/2011 12:46:37 PMCTPH (ssdeep):49152:FQO8aA8fKxC4CrKae92a4p8XCrevOnUgrW4dCOuuANa/SuhiCnq1:6O8ahSk4Crze92aK8XCCcU/OuTmtSEntry point:E8, 5D, 07, 00, 00, E9, 4D, FD, FF, FF, CC, CC, CC, CC, CC, 3B, 0D, C4, C2, 00, 01, 75, 03, C2, 00, 00, E9, D9, 07, 00, 00, CC, CC, CC, CC, CC, FF, 25, 7C, 12, 00, 01, CC, CC, CC, CC, CC, CC, FF, 25, 78, 12, 00, 01, CC, CC, CC, CC, CC, 8B, FF, 55, 8B, EC, 81, EC, D0, 02, 00, 00, A1, C4, C2, 00, 01, 33, C5, 89, 45, FC, 89, 85, E0, FD, FF, FF, 89, 8D, DC, FD, FF, FF, 89, 95, D8, FD, FF, FF, 89, 9D, D4, FD, FF, FF, 89, B5, D0, FD, FF, FF, 89, BD, CC, FD, FF, FF, 66, 8C, 95, F8, FD, FF, FF, 66, 8C, 8D, EC, FD...[+]Entropy:7.9832 (probably packed)Code size:43.5 KB (44,544 bytes)

2025-03-31
User5370

Jetico, Inc. UnPackJetico Inc. OyThis is a setup program which is used to install the application. The file has been seen being downloaded from www.jetico.com.File name:bctextencoder.exePublisher:Jetico, Inc. (signed by Jetico Inc. Oy)Product:Jetico, Inc. UnPackDescription:Jetico Self-Extracting Archive Utility...MD5:0b3504a61a0b418dbdb1a6176c97315eSHA-1:8424ef604ca369258290efc35799c23c25b01b34SHA-256:6310962328a52a8347515da8c04ca2c27ebbdc29c75cd3754ee0a98564481187Scanner detections:0 / 68Status:Clean (as of last analysis)Analysis date:3/14/2025 3:16:33 AM UTC (today)File size:1.2 MB (1,294,800 bytes)Copyright:Copyright © 1999-2014Original file name:UnPack.exeFile type:Executable application (Win32 EXE)Language:English (United States)Common path:C:\users\{user}\downloads\bctextencoder.exeValid from:9/7/2012 1:00:00 AMValid to:9/9/2015 12:59:59 AMSubject:CN=Jetico Inc. Oy, OU=Digital ID Class 3 - Microsoft Software Validation v2, O=Jetico Inc. Oy, L=Espoo, S=Uusimaa, C=FIIssuer:CN=VeriSign Class 3 Code Signing 2010 CA, OU=Terms of use at (c)10, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=USSerial number:31C10146F5E05334B854758765316025Compilation timestamp:11/17/2014 10:04:35 AMCTPH (ssdeep):24576:Ki1TcGoBbKuPKntpU0NYnPVNcCrunZ0IFrSPXcSJgOMZoQtnqPARVEGzlF:K8TFoBbKcKA/cCrunZdFmNooKntRLbEntry point:E8, FB, 6E, 00, 00, E9, 78, FE, FF, FF, 8B, FF, 55, 8B, EC, 56, FF, 35, 28, A2, 41, 00, 8B, 35, 04, 31, 41, 00, FF, D6, 85, C0, 74, 21, A1, 24, A2, 41, 00, 83, F8, FF, 74, 17, 50, FF, 35, 28, A2, 41, 00, FF, D6, FF, D0, 85, C0, 74, 08, 8B, 80, F8, 01, 00, 00, EB, 27, BE, 8C, 6F, 41, 00, 56, FF, 15, E0, 30, 41, 00, 85, C0, 75, 0B, 56, E8, E7, D3, FF, FF, 59, 85, C0, 74, 18, 68, 7C, 6F, 41, 00, 50, FF, 15, 44, 30, 41, 00, 85, C0, 74, 08, FF, 75, 08, FF, D0, 89, 45, 08, 8B, 45, 08, 5E, 5D, C3, 6A, 00, E8, 87...[+]Entropy:7.9406 (probably packed)Code size:71 KB (72,704 bytes)The file bctextencoder.exe has been seen being distributed by the following URL.

2025-04-07
User4126

Visualware IncThis is a setup program which is used to install the application. The file has been seen being downloaded from dw.uptodown.com.File name:myspeed-pc-lite-2.0b.exeMD5:23edc4af6c73637fb336160dd8246b89SHA-1:c63b9e893f0356c1b1b631f34dd4b67a6e39417dSHA-256:7bdd9cc896881bfa685e83d53c686cea5eb11a622401042ed8c8465f6e1b6ca3Scanner detections:0 / 68Status:Clean (as of last analysis)Analysis date:3/15/2025 6:39:28 AM UTC (today)File size:1.4 MB (1,454,568 bytes)File type:Executable application (Win32 EXE)Common path:C:\users\{user}\downloads\myspeed-pc-lite-2.0b.exeValid from:12/29/2005 6:00:00 PMValid to:1/20/2008 5:59:59 PMSubject:CN=Visualware Inc, OU=Tecnology Services, OU=Digital ID Class 3 - Microsoft Software Validation v2, O=Visualware Inc, L=Turlock, S=California, C=USIssuer:CN=VeriSign Class 3 Code Signing 2004 CA, OU=Terms of use at (c)04, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=USSerial number:72CE0B9E8536E63836DCCD4FF1477AEECompilation timestamp:12/19/2005 12:55:35 PMCTPH (ssdeep):24576:NEg1mAPy+ZUETl8q75k/ihhszg0XljBCIuNdQr+uSYI7xCw6:NPtPy+Kkuq75kshgtjIIuAoY4x6Entry point:55, 8B, EC, 6A, FF, 68, 00, 31, 40, 00, 68, 50, 28, 40, 00, 64, A1, 00, 00, 00, 00, 50, 64, 89, 25, 00, 00, 00, 00, 83, EC, 68, 53, 56, 57, 89, 65, E8, 33, DB, 89, 5D, FC, 6A, 02, FF, 15, E0, 30, 40, 00, 59, 83, 0D, 98, 45, 40, 00, FF, 83, 0D, 9C, 45, 40, 00, FF, FF, 15, DC, 30, 40, 00, 8B, 0D, 94, 45, 40, 00, 89, 08, FF, 15, D8, 30, 40, 00, 8B, 0D, 90, 45, 40, 00, 89, 08, A1, D4, 30, 40, 00, 8B, 00, A3, A0, 45, 40, 00, E8, 10, 01, 00, 00, 39, 1D, 50, 45, 40, 00, 75, 0C, 68, 44, 28, 40, 00, FF, 15, D0, 30...[+]Developed / compiled with:Microsoft Visual C++ v6.0Code size:6.5 KB (6,656 bytes)The file myspeed-pc-lite-2.0b.exe has been seen being distributed by the following URL.

2025-04-24
User2815

Dynamsoft SourceAnywhere for VSS 5.3.1.1 Professional ClieDynamSoft CorporationThis is a self-extracting archive and installer.File name:dynamsoft sourceanywhere for vss 5.3.1.1 professional client.exePublisher:Dynamsoft (signed by DynamSoft Corporation)Product:Dynamsoft SourceAnywhere for VSS 5.3.1.1 Professional ClieDescription:Setup Launcher MD5:6f950d74e80cd76f026201b2b4a9a5c1SHA-1:380314273918eddb2e36f176f5205ccf855fdb5eSHA-256:940d154cdb9ba182e73a20e844578b077dc6d6a69928776fb24626002efa6a1aScanner detections:0 / 68Status:Clean (as of last analysis)Analysis date:3/15/2025 4:18:26 AM UTC (today)File size:16 MB (16,731,248 bytes)Copyright:Copyright (C) 2006 Macrovision Corporation Original file name:Setup.exeFile type:Executable application (Win32 EXE)Language:English (United States)Common path:C:\users\{user}\appdata\roaming\skype\my skype received files\dynamsoft sourceanywhere for vss 5.3.1.1 professional client.exeValid from:10/16/2006 7:00:00 AMValid to:10/31/2008 6:59:59 AMSubject:CN=DynamSoft Corporation, OU=Development, OU=Digital ID Class 3 - Microsoft Software Validation v2, O=DynamSoft Corporation, L=Toronto, S=Ontario, C=CAIssuer:CN=VeriSign Class 3 Code Signing 2004 CA, OU=Terms of use at (c)04, OU=VeriSign Trust Network, O="VeriSign, Inc.", C=USSerial number:46096BDB17F44157CEC163CAD5527CEECompilation timestamp:8/8/2006 12:15:56 PMCTPH (ssdeep):393216:ZEs1h9r7WgoYrTdjGPFFeS0LHQYC0gx5nWf:x1v/oYpGPFFeS0PC0gx5nOEntry point:55, 8B, EC, 6A, FF, 68, 20, 30, 43, 00, 68, 28, 90, 42, 00, 64, A1, 00, 00, 00, 00, 50, 64, 89, 25, 00, 00, 00, 00, 83, EC, 58, 53, 56, 57, 89, 65, E8, FF, 15, C0, 20, 43, 00, 33, D2, 8A, D4, 89, 15, 74, FF, 43, 00, 8B, C8, 81, E1, FF, 00, 00, 00, 89, 0D, 70, FF, 43, 00, C1, E1, 08, 03, CA, 89, 0D, 6C, FF, 43, 00, C1, E8, 10, A3, 68, FF, 43, 00, 6A, 01, E8, 5D, 20, 00, 00, 59, 85, C0, 75, 08, 6A, 1C, E8, C3, 00, 00, 00, 59, E8, 5B, 11, 00, 00, 85, C0, 75, 08, 6A, 10, E8, B2, 00, 00, 00, 59, 33, F6, 89, 75...[+]Developed / compiled with:Microsoft Visual C++ v6.0Code size:196 KB (200,704 bytes)

2025-04-22

Add Comment