-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
Gather foxmail password #14218
Closed
Closed
Gather foxmail password #14218
Changes from 2 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
6bc62c1
add gather foxmail pasword module
cn-kali-team f05fda1
add doc
cn-kali-team e464b6d
update documentation
cn-kali-team 402bc94
update code
cn-kali-team b53f088
update code
cn-kali-team b70cc85
update documentation
cn-kali-team 0342ab2
Add a function to determine whether a folder exists
cn-kali-team ab2252f
fix
cn-kali-team fac785a
Apply the last bit of the documentation fixes and make sure it is too…
gwillcox-r7 6212518
Fix up more stuff noticed during the review including several cases w…
gwillcox-r7 66fc1f7
undo
cn-kali-team 407020e
Update modules/post/windows/gather/credentials/foxmail.rb
cn-kali-team fcea651
Add description only version 7. X is supported
cn-kali-team 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
There are no files selected for viewing
This file contains 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 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
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.
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.
Again if
\x20
, aka space, is a valid character, then this should be>=
.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.
Need some clarify here, what is the expected range of characters you are looking at here? If this is in the format of
asdf123=asdf23423
then I would expect only alpha-numberic characters to to be included in this range but I see your also including characters such as<
,!
,@
and other characters here that seem a little odd given that you specifically try not to match on=
. Just would like to double check this logic as seems somewhat odd to me.