-
Notifications
You must be signed in to change notification settings - Fork 3k
Improving lua script with args and values #6561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Mzack9999
wants to merge
4
commits into
dev
Choose a base branch
from
feat-4790-lua
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+113
−10
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Some comments aren't visible on the classic Files Changed page.
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
integration_tests/protocols/javascript/redis-lua-script.yaml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| id: redis-lua-script | ||
|
|
||
| info: | ||
| name: Redis RunLuaScript - Detect | ||
| author: DhiyaneshDK | ||
| severity: info | ||
|
|
||
| javascript: | ||
| - code: | | ||
| const redis = require('nuclei/redis'); | ||
| // First call: Set a key-value pair using ARGV | ||
| const setResult = redis.RunLuaScript(Host, Port, Password, 'return redis.call("set", ARGV[1], ARGV[2])', [], ['testkey', 'testvalue']); | ||
| log(to_json(setResult)); | ||
|
|
||
| // Second call: Retrieve the value we just set | ||
| const getResult = redis.RunLuaScript(Host, Port, Password, 'return redis.call("get", ARGV[1])', [], ['testkey']); | ||
| log(to_json(getResult)); | ||
|
|
||
| args: | ||
| Host: "{{Host}}" | ||
| Port: "6379" | ||
| Password: "" | ||
|
|
||
| matchers: | ||
| - type: dsl | ||
| dsl: | ||
| - "success == true" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Critical inconsistency: args still silently drop non-string items.
The args conversion at lines 229-231 only keeps string items and silently drops non-strings, while the keys conversion (lines 213-215) uses
fmt.Sprintf("%v", item)to preserve all types. This inconsistency will cause confusing bugs where args like['key1', 123, true]become['key1'], causing Lua scripts to fail.Redis Lua scripts commonly use numeric and boolean arguments, so this silent data loss is a significant correctness issue.
Apply this diff to make args handling consistent with keys:
// Convert interface{} to []string for args (handle backwards compatibility) argsSlice := []string{} if args != nil { switch v := args.(type) { case []string: argsSlice = v case []interface{}: // Convert []interface{} to []string (from JavaScript arrays) argsSlice = make([]string, 0, len(v)) for _, item := range v { - if s, ok := item.(string); ok { - argsSlice = append(argsSlice, s) - } + argsSlice = append(argsSlice, fmt.Sprintf("%v", item)) } + default: + return nil, fmt.Errorf("args must be []string or []interface{}, got %T", args) } }Note: This addresses the same concern raised in the past review comment about silent data loss.
🤖 Prompt for AI Agents
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it's worth to address.
Ref: https://redis.io/docs/latest/develop/programmability/eval-intro/#interacting-with-redis-from-a-script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dwisiswant0, thanks for confirming! You're absolutely right that this inconsistency should be fixed.
The current implementation silently drops non-string arguments (lines 229-231), which would cause Lua scripts to fail when expecting numeric or boolean values. Since Redis Lua scripts commonly use these types as arguments, this creates a significant correctness issue.
@Mzack9999, please apply the suggested fix to make args handling consistent with keys:
Change the args conversion (lines 226-234) to:
This ensures that arguments like
['key1', 123, true]are properly converted to their string representations instead of being silently dropped, which aligns with how Redis EVAL expects arguments to be passed.