首页
社区
课程
招聘
[讨论]为什么 我的OD不能下bp send
发表于: 2008-5-6 09:00 8644

[讨论]为什么 我的OD不能下bp send

2008-5-6 09:00
8644
打bp send 就说“未和的标识符”

为什么 呢??

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

收藏
免费 0
支持
分享
最新回复 (5)
雪    币: 44229
活跃值: (19950)
能力值: (RANK:350 )
在线值:
发帖
回帖
粉丝
2
你的应用程序输入表里没调用WS2_32.dll,换个说法,就是你的进程空间里没加载WS2_32.dll
2008-5-6 09:35
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
好像不是API函数吧?
2008-5-6 10:30
0
雪    币: 1505
能力值: (RANK:210 )
在线值:
发帖
回帖
粉丝
4
程序初始化时候没有把dl载入的软件,不要下int3断点 下硬件断点,一般下次载入还能用
2008-5-6 10:42
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
5
哦,这样吗,,谢谢
2008-5-6 17:02
0
雪    币: 44229
活跃值: (19950)
能力值: (RANK:350 )
在线值:
发帖
回帖
粉丝
6
71A2428A WS2_32.send              8BFF            mov     edi, edi
71A2428C                          55              push    ebp
71A2428D                          8BEC            mov     ebp, esp
71A2428F                          83EC 10         sub     esp, 10

MSDN

/*

int send (
SOCKET s,
const char FAR * buf,
int len,
int flags
);

The flags parameter can be used to influence the behavior of the function beyond the options specified for the associated socket. The semantics of this function are determined by the socket options and the flags parameter. The latter is constructed by or-ing the following values:

Value Meaning
MSG_DONTROUTE Specifies that the data should not be subject to routing. A
Windows Sockets service provider can choose to ignore this
flag.

MSG_OOB Send out-of-band data (stream-style socket such as SOCK_STREAM
only. Also see DECnet Out-Of-band data for a discussion of this
topic).

*/

2008-5-6 17:08
0
游客
登录 | 注册 方可回帖
返回
//