File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -2504,11 +2504,10 @@ def _change_user_password(self):
2504
2504
Please note that password must be cleartext.
2505
2505
"""
2506
2506
# some documentation on how is stored passwords on OSX:
2507
- # http://blog.lostpassword.com/2012/07/cracking-mac-os-x-lion-accounts-passwords/
2508
2507
# http://null-byte.wonderhowto.com/how-to/hack-mac-os-x-lion-passwords-0130036/
2509
2508
# http://pastebin.com/RYqxi7Ca
2510
2509
# on OSX 10.8+ hash is SALTED-SHA512-PBKDF2
2511
- # https://pythonhosted.org/passlib /lib/passlib.hash.pbkdf2_digest.html
2510
+ # https://passlib.readthedocs.io/en/stable /lib/passlib.hash.pbkdf2_digest.html
2512
2511
# https://gist.github.com/nueh/8252572
2513
2512
cmd = self ._get_dscl ()
2514
2513
if self .password :
Original file line number Diff line number Diff line change 216
216
type: int
217
217
sample: 23
218
218
match_groups:
219
- description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject .groups)
219
+ description: Tuple containing all the subgroups of the match as returned by U(https://docs.python.org/3/library/re.html#re.Match .groups)
220
220
returned: always
221
221
type: list
222
222
sample: ['match 1', 'match 2']
223
223
match_groupdict:
224
224
description: Dictionary containing all the named subgroups of the match, keyed by the subgroup name,
225
- as returned by U(https://docs.python.org/3/library/re.html#re.MatchObject .groupdict)
225
+ as returned by U(https://docs.python.org/3/library/re.html#re.Match .groupdict)
226
226
returned: always
227
227
type: dict
228
228
sample:
Original file line number Diff line number Diff line change 164
164
description:
165
165
- SSL/TLS Ciphers to use for the request
166
166
- 'When a list is provided, all ciphers are joined in order with C(:)'
167
- - See the L(OpenSSL Cipher List Format,https://www .openssl.org/docs/manmaster/ man1/openssl-ciphers.html#CIPHER-LIST-FORMAT )
167
+ - See the L(OpenSSL Cipher List Format,https://docs .openssl.org/master/ man1/openssl-ciphers/#cipher-list-format )
168
168
for more details.
169
169
- The available ciphers is dependent on the Python and OpenSSL/LibreSSL versions
170
170
type: list
You can’t perform that action at this time.
0 commit comments