Skip to content

Commit

Permalink
Fix a bug in marker output.
Browse files Browse the repository at this point in the history
  • Loading branch information
unix-ninja committed Feb 6, 2024
1 parent e7884fc commit 83b7881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shellfire/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ def cmd_marker(cmd):
## this will determine boundaries to split and clean output
if len(cmd) == 1:
sys.stderr.write("[*] Payload marker: %s\n" % (cfg.marker))
sys.stderr.write("[*] Marker index: %d\n" % (cfg.marker_idx))
sys.stderr.write("[*] Marker index: %s\n" % (' '.join(str(idx) for idx in cfg.marker_idx)))
return
## let's remove ".marker" from our cmd
cmd.pop(0)
Expand Down

0 comments on commit 83b7881

Please sign in to comment.