Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-04-27 | Merge pull request #233 from leechristensen/patch-5 | Will | 1 | -9/+324 | |
Generalized ACE creation and added LDAP logonhours conversion | |||||
2017-04-27 | Generalized ACE creation and added LDAP logonhours conversion | Lee Christensen | 1 | -9/+324 | |
Added ConvertFrom-LDAPLogonHours and New-ADObjectAccessControlEntry | |||||
2017-04-26 | Renamed Get-DomainPolicy to Get-DomainPolicyData and generalized the | HarmJ0y | 1 | -57/+59 | |
function to accept any policy. | |||||
2017-04-26 | Merge pull request #214 from mbrancato/dev | Will | 1 | -16/+18 | |
Fix for impersonation in Get-NetLocalGroup* | |||||
2017-04-26 | Merge pull request #215 from api0cradle/master | Will | 1 | -0/+1044 | |
Invoke-CompareAttributesForClass.ps1 | |||||
2017-04-26 | Merge pull request #226 from joncave/dn_commas | Will | 1 | -115/+80 | |
Support for DNs containing commas | |||||
2017-04-26 | Merge pull request #227 from joncave/dfs_domain | Will | 1 | -4/+4 | |
The DFS subfunctions only accept a single $Domain | |||||
2017-04-26 | Merge pull request #231 from leechristensen/patch-4 | Will | 1 | -0/+2 | |
Set explicit LDAP SecurityMasks settings | |||||
2017-04-17 | Set explicit LDAP SecurityMask settings | Lee Christensen | 1 | -0/+2 | |
Changed the LDAP SecurityMasks settings so that you can change the Owner/DACL if you only have WriteOwner/WriteDacl permissions on the object (Default SecurityMasks is "Owner, Group, Dacl") | |||||
2017-04-05 | Support for DNs containing commas | Jon Cave | 1 | -115/+80 | |
If an object's distinguished name contains a comma then it ends up quoted: CN=Smith\, John,OU=Admins,DC=example,DC=com This breaks a number of functions which attempt to identify DOMAIN\name by matching on a \ anywhere in the specified identity before checking if the identity was a DN (or SID or GUID). For example, attempting to list members of "Domain Admins" using Get-DomainGroupMember gives the following: VERBOSE: [Convert-ADName] Error initializing translation for 'CN=Smith\, John,OU=Admins,DC=example,DC=com' : Exception calling "InvokeMember" with "5" argument(s): "The specified domain either does not exist or could not be contacted. (Exception from HRESULT: 0x8007054B)" VERBOSE: [Convert-ADName] Error translating 'CN=Smith\, John,OU=Admins,DC=example,DC=com' : The specified domain either does not exist or could not be contacted. (Exception from HRESULT: 0x8007054B) VERBOSE: [Get-DomainObject] Get-DomainObject filter string: (objectClass=*) The fix implemented here is to perform more specific pattern matching prior to falling back to looking for a \. The order is SID, DN, GUID, qualified name (DOMAIN\name), and then plain name. | |||||
2017-04-05 | The DFS subfunctions only accept a single $Domain | Jon Cave | 1 | -4/+4 | |
Specifying the type as an array of strings results in an error when passing on the parameter to Get-DomainSearcher: C:\> Get-DomainDFSShare -Domain test Get-DomainSearcher : Cannot process argument transformation on parameter 'Domain'. Cannot convert value to type System.String. At PowerView.ps1:10242 char:46 | |||||
2017-02-13 | Cast DllCharacteristics to [Int] | b33f | 1 | -2/+2 | |
Fix for System.InvalidCastException: https://github.com/PowerShellMafia/PowerSploit/issues/152 | |||||
2017-01-23 | Added Invoke-CompareAttributesForClass.ps1 | Oddvar Moe | 1 | -0/+1044 | |
2017-01-16 | Changed -KerberosPreauthNotRequired to -PreauthNotRequired | HarmJ0y | 1 | -3/+4 | |
2017-01-16 | Fix for impersonation in Get-NetLocalGroup* | Mike Brancato | 1 | -16/+18 | |
Removed unnecessary warning about the 'WinNT' method Fixed Get-NetLocalGroup* to use impersonation - netapi32 functions weren't working. | |||||
2017-01-16 | Merge pull request #1 from PowerShellMafia/dev | Mike Brancato | 2 | -270/+427 | |
update local fork | |||||
2017-01-11 | Standardized output from Find-InterestingDomainAcl | HarmJ0y | 1 | -11/+40 | |
2017-01-11 | Merge branch 'dev' of github.com:PowerShellMafia/PowerSploit into dev | HarmJ0y | 1 | -1/+1 | |
2017-01-11 | Added displayname to the default filter set for Get-DomainObject[ACL] | HarmJ0y | 1 | -2/+2 | |
2017-01-11 | Merge pull request #210 from leechristensen/patch-3 | HarmJ0y | 1 | -1/+1 | |
Fixed KerberosPreauthNotRequired | |||||
2017-01-11 | Parenthesis for additional LDAP functions | HarmJ0y | 1 | -45/+51 | |
2017-01-11 | Parenthesis escaping for Get-DomainObject DN searches | HarmJ0y | 1 | -14/+17 | |
2017-01-11 | bug fix for Get-DomainObject/Get-DomainObjectACL | HarmJ0y | 1 | -2/+2 | |
2017-01-11 | Fixed bug in Convert-ADName that output an array including null values ↵ | HarmJ0y | 1 | -4/+4 | |
instead of a string | |||||
2017-01-11 | Fixed KerberosPreauthNotRequired | Lee Christensen | 1 | -1/+1 | |
2017-01-10 | Merge branch 'dev' of github.com:PowerShellMafia/PowerSploit into dev | HarmJ0y | 1 | -1/+1 | |
2017-01-10 | Couple of fixes for Get-DomainSPNTicket | HarmJ0y | 1 | -6/+10 | |
2017-01-09 | Merge pull request #207 from leechristensen/patch-3 | HarmJ0y | 1 | -1/+1 | |
Words :P | |||||
2017-01-09 | Words :P | Lee Christensen | 1 | -1/+1 | |
2017-01-09 | Bug fixes in Get-GPPPassword | HarmJ0y | 1 | -4/+9 | |
2017-01-08 | Get-DomainSPNTicket/Invoke-Kerberoast now include 'real' user data in the ↵ | HarmJ0y | 1 | -5/+19 | |
hash output. Added a bit more error handling when requesting the SPN kerberos ticket. | |||||
2017-01-07 | Merge pull request #205 from mbrancato/dev | HarmJ0y | 1 | -2/+2 | |
Fix errors gathering the forest SID | |||||
2017-01-07 | Fix for issue #170 | HarmJ0y | 1 | -183/+279 | |
Added -SearchForest to search all reachable domain trust \SYSVOL\'s Each password is now output as a separate object. | |||||
2017-01-04 | Fix errors gathering the forest SID | Mike Brancato | 1 | -2/+2 | |
Pull the SID directly from the 'krbtgt' user to avoid errors in ConvertTo-SID | |||||
2016-12-21 | Replaced Invoke-WScriptUACBypass with @enigma0x3's Invoke-EventVwrBypass ↵ | HarmJ0y | 2 | -204/+56 | |
function | |||||
2016-12-21 | Added "-InformationClass Type" to Get-TokenInformation to enumerate token ↵ | HarmJ0y | 1 | -85/+263 | |
type and impersonation level Added Get-ProcessTokenType to enumerate type/impersonation level of a specified process | |||||
2016-12-20 | type correction | HarmJ0y | 1 | -3/+3 | |
2016-12-20 | bug fix in Get-TokenInformation | HarmJ0y | 1 | -4/+4 | |
2016-12-15 | Type fix. | HarmJ0y | 1 | -8/+19 | |
Added -TrustedToAuth to Get-DomainUser | |||||
2016-12-15 | Bug fix for the Find-DomainUserLocation bug fix :) | HarmJ0y | 1 | -2/+3 | |
2016-12-15 | Logic bug fix in Get-DomainFileServer | HarmJ0y | 1 | -3/+6 | |
-Domain bug fix in Find-DomainUserLocation stealth | |||||
2016-12-14 | For ./Recon/ : | HarmJ0y | 14 | -189/+177 | |
-(More) PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | For ./ScriptModification/ : | HarmJ0y | 12 | -53/+574 | |
-PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | removed whitespace | HarmJ0y | 2 | -25/+27 | |
2016-12-14 | For ./Persistence/ : | HarmJ0y | 8 | -131/+894 | |
-PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | For ./Mayhem/ : | HarmJ0y | 4 | -93/+391 | |
-PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | For ./CodeExecution/ : | HarmJ0y | 9 | -2720/+3529 | |
-PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | For ./Antivirus/ : | HarmJ0y | 3 | -86/+247 | |
-PSScriptAnalyzering -Tweaking of synopsis blocks in order to support platyPS -Code standardization -Generated docs | |||||
2016-12-14 | -Fixes for PSScriptAnalyzer compatibility | HarmJ0y | 1 | -18/+114 | |
-More error handling | |||||
2016-12-14 | mods to Get-System for it to pass PSScriptAnalyzer | HarmJ0y | 1 | -104/+112 | |