Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-06-16 | Convert-LDAPProperty now properly parses sidHistory with multiple values | HarmJ0y | 1 | -3/+3 | |
2017-06-13 | -Added Get-DomainObjectAttributeHistory to retrieve attribute replication ↵ | HarmJ0y | 1 | -2/+686 | |
metadata from domain objects -Added Get-DomainObjectLinkedAttributeHistory to retrieve linked attribute replication metadata from domain objects (i.e. group memberships) -Added Get-DomainGroupMemberDeleted to retrieve information on group members that were removed from a specified group at some point | |||||
2017-06-13 | Updated Find-DomainObjectPropertyOutlier approach. | HarmJ0y | 1 | -24/+17 | |
2017-05-25 | -Added negations to some -GroupScope and -GroupProperty values | HarmJ0y | 1 | -9/+14 | |
2017-05-25 | -Added "-GroupScope [DomainLocal/Global/Universal]" to Get-DomainGroup | HarmJ0y | 1 | -0/+36 | |
-Added "-GroupProperty [Security/Distribution/CreatedBySystem]" to Get-DomainGroup | |||||
2017-05-24 | -added parsing of the 'useraccountcontrol' property into human readable format | HarmJ0y | 1 | -24/+101 | |
-added parsing of the 'accountexpires' property into human readable format -added parsing of the 'grouptype' property into human readable format -added parsing of the 'samaccounttype' property into a readable format | |||||
2017-05-24 | Merge branch 'dev' of github.com:PowerShellMafia/PowerSploit into dev | HarmJ0y | 1 | -0/+62 | |
2017-05-23 | Merge pull request #236 from MrAnde7son/patch-3 | Will | 1 | -0/+62 | |
Get-GPODelegation | |||||
2017-05-20 | Get-DomainPolicyData now returns proper object output instead of hashtable. | HarmJ0y | 1 | -53/+92 | |
Modified Get-IniContent and Get-GptTmpl to accept '-OutputObject' to output a PSObject instead of a hashtable | |||||
2017-05-08 | fixed quotes | HarmJ0y | 1 | -5/+5 | |
2017-05-07 | Update PowerView.ps1 | Itamar | 1 | -7/+9 | |
Fixed null access control entry in results. | |||||
2017-05-04 | Get-GPODelegation | Itamar | 1 | -0/+60 | |
Hi, I know you guys mentioned this before, but I've not this implemented. I wrote Get-GPODelegation that finds users with write permissions on Group Policy objects, for a potential privilege escalation path. As requested, moved into dev branch. | |||||
2017-04-28 | Get-DomainGPO - fixed enumerations of 'enforced' GPOs, and | HarmJ0y | 1 | -5/+20 | |
bug fix for nested OUs with similar starting names. | |||||
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-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-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-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 | Words :P | Lee Christensen | 1 | -1/+1 | |
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-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-20 | type correction | HarmJ0y | 1 | -3/+3 | |
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 | 6 | -139/+151 | |
-(More) 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-13 | Added Set-DomainObjectOwner to modify an object's owner | HarmJ0y | 2 | -19/+196 | |
Modified Convert-LDAPProperty to break out sections of ntsecuritydescriptor | |||||
2016-12-13 | Added Set-DomainUserPassword to reset a particular user's password. | HarmJ0y | 3 | -0/+115 | |
Reformatted documentation. | |||||
2016-12-12 | Added spacing to prep for platyPS doc generation. | HarmJ0y | 1 | -249/+249 | |
2016-12-12 | Typo correction and Recon README.md update | HarmJ0y | 3 | -91/+87 | |
2016-12-12 | bug fix in Get-DomainSearcher | HarmJ0y | 1 | -1/+5 | |