实例介绍
AsyncRAT 是一个远程访问工具(RAT),旨在通过安全加密连接远程监控和控制其他计算机。
该项目包括以下内容:
- 插件系统,用于发送和接收命令
- 控制客户端的访问终端
- 可通过终端管理的可配置客户端
- 记录所有重要事件的日志服务器
特色功能包括:
- 客户端屏幕查看器和录制器
- 客户端防病毒和完整性管理器
- 客户端SFTP访问,包括上传和下载
- 客户端和服务器聊天窗口
- 客户端动态DNS和多服务器支持(可配置)
- 客户端密码恢复
- 客户端JIT编译器
- 客户端键盘记录器
- 客户端反分析(可配置)
- 服务器控制更新
- 客户端防恶意软件启动
- 服务器配置编辑器
- 服务器多端口接收器(可配置)
- 服务器缩略图
- 服务器二进制构建器(可配置)
- 服务器混淆器(可配置)
【实例截图】
文件清单
└── AsyncRAT-C-Sharp-0f0cba4ec3985c38082c6abb3e1e01895120ffb6
├── AsyncRAT-C#
│ ├── AsyncRAT-Sharp.sln
│ ├── Client
│ │ ├── Algorithm
│ │ │ ├── Aes256.cs
│ │ │ └── Sha256.cs
│ │ ├── app.config
│ │ ├── app.manifest
│ │ ├── Client.csproj
│ │ ├── Connection
│ │ │ └── ClientSocket.cs
│ │ ├── Handle Packet
│ │ │ └── Packet.cs
│ │ ├── Helper
│ │ │ ├── Anti_Analysis.cs
│ │ │ ├── CheckMiner.cs
│ │ │ ├── HwidGen.cs
│ │ │ ├── IdSender.cs
│ │ │ ├── Methods.cs
│ │ │ ├── MutexControl.cs
│ │ │ ├── NativeMethods.cs
│ │ │ ├── ProcessCritical.cs
│ │ │ └── SetRegistry.cs
│ │ ├── ILMergeOrder.txt
│ │ ├── ILMerge.props
│ │ ├── Install
│ │ │ └── NormalStartup.cs
│ │ ├── packages.config
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ └── Settings.cs
│ ├── MessagePack
│ │ ├── MessagePack
│ │ │ ├── BytesTools.cs
│ │ │ ├── MsgPack.cs
│ │ │ ├── MsgPackType.cs
│ │ │ ├── ReadTools.cs
│ │ │ ├── WriteTools.cs
│ │ │ └── Zip.cs
│ │ ├── MessagePackLib.csproj
│ │ └── Properties
│ │ └── AssemblyInfo.cs
│ ├── Plugin
│ │ ├── Chat
│ │ │ ├── Chat
│ │ │ │ ├── Chat.csproj
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FormChat.cs
│ │ │ │ ├── FormChat.Designer.cs
│ │ │ │ ├── FormChat.resx
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Chat.sln
│ │ ├── Extra
│ │ │ ├── Extra
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── Extra.csproj
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── Handler
│ │ │ │ │ ├── HandleBlankScreen.cs
│ │ │ │ │ ├── HandleDisableDefender.cs
│ │ │ │ │ └── Wallpaper.cs
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Extra.sln
│ │ ├── FileManager
│ │ │ ├── FileManager
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FileManager.csproj
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── Handler
│ │ │ │ │ └── FileManager.cs
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── TempSocket.cs
│ │ │ └── FileManager.sln
│ │ ├── FileSearcher
│ │ │ ├── FileSearcher
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FileSearcher.csproj
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── FileSearcher.sln
│ │ ├── LimeLogger
│ │ │ ├── LimeLogger
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── LimeLogger.csproj
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── LimeLogger.sln
│ │ ├── Miscellaneous
│ │ │ ├── Miscellaneous
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── Handler
│ │ │ │ │ ├── HandleBotKiller.cs
│ │ │ │ │ ├── HandleDos.cs
│ │ │ │ │ ├── HandleLimeUSB.cs
│ │ │ │ │ ├── HandlerExecuteDotNetCode.cs
│ │ │ │ │ ├── HandleShell.cs
│ │ │ │ │ └── HandleTorrent.cs
│ │ │ │ ├── IconLib.dll
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── Miscellaneous.csproj
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ ├── AssemblyInfo.cs
│ │ │ │ ├── Resources.Designer.cs
│ │ │ │ └── Resources.resx
│ │ │ └── Miscellaneous.sln
│ │ ├── Options
│ │ │ ├── Options
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── Handler
│ │ │ │ │ ├── HandlePcOptions.cs
│ │ │ │ │ ├── HandleReportWindow.cs
│ │ │ │ │ ├── HandleThumbnails.cs
│ │ │ │ │ ├── HandleUAC.cs
│ │ │ │ │ └── HandleUninstall.cs
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── Methods.cs
│ │ │ │ ├── Options.csproj
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── Options.sln
│ │ ├── ProcessManager
│ │ │ ├── ProcessManager
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── ProcessManager.csproj
│ │ │ │ └── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ └── ProcessManager.sln
│ │ ├── Recovery
│ │ │ ├── Recovery
│ │ │ │ ├── Browsers
│ │ │ │ │ ├── Chromium
│ │ │ │ │ │ ├── Account.cs
│ │ │ │ │ │ ├── AesGcm.cs
│ │ │ │ │ │ ├── BCrypt.cs
│ │ │ │ │ │ ├── ChromiumCookies.cs
│ │ │ │ │ │ └── Chromium.cs
│ │ │ │ │ ├── CredentialModel.cs
│ │ │ │ │ ├── Firefox
│ │ │ │ │ │ ├── Cookies
│ │ │ │ │ │ │ └── FFCookiesGrabber.cs
│ │ │ │ │ │ ├── FFDecryptor.cs
│ │ │ │ │ │ ├── Firefox.cs
│ │ │ │ │ │ └── FirefoxPassReader.cs
│ │ │ │ │ ├── IPassReader.cs
│ │ │ │ │ └── SQLiteHandler.cs
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── Recovery.csproj
│ │ │ └── Recovery.sln
│ │ ├── RemoteCamera
│ │ │ ├── RemoteCamera
│ │ │ │ ├── AForge
│ │ │ │ │ ├── Video
│ │ │ │ │ │ ├── IVideoSource.cs
│ │ │ │ │ │ └── VideoEvents.cs
│ │ │ │ │ └── Video.DirectShow
│ │ │ │ │ ├── CameraControlProperty.cs
│ │ │ │ │ ├── FilterInfoCollection.cs
│ │ │ │ │ ├── FilterInfo.cs
│ │ │ │ │ ├── Internals
│ │ │ │ │ │ ├── IAMCameraControl.cs
│ │ │ │ │ │ ├── IAMCrossbar.cs
│ │ │ │ │ │ ├── IAMStreamConfig.cs
│ │ │ │ │ │ ├── IAMVideoControl.cs
│ │ │ │ │ │ ├── IBaseFilter.cs
│ │ │ │ │ │ ├── ICaptureGraphBuilder2.cs
│ │ │ │ │ │ ├── ICreateDevEnum.cs
│ │ │ │ │ │ ├── IEnumFilters.cs
│ │ │ │ │ │ ├── IEnumPins.cs
│ │ │ │ │ │ ├── IFilterGraph2.cs
│ │ │ │ │ │ ├── IFilterGraph.cs
│ │ │ │ │ │ ├── IGraphBuilder.cs
│ │ │ │ │ │ ├── IMediaControl.cs
│ │ │ │ │ │ ├── IMediaEventEx.cs
│ │ │ │ │ │ ├── IPin.cs
│ │ │ │ │ │ ├── IPropertyBag.cs
│ │ │ │ │ │ ├── IReferenceClock.cs
│ │ │ │ │ │ ├── ISampleGrabberCB.cs
│ │ │ │ │ │ ├── ISampleGrabber.cs
│ │ │ │ │ │ ├── ISpecifyPropertyPages.cs
│ │ │ │ │ │ ├── Structures.cs
│ │ │ │ │ │ ├── Uuids.cs
│ │ │ │ │ │ └── Win32.cs
│ │ │ │ │ ├── PhysicalConnectorType.cs
│ │ │ │ │ ├── Uuids.cs
│ │ │ │ │ ├── VideoCapabilities.cs
│ │ │ │ │ ├── VideoCaptureDevice.cs
│ │ │ │ │ └── VideoInput.cs
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── RemoteCamera.csproj
│ │ │ └── RemoteCamera.sln
│ │ ├── RemoteDesktop
│ │ │ ├── RemoteDesktop
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ ├── RemoteDesktop.csproj
│ │ │ │ └── StreamLibrary
│ │ │ │ ├── Enums.cs
│ │ │ │ ├── IUnsafeCodec.cs
│ │ │ │ ├── IVideoCodec.cs
│ │ │ │ ├── src
│ │ │ │ │ ├── JpgCompression.cs
│ │ │ │ │ ├── LzwCompression.cs
│ │ │ │ │ └── NativeMethods.cs
│ │ │ │ └── UnsafeCodecs
│ │ │ │ └── UnsafeStreamCodec.cs
│ │ │ └── RemoteDesktop.sln
│ │ ├── SendFile
│ │ │ ├── SendFile
│ │ │ │ ├── Connection.cs
│ │ │ │ ├── FodyWeavers.xml
│ │ │ │ ├── FodyWeavers.xsd
│ │ │ │ ├── Handler
│ │ │ │ │ ├── HandleMiner.cs
│ │ │ │ │ ├── HandleSendTo.cs
│ │ │ │ │ └── HandleUninstall.cs
│ │ │ │ ├── ILMergeOrder.txt
│ │ │ │ ├── ILMerge.props
│ │ │ │ ├── Methods.cs
│ │ │ │ ├── packages.config
│ │ │ │ ├── Packet.cs
│ │ │ │ ├── Plugin.cs
│ │ │ │ ├── Properties
│ │ │ │ │ └── AssemblyInfo.cs
│ │ │ │ └── SendFile.csproj
│ │ │ └── SendFile.sln
│ │ └── SendMemory
│ │ ├── SendMemory
│ │ │ ├── Connection.cs
│ │ │ ├── Handler
│ │ │ │ ├── HandleMiner.cs
│ │ │ │ └── HandleSendTo.cs
│ │ │ ├── ILMergeOrder.txt
│ │ │ ├── ILMerge.props
│ │ │ ├── packages.config
│ │ │ ├── Packet.cs
│ │ │ ├── Plugin.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── SendMemory.csproj
│ │ │ └── SendToMemory.cs
│ │ └── SendMemory.sln
│ ├── ReadMe.txt
│ └── Server
│ ├── Algorithm
│ │ ├── Aes256.cs
│ │ ├── GetHash.cs
│ │ ├── Sha256.cs
│ │ └── Zip.cs
│ ├── App.config
│ ├── app.manifest
│ ├── async_icon.ico
│ ├── Connection
│ │ ├── Clients.cs
│ │ └── Listener.cs
│ ├── FodyWeavers.xml
│ ├── FodyWeavers.xsd
│ ├── Forms
│ │ ├── Form1.cs
│ │ ├── Form1.Designer.cs
│ │ ├── Form1.resx
│ │ ├── FormAbout.cs
│ │ ├── FormAbout.Designer.cs
│ │ ├── FormAbout.resx
│ │ ├── FormBlockClients.cs
│ │ ├── FormBlockClients.Designer.cs
│ │ ├── FormBlockClients.resx
│ │ ├── FormBuilder.cs
│ │ ├── FormBuilder.Designer.cs
│ │ ├── FormBuilder.resx
│ │ ├── FormCertificate.cs
│ │ ├── FormCertificate.Designer.cs
│ │ ├── FormCertificate.resx
│ │ ├── FormChat.cs
│ │ ├── FormChat.Designer.cs
│ │ ├── FormChat.resx
│ │ ├── FormDOS.cs
│ │ ├── FormDOS.Designer.cs
│ │ ├── FormDOS.resx
│ │ ├── FormDotNetEditor.cs
│ │ ├── FormDotNetEditor.Designer.cs
│ │ ├── FormDotNetEditor.resx
│ │ ├── FormDownloadFile.cs
│ │ ├── FormDownloadFile.Designer.cs
│ │ ├── FormDownloadFile.resx
│ │ ├── FormFileManager.cs
│ │ ├── FormFileManager.Designer.cs
│ │ ├── FormFileManager.resx
│ │ ├── FormFileSearcher.cs
│ │ ├── FormFileSearcher.Designer.cs
│ │ ├── FormFileSearcher.resx
│ │ ├── FormKeylogger.cs
│ │ ├── FormKeylogger.Designer.cs
│ │ ├── FormKeylogger.resx
│ │ ├── FormMiner.cs
│ │ ├── FormMiner.Designer.cs
│ │ ├── FormMiner.resx
│ │ ├── FormPassword.cs
│ │ ├── FormPassword.Designer.cs
│ │ ├── FormPassword.resx
│ │ ├── FormPorts.cs
│ │ ├── FormPorts.Designer.cs
│ │ ├── FormPorts.resx
│ │ ├── FormProcessManager.cs
│ │ ├── FormProcessManager.Designer.cs
│ │ ├── FormProcessManager.resx
│ │ ├── FormRemoteDesktop.cs
│ │ ├── FormRemoteDesktop.Designer.cs
│ │ ├── FormRemoteDesktop.resx
│ │ ├── FormSendFileToMemory.cs
│ │ ├── FormSendFileToMemory.Designer.cs
│ │ ├── FormSendFileToMemory.resx
│ │ ├── FormShell.cs
│ │ ├── FormShell.Designer.cs
│ │ ├── FormShell.resx
│ │ ├── FormTorrent.cs
│ │ ├── FormTorrent.Designer.cs
│ │ ├── FormTorrent.resx
│ │ ├── FormWebcam.cs
│ │ ├── FormWebcam.Designer.cs
│ │ └── FormWebcam.resx
│ ├── Handle Packet
│ │ ├── HandleChat.cs
│ │ ├── HandleDos.cs
│ │ ├── HandleFileManager.cs
│ │ ├── HandleKeylogger.cs
│ │ ├── HandleListView.cs
│ │ ├── HandleLogs.cs
│ │ ├── HandleMiner.cs
│ │ ├── HandlePing.cs
│ │ ├── HandleProcessManager.cs
│ │ ├── HandleRecovery.cs
│ │ ├── HandleRemoteDesktop.cs
│ │ ├── HandleReportWindow.cs
│ │ ├── HandlerFileSearcher.cs
│ │ ├── HandleShell.cs
│ │ ├── HandleThumbnails.cs
│ │ ├── HandleWebcam.cs
│ │ └── Packet.cs
│ ├── Helper
│ │ ├── AsyncTask.cs
│ │ ├── CreateCertificate.cs
│ │ ├── IconInjector.cs
│ │ ├── ListViewColumnSorter.cs
│ │ ├── ListviewDoubleBuffer.cs
│ │ ├── Methods.cs
│ │ └── ReferenceLoader.cs
│ ├── MessagePack
│ │ ├── BytesTools.cs
│ │ ├── MsgPack.cs
│ │ ├── MsgPackType.cs
│ │ ├── ReadTools.cs
│ │ └── WriteTools.cs
│ ├── packages.config
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RenamingObfuscation
│ │ ├── Classes
│ │ │ ├── Base64.cs
│ │ │ ├── ClassesRenaming.cs
│ │ │ ├── DecryptionHelper.cs
│ │ │ ├── FieldsRenaming.cs
│ │ │ ├── InjectHelper.cs
│ │ │ ├── MethodsRenaming.cs
│ │ │ ├── NamespacesRenaming.cs
│ │ │ ├── PropertiesRenaming.cs
│ │ │ └── Utils.cs
│ │ ├── EncryptString.cs
│ │ ├── Interfaces
│ │ │ ├── ICrypto.cs
│ │ │ └── IRenaming.cs
│ │ └── ModuleDefMD.cs
│ ├── Resources
│ │ ├── 7z.dll
│ │ ├── 7z.exe
│ │ ├── arrow_down.png
│ │ ├── arrow_up.png
│ │ ├── blank-screen.png
│ │ ├── botkiller.png
│ │ ├── builder.png
│ │ ├── cGeoIp.dll
│ │ ├── chat.png
│ │ ├── client.png
│ │ ├── coding.png
│ │ ├── ddos.png
│ │ ├── disabled.png
│ │ ├── extra.png
│ │ ├── filemanager.png
│ │ ├── Fixer.bat
│ │ ├── IconExtractor.dll
│ │ ├── iconfinder_32_171485 (1).png
│ │ ├── info.png
│ │ ├── keyboard-on.png
│ │ ├── keyboard.png
│ │ ├── key.png
│ │ ├── logger.png
│ │ ├── Miscellaneous.png
│ │ ├── monitoring-system.png
│ │ ├── mouse_enable.png
│ │ ├── mouse.png
│ │ ├── msgbox.png
│ │ ├── netstat.png
│ │ ├── pc.png
│ │ ├── play-button.png
│ │ ├── process.png
│ │ ├── remotedesktop.png
│ │ ├── report.png
│ │ ├── save-image2.png
│ │ ├── save-image.png
│ │ ├── server.png
│ │ ├── settings.png
│ │ ├── shell.png
│ │ ├── stop (1).png
│ │ ├── system.png
│ │ ├── tomem1.png
│ │ ├── tomem.png
│ │ ├── uac.png
│ │ ├── usb.png
│ │ ├── u-torrent-logo.png
│ │ ├── visit.png
│ │ ├── webcam.png
│ │ ├── xmrig.bin
│ │ └── xmr.png
│ ├── Server.csproj
│ ├── Settings.cs
│ └── StreamLibrary
│ ├── Enums.cs
│ ├── IUnsafeCodec.cs
│ ├── IVideoCodec.cs
│ ├── JpgCompression.cs
│ ├── NativeMethods.cs
│ ├── src
│ │ ├── JpgCompression.cs
│ │ ├── LzwCompression.cs
│ │ └── NativeMethods.cs
│ ├── UnsafeCodecs
│ │ └── UnsafeStreamCodec.cs
│ └── UnsafeStreamCodec.cs
├── LICENSE
└── README.md
84 directories, 437 files
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论