惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Attack and Defense Labs
Attack and Defense Labs
T
Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
H
Hackread – Cybersecurity News, Data Breaches, AI and More
I
Intezer
C
Cyber Attacks, Cyber Crime and Cyber Security
The Register - Security
The Register - Security
量子位
Security Latest
Security Latest
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
大猫的无限游戏
大猫的无限游戏
小众软件
小众软件
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
C
CXSECURITY Database RSS Feed - CXSecurity.com
MyScale Blog
MyScale Blog
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
WordPress大学
WordPress大学
Spread Privacy
Spread Privacy
Jina AI
Jina AI
博客园 - 【当耐特】
P
Palo Alto Networks Blog
Last Week in AI
Last Week in AI
SecWiki News
SecWiki News
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
G
GRAHAM CLULEY
宝玉的分享
宝玉的分享
Hacker News - Newest:
Hacker News - Newest: "LLM"
T
The Blog of Author Tim Ferriss
V
Vulnerabilities – Threatpost
有赞技术团队
有赞技术团队
T
Tor Project blog
H
Hacker News: Front Page
A
Arctic Wolf
NISL@THU
NISL@THU
A
About on SuperTechFans
云风的 BLOG
云风的 BLOG
Engineering at Meta
Engineering at Meta
V
V2EX
N
News and Events Feed by Topic
Webroot Blog
Webroot Blog
Know Your Adversary
Know Your Adversary
P
Privacy International News Feed
I
InfoQ
D
Docker
L
LINUX DO - 最新话题
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
U
Unit 42

博客园 - RobinGe

LR_continue_on_error 应用 一个很好的提高修养的网站 VuGen 没有录上退出步骤 ITIL pass [转51testing] 性能测试(并发负载压力)测试分析-简要篇 9/25 PNR (Point of No Return) 用于日常监控 简谈如何养成良好的习惯 9/16 Creating Oracle NCA Vuser Scripts 9/13 Developing Siebel-Web Vuser Scripts 9/13 Developing SAP-Web Vuser Scripts 9/12 Running SAPGUI Vuser Scripts 9/11 计划反馈 - Developing SAPGUI Vuser Scripts 给自己订一个目标吧 ITIL培训 英语随笔 -- 1 LoadRunner -- 7/19,20 BAC--启动和停止以及与web server的关系 BAC--Downtime 凌晨时段设定 VuGen--Transaction 简介
VuGen -- 手动关联步骤
RobinGe · 2007-07-30 · via 博客园 - RobinGe

Manual Correlation Steps:
1. Play back the script with 'Data returned by server' setting and determine whether the error is due to correlation
2. Indentify the first step that gets the dynamic value.
3.Determine the value to correlate. (找到所需要value的位置,前面和后面的内容)
4. Create a parameter for the dynamic value by adding a web_reg_save_param function to the script.
5. Parameterize the dynamic value in the script every time it occurs
6. Verify correct execution.
例如
 web_reg_save_param("Example_cookie",
  "LB/IC=*sn=",
  "RB/IC=;",
  "Ord=1",
  "Search=headers",
  "RelFrameId=1",
  LAST);
web_url("...");
web_submit_data("..."
   "Name=sn", "Value={Example_cookie}", ENDITEM, 
   "..."
);