如何将复杂的 cookie 传递给 ab 进行测试?

发布于 2024-09-29 20:15:34 字数 537 浏览 2 评论 0原文

我正在使用 ab 来测试我的应用程序,但在传递正确的 cookie 时遇到问题。我的 cookie 数据如下所示:

messages=95925d68c34fcc68b3fcc2e5061a45278c35af41$[[\\\\"__json_message\\\\"\\\\05420\\\\054\\\\"Data\\\\"]]

我不知道如何将字符串的第二部分发送到 ab 发送到我的服务器。我正在做类似

ab -C messages='95*snip*5af41$[[\\\\"__json_message\\\\"\\\\05420\\\\054\\\\"Data\\\\"]]' http://example.com:80/

[ 之前的所有内容都已发送,但此后什么也没有发送。我担心 [ 是对我的 shell 的某种控制,但我不太确定这是怎么回事。我认为单引号应该允许我在其中添加除另一个单引号之外的任何内容。

I'm using ab to test my app, and I'm having trouble passing the correct cookie. My cookie data looks like this:

messages=95925d68c34fcc68b3fcc2e5061a45278c35af41$[[\\\\"__json_message\\\\"\\\\05420\\\\054\\\\"Data\\\\"]]

I can't figure out how to get the second part of the string to ab to send to my server. I'm doing something like

ab -C messages='95*snip*5af41$[[\\\\"__json_message\\\\"\\\\05420\\\\054\\\\"Data\\\\"]]' http://example.com:80/

Everything up to the [ is sent, but nothing from there on. I'm concerned [ is some kind of control to my shell that is getting escaped, but I'm not quite sure what the deal is. I thought the single quotes should allow me to put anything but another single quote inside of them.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

成熟的代价 2024-10-06 20:15:34

我想通了。事实证明正确的语法是:

ab -C 'messages="93bad4084536e6ee5839de07d59c8a42eadf014f$[[\"__json_message\"\05420\054\"Houston3\"]]"' http://localhost:8000/

I figured it out. Turns out the correct syntax is:

ab -C 'messages="93bad4084536e6ee5839de07d59c8a42eadf014f$[[\"__json_message\"\05420\054\"Houston3\"]]"' http://localhost:8000/
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文