Close the opened directory after listing it's contents #257
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.
Noticed an issue when working on rapid7/metasploit-framework#18539 where when listing the contents of a directory we don't close the handle to it resulting in weirdness on windows like not being able to rename any files located in that directory
To replicate add:
to the end of
examples/list_directory
to pause execution of the script so we don't disconnectrun this command
bundle exec ruby list_directory.rb <ip> <user> <pass> <share>
example:bundle exec ruby list_directory.rb 172.16.158.159 vagrant vagrant foo
Then try to rename a file in the share you're listing and you'll get an error like this:
Check out this PR and run through the same steps and you should no longer hit the issue