首页
社区
课程
招聘
测试一下
发表于: 2017-2-20 11:20 3714

测试一下

2017-2-20 11:20
3714

看看新版的论坛发帖怎么样?

新版看着很不错呀!

def cuckoo_main(max_analysis_count=0):
    """Cuckoo main loop.
    @param max_analysis_count: kill cuckoo after this number of analyses
    """
    cur_path = os.getcwd()
    os.chdir(CUCKOO_ROOT)
    try:
        sched = Scheduler(max_analysis_count)
        sched.start()
    except KeyboardInterrupt:
        sched.stop()
    os.chdir(cur_path)



[课程]Android-CTF解题方法汇总!

收藏
免费 0
支持
分享
最新回复 (16)
雪    币: 1491
活跃值: (975)
能力值: (RANK:860 )
在线值:
发帖
回帖
粉丝
2
python  代码并没有着色!
2017-2-20 11:23
0
雪    币: 21449
活跃值: (62288)
能力值: (RANK:125 )
在线值:
发帖
回帖
粉丝
3
要插入代码,才有着色哦~直接复制粘贴是没有哒~
2017-2-20 11:26
0
雪    币: 3561
活跃值: (541)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
4

点击这个 用 c++就可以了哦

2017-2-20 11:34
0
雪    币: 134
活跃值: (11)
能力值: ( LV3,RANK:30 )
在线值:
发帖
回帖
粉丝
8
试了几下,没代码着色...
2017-2-20 12:35
0
雪    币: 21449
活跃值: (62288)
能力值: (RANK:125 )
在线值:
发帖
回帖
粉丝
9
确实没有,再优化中。。。。
2017-2-20 12:50
0
雪    币: 433
活跃值: (1875)
能力值: ( LV17,RANK:1820 )
在线值:
发帖
回帖
粉丝
10

void utf16_to_utf8(const char16_t* src, size_t src_len, char* dst)

{

    if (src == NULL || src_len == 0 || dst == NULL) {

        return;

    }

    const char16_t* cur_utf16 = src;

    const char16_t* const end_utf16 = src + src_len;

    char *cur = dst;

    while (cur_utf16 < end_utf16) {

        char32_t utf32;

        // surrogate pairs

        if((*cur_utf16 & 0xFC00) == 0xD800 && (cur_utf16 + 1) < end_utf16

                && (*(cur_utf16 + 1) & 0xFC00) == 0xDC00) {

            utf32 = (*cur_utf16++ - 0xD800) << 10;

            utf32 |= *cur_utf16++ - 0xDC00;

            utf32 += 0x10000;

        } else {

            utf32 = (char32_t) *cur_utf16++;

        }

        const size_t len = utf32_codepoint_utf8_length(utf32);

        utf32_codepoint_to_utf8((uint8_t*)cur, utf32, len);

        cur += len;

    }

    *cur = '\0';

}


2017-2-20 13:15
0
雪    币: 433
活跃值: (1875)
能力值: ( LV17,RANK:1820 )
在线值:
发帖
回帖
粉丝
11
代码确实都没有高亮功能
2017-2-20 13:16
0
雪    币: 433
活跃值: (1875)
能力值: ( LV17,RANK:1820 )
在线值:
发帖
回帖
粉丝
12
现在头像这么小,我赶紧换了个鲜艳点的,不然都看不清了
2017-2-20 13:18
0
雪    币: 1392
活跃值: (4862)
能力值: ( LV13,RANK:240 )
在线值:
发帖
回帖
粉丝
14



riusksk

现在头像这么小,我赶紧换了个鲜艳点的,不然都看不清了
跟我一样  搞个动态的。
2017-2-20 13:19
0
雪    币: 1491
活跃值: (975)
能力值: (RANK:860 )
在线值:
发帖
回帖
粉丝
15



riusksk

现在头像这么小,我赶紧换了个鲜艳点的,不然都看不清了
很早很早以前我的头像有一个动态的,可惜现在找不到了
2017-2-20 13:40
0
雪    币: 1491
活跃值: (975)
能力值: (RANK:860 )
在线值:
发帖
回帖
粉丝
16



riusksk

现在头像这么小,我赶紧换了个鲜艳点的,不然都看不清了
2005年左右的时候
2017-2-20 13:40
0
雪    币: 1039
活跃值: (355)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
17

print("hehe")

2017-2-20 15:50
0
雪    币: 435
活跃值: (1207)
能力值: ( LV13,RANK:388 )
在线值:
发帖
回帖
粉丝
18
testtest
我的个人数据好像都没了,发帖啊啥的
2017-2-20 16:55
0
雪    币: 216
活跃值: (25)
能力值: ( LV3,RANK:20 )
在线值:
发帖
回帖
粉丝
19
printf("haha");


2017-2-21 08:47
0
雪    币: 1491
活跃值: (975)
能力值: (RANK:860 )
在线值:
发帖
回帖
粉丝
20
i=0
print i


2017-2-21 12:51
0
雪    币: 1
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
21
def cuckoo_main(max_analysis_count=0):
    """Cuckoo main loop.
    @param max_analysis_count: kill cuckoo after this number of analyses
    """
    cur_path = os.getcwd()
    os.chdir(CUCKOO_ROOT)
    try:
        sched = Scheduler(max_analysis_count)
        sched.start()
    except KeyboardInterrupt:
        sched.stop()
    os.chdir(cur_path)


2017-2-21 22:30
0
游客
登录 | 注册 方可回帖
返回
//