能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
[原创]阻止远程注入代码
回应第一句:
typedef struct _PROCESS_BASIC_INFORMATION {
LONG ExitStatus;
smPPEB PebBaseAddress; /* 看这里 */
ULONG_PTR AffinityMask;
LONG BasePriority;
ULONG_PTR UniqueProcessId;
ULONG_PTR InheritedFromUniqueProcessId;
} PROCESS_BASIC_INFORMATION;
NtQueryInformationProcess(ProcessBasicInformation);
第二句不予评论。
能力值:
(RANK:1060 )
[原创]阻止远程注入代码
这种方式获得attach notification还是头一次见。一开始干掉Ldr里的flags就得了。我就花几分钟看看,提供一种评论而已,纯属蛋疼
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
[原创]刘涛涛的面试题
[QUOTE=forgot;852494]继续娱乐
sum(map(int, ''.join(x if x.isdigit() else ' ' for x in s).split()))
[/QUOTE]
继续娱乐
sum(map(int, __import__('re').findall('-*\d+', s)))
能力值:
(RANK:1060 )
[原创]刘涛涛的面试题
继续娱乐
sum(map(int, ''.join(x if x.isdigit() else ' ' for x in s).split()))
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
[求助]要多久能达到职业水平
去掉一知半解的自己心虚的剩下的东西是:
专业学的是半计算机,半无线网络专业
学过软件和多媒体设计,能用ps ,flash,maya画图,画一些皮肤,通过引擎能做骨骼动画
能力值:
(RANK:1060 )
能力值:
(RANK:1060 )
[原创]刘涛涛的面试题
In [1]: s = '你54839865486548650468054658847397577599他5542385997788999345666666
66666666666666999999999999999999999999我8888888888888888888888888888888888888'
In [2]: import re
In [3]: sum(map(int, re.findall('-*\d+', s)))
Out[3]: 554238599778899934566666730395421042104539356943547736286466486L
能力值:
(RANK:1060 )