- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我最近问了一个问题,得到了一个答案,为我的 boofuzz 同行解决了我当时的问题 viewable here 。不幸的是,我现在收到另一个错误:pdx:[50] DebugActiveProcess(X):不支持该请求。
(注意,X
值是PID值,现在之前的错误已得到解决,其变化如输出中所述。我在 64 位 Windows 7 Service Pack 1 计算机上运行 Python 2.7.9。
以下是我的 boofuzz 脚本的相关部分:
def fuzz(dst, dport):
# Create session, specify high-arbitrary crash_threshold, low restart_sleep_time, check_data_received_each_request=False
session = sessions.Session(
crash_threshold="10000",
check_data_received_each_request=0,
restart_sleep_time=0.1,
sleep_time=0.1,
)
# Define target
target = sessions.Target(
connection = SocketConnection(dst, dport, proto='tcp')
)
# Define procmon options
target.procmon = pedrpc.Client(dst, 26002)
target.procmon_options = {
"proc_name" : "disksvs.exe",
"stop_commands" : ['net stop "Disk Savvy Enterprise"'],
"start_commands" : ['net start "Disk Savvy Enterprise"']
}
连接后,我的 procmon 机器上出现错误。这是运行时的输出:
起毛机:
root@kali:~/scripts/exploits/diskSaavy# ./boofuzz-diskSaavy.py 192.168.138.142 9124
[2018-04-12 18:41:16,385] Info: current fuzz path: -> packet
[2018-04-12 18:41:16,385] Test Case: 1
[2018-04-12 18:41:16,385] Info: primitive name: "SC 1", type: String, default value: SERVER_GET_INFO
[2018-04-12 18:41:16,385] Info: Test case 1 of 6380 for this node. 1 of 6380 overall.
[2018-04-12 18:41:23,456] Test Step: Fuzzing Node 'packet'
[2018-04-12 18:41:23,456] Transmitting 37 bytes: 75 19 ba ab 03 00 00 00 00 00 00 00 1a 00 00 cc 20 00 00 00 02 32 01 44 41 54 41 01 30 01 00 00 00 60 c0 f1 02 b'u\x19\xba\xab\x03\x00\x00\x00\x00\x00\x00\x00\x1a\x00\x00\xcc \x00\x00\x00\x022\x01DATA\x010\x01\x00\x00\x00`\xc0\xf1\x02'
[2018-04-12 18:41:23,456] Info: 37 bytes sent
[2018-04-12 18:41:23,456] Test Step: Calling post_send function:
[2018-04-12 18:41:23,456] Info: No post_send callback registered.
[2018-04-12 18:41:23,456] Test Step: Sleep between tests.
[2018-04-12 18:41:23,457] Info: sleeping for 0.100000 seconds
[2018-04-12 18:41:23,557] Test Step: Contact process monitor
[2018-04-12 18:41:23,557] Check: procmon.post_send()
^C[2018-04-12 18:41:23,696] Error!!!! SIGINT received ... exiting
Procmon 机器:
C:\Python27\Lib\site-packages\boofuzz>python process_monitor.py
Couldn't import dot_parser, loading of dot files will not be possible.
[06:31.24] Process Monitor PED-RPC server initialized:
[06:31.24] crash file: C:\Python27\Lib\site-packages\boofuzz\crash-bin
[06:31.24] # records: 0
[06:31.24] proc name: None
[06:31.24] log level: 1
[06:31.24] awaiting requests...
[06:31.56] updating target process name to 'disksvs.exe'
[06:31.56] updating stop commands to: ['net stop "Disk Savvy Enterprise"']
[06:31.57] updating start commands to: ['net start "Disk Savvy Enterprise"']
[06:31.57] starting target process
[06:31.57] done. target up and running, giving it 5 seconds to settle in.
The requested service has already been started.
More help is available by typing NET HELPMSG 2182.
[06:32.02] debugger thread-1523572322 attaching to pid: 3436
Exception in thread 1523572322:
Traceback (most recent call last):
File "C:\Python27\lib\threading.py", line 530, in __bootstrap_inner
self.run()
File "process_monitor.py", line 100, in run
self.dbg.attach(self.pid)
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 226, in attach
self.debug_active_process(pid)
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 839, in debug_active_process
raise pdx("DebugActiveProcess(%d)" % pid, True)
pdx: [50] DebugActiveProcess(3436): The request is not supported.
[06:32.04] starting target process
[06:32.04] done. target up and running, giving it 5 seconds to settle in.
The requested service has already been started.
More help is available by typing NET HELPMSG 2182.
[06:32.09] debugger thread-1523572329 attaching to pid: 1460
Exception in thread 1523572329:
Traceback (most recent call last):
File "C:\Python27\lib\threading.py", line 530, in __bootstrap_inner
self.run()
File "process_monitor.py", line 100, in run
self.dbg.attach(self.pid)
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 226, in attach
self.debug_active_process(pid)
File "C:\Python27\lib\site-packages\pydbg\pydbg.py", line 839, in debug_active_process
raise pdx("DebugActiveProcess(%d)" % pid, True)
pdx: [50] DebugActiveProcess(1460): The request is not supported.
所以对我来说,看起来我连接正确,并且 procmon 收到了我的启动、停止命令和进程名称(所有这些都是准确的)。然而有趣的是,该进程似乎没有重新启动,但 PID 随着每次迭代而变化(在 procmon 中)。这显然会导致问题,因为 disksvs.exe 的 PID 与 procmon 尝试附加的不匹配。我有点不知所措,因为我查看了源文件,但无法准确理解为什么 procmon 会获取不正确的 PID。
如果在模糊测试开始时未启动服务,Procmon 会正确启动服务,这很好,但还远远不够。我还尝试删除 proc_name
参数只是为了看看会发生什么,但没有运气 - 同样的错误。
我非常乐意提供更多信息,请告诉我您需要什么。
谢谢!
最佳答案
您可能正在尝试运行 32 位应用程序。如果 process_monitor.py 尝试附加到 64 位进程,我会收到相同的错误。您的目标似乎同时提供 32 位和 64 位选项。
32 位 list 是:
如果目标应用程序是 64 位并且它过早终止,我会看到“访问被拒绝”。而不是“不支持该请求。”
我创建了this pull request改进错误处理和消息。
关于python - boofuzz/process_monitor.py - pdx : [50] DebugActiveProcess(X): The request is not supported,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49807071/
这两个句子有什么区别: res = requests.request('POST', url) 和 res = requests.request.post(url) 最佳答案 它们几乎是一样的:htt
我正在使用“请求对话框”来创建 Facebook 请求。为了让用户收到请求,我需要使用图形 API 访问 Request 对象。我已经尝试了大多数看起来合适的权限设置(read_requests 和
urllib.request和http.client都是python标准库。前者相关方法的文档是 here后者,here (我使用的是3.5) 有谁知道为什么标准库中有两种方法看起来做同样的事情,或者
我是 Twisted 的新手,我不明白为什么在运行我的脚本时会出现此错误。\ 基本上,该脚本由 2 个页面组成,第一个页面是一个 HTML 表单,它调用自身执行一个阻塞方法并显示结果。当请求同时发送到
我有一个客户端 JS 文件,其中包含: agent = require('superagent'); request = agent.get(url); 然后我有类似的东西 request.get(u
提前输入功能可以正常工作。但问题是,提前输入功能会在每个数据请求上发出 JSON 请求,而实际上只应针对一个特定请求发生。 我有以下 Controller : #controllers/agencie
我正在使用 Rust 开发一个小型 API,我不确定如何在两个地方访问来自 Iron 的 Request。 Authentication 中间件为 token 读取一次Request,如果路径被允许(
问题起因 今天一位网友向我们反馈,用Chrome打开某些博客文章时,会出现"Bad Request - Request Too Long. HTTP Error 400. The siz
当我从 LinkedIn 向 https://api.linkedin.com/uas/oauth/requestToken 请求请求 token 时,出现以下错误: oauth_problem=si
我只是想使用 okhttp 下载一些字节数据,但在我完成代码之前,我遇到了一个问题,android studio 报告了一个错误,说“Request(okhttp3.Request.Builder)
我正在使用 Windows 10。我想在我的系统上使用 Angular 4。当我运行 node -v 和 npm -v 时,它会显示版本。但是当我执行语句 npm install -g @angula
我正在尝试让一个简单的 Iron 示例起作用: extern crate iron; extern crate router; use iron::prelude::*; use iron::stat
我正在尝试使用嵌套字典“动态”创建一个数据输入表单(目前,我使用具有 3 个值的数组,但将来数组中的元素数量可能会有所不同)。这似乎工作正常,并且表单“正确”渲染了 html 模板(正确 = 我看到了
从 ASP.NET 中的代码隐藏访问表单或查询字符串值时,使用的优缺点是什么,例如: // short way string p = Request["param"]; 代替: // long way
我遇到了一个问题,我想知道更好的解决方法。 有五个 api 请求并行运行,第二个请求依赖于第四个请求的响应,但所有 5 个请求都已在运行。什么是更好的方法? 需要建议。提前致谢。 最佳答案 调度地面工
我收到以下错误:TypeError:序列项 0:预期字节、字节数组或具有缓冲区接口(interface)的对象、找到元组 我检查了Python文档,urllib.request.Request的参数似
当我向函数添加超时参数时,我的代码总是进入异常并打印出“我失败了”。当我删除超时参数时,代码会正常工作,并进入 try 子句。关于超时参数如何在 urllib.request 函数中工作的任何信息?
我使用 cURL 向服务器发送请求这是链接:Server Side script for cURL request我用 file_get_contents('php://input'); 读取发送的数
请大家帮帮我我正在尝试使用 NUTCH 抓取网站,但它给我错误“java.io.IOException: Job failed!” 我正在运行此命令“bin/nutch solrindex http:
在我的 AngularJS 应用程序中,我无法弄清楚如何对 then promise 的执行更改 location.url 进行单元测试。我有一个函数,登录 ,调用服务,身份验证服务 .它返回 pro
我是一名优秀的程序员,十分优秀!