Skip to content

Instantly share code, notes, and snippets.

View wuzhenda's full-sized avatar

Henry wuzhenda

  • cctv.com
View GitHub Profile
@wuzhenda
wuzhenda / modules.xml
Created December 5, 2018 02:15
modules.xml
<?xml version="1.0" encoding="utf-8" ?>
<Modules>
<Module AssemblyName='Clifton.SemanticProcessorService.dll'/>
<!--<Module AssemblyName='Clifton.DockingFormService.dll'/>-->
<!--<Module AssemblyName='Clifton.WinForm.ServiceInterfaces.dll'/>-->
<Module AssemblyName='FlowSharpService.dll'/>
<Module AssemblyName='FlowSharpCanvasService.dll'/>
<Module AssemblyName='FlowSharpToolboxService.dll'/>
<Module AssemblyName='FlowSharpMouseControllerService.dll'/>
@wuzhenda
wuzhenda / fakeclientBypython.py
Created January 18, 2018 03:40
fake client by python
#!/usr/bin/env python
import socket
import time
def GetCmd(hexString):
hexString = hexString.replace(" ", "");
if ((len(hexString) % 2) != 0):
hexString += " ";
@wuzhenda
wuzhenda / body.html
Created September 4, 2017 07:03
web page body
<body>
<form id="form1" runat="server">
<div id="headerPanel" class="headerPanel">
<div class="tools_bar">控件
<!-- button 控件 菜单编号为12 -->
<uc:PermitButton runat="server" ID="btn_PermitBtns" PermissionID="12" />
</div>
<div class="btnbarcontetn" style="margin-top: 1px; background: #fff">
Jun 5 02:24:31 localhost opendirectoryd[101]: opendirectoryd (build 339.1.4) launched - installer mode
Jun 5 02:24:32 localhost opendirectoryd[101]: Logging level limit changed to 'notice'
Jun 5 02:24:32 localhost opendirectoryd[101]: Safe Boot is enabled
Jun 5 02:24:32 localhost opendirectoryd[101]: Initialize trigger support
Jun 5 02:24:32 localhost opendirectoryd[101]: created endpoint for mach service 'com.apple.private.opendirectoryd.rpc'
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'reset_cache'
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'reset_statistics'
Jun 5 02:24:32 localhost opendirectoryd[101]: set default handler for RPC 'show'
Jun 5 02:24:32 localhost opendirectoryd[101]: starting endpoint for service 'com.apple.private.opendirectoryd.rpc'
Jun 5 02:24:33 localhost opendirectoryd[101]: no dynamic data found at '/System/Library/OpenDirectory/DynamicData/Configure.plist'
# coding: utf-8
#!/bin/python
import os
import sys
import json
import base64
import binascii
import codecs
from Crypto.Cipher import AES
@wuzhenda
wuzhenda / Makefile
Last active August 29, 2015 14:06 — forked from splhack/Makefile
SRCS+= adb.c
SRCS+= adb_client.c
SRCS+= commandline.c
SRCS+= console.c
SRCS+= file_sync_client.c
SRCS+= fdevent.c
SRCS+= get_my_path_linux.c
SRCS+= services.c
SRCS+= sockets.c
SRCS+= transport.c