From 215c479957ee0720fe0b47f4b982d464abcac2be Mon Sep 17 00:00:00 2001 From: mpgn Date: Sun, 30 May 2021 16:28:37 -0400 Subject: [PATCH] Fix spelling mistake --- README.md | 14 +++++++------- cme/protocols/smb.py | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 3eb891eb..77d6e24d 100755 --- a/README.md +++ b/README.md @@ -29,9 +29,9 @@ Come hang out on Discord! **(These are the people who did the hard stuff)** This project was originally inspired by: -- [smbmap](https://github.com/ShawnDEvans/smbmap) - [CredCrack](https://github.com/gojhonny/CredCrack) - [smbexec](https://github.com/pentestgeek/smbexec) +- [smbmap](https://github.com/ShawnDEvans/smbmap) Unintentional contributors: @@ -41,17 +41,17 @@ Unintentional contributors: This repository contains the following repositories as submodules: - [Impacket](https://github.com/CoreSecurity/impacket) -- [Pypsrp](https://github.com/jborean93/pypsrp) -- [Pywerview](https://github.com/the-useless-one/pywerview) -- [PowerSploit](https://github.com/PowerShellMafia/PowerSploit) - [Invoke-Obfuscation](https://github.com/danielbohannon/Invoke-Obfuscation) - [Invoke-Vnc](https://github.com/artkond/Invoke-Vnc) - [Mimikittenz](https://github.com/putterpanda/mimikittenz) -- [NetRipper](https://github.com/NytroRST/NetRipper) -- [RandomPS-Scripts](https://github.com/xorrior/RandomPS-Scripts) -- [SessionGopher](https://github.com/fireeye/SessionGopher) - [Mimipenguin](https://github.com/huntergregal/mimipenguin) +- [NetRipper](https://github.com/NytroRST/NetRipper) +- [PowerSploit](https://github.com/PowerShellMafia/PowerSploit) +- [Pypsrp](https://github.com/jborean93/pypsrp) +- [Pywerview](https://github.com/the-useless-one/pywerview) +- [RandomPS-Scripts](https://github.com/xorrior/RandomPS-Scripts) - [RID-Hijacking](https://github.com/r4wd3r/RID-Hijacking) +- [SessionGopher](https://github.com/fireeye/SessionGopher) # Documentation, Tutorials, Examples See the project's [wiki](https://github.com/byt3bl33d3r/CrackMapExec/wiki) for documentation and usage examples diff --git a/cme/protocols/smb.py b/cme/protocols/smb.py index c5ac3efa..3b3ba285 100755 --- a/cme/protocols/smb.py +++ b/cme/protocols/smb.py @@ -149,7 +149,7 @@ class smb(connection): egroup.add_argument("--loggedon-users", action='store_true', help='enumerate logged on users') egroup.add_argument('--users', nargs='?', const='', metavar='USER', help='enumerate domain users, if a user is specified than only its information is queried.') egroup.add_argument("--groups", nargs='?', const='', metavar='GROUP', help='enumerate domain groups, if a group is specified than its members are enumerated') - egroup.add_argument("--local-groups", nargs='?', const='', metavar='GROUP', help='enumerate local groups, if a group is specified than its members are enumerated') + egroup.add_argument("--local-groups", nargs='?', const='', metavar='GROUP', help='enumerate local groups, if a group is specified then its members are enumerated') egroup.add_argument("--pass-pol", action='store_true', help='dump password policy') egroup.add_argument("--rid-brute", nargs='?', type=int, const=4000, metavar='MAX_RID', help='enumerate users by bruteforcing RID\'s (default: 4000)') egroup.add_argument("--wmi", metavar='QUERY', type=str, help='issues the specified WMI query')