Hacking Articles Tips Tricks Videos Tutorials
471 subscribers
66K photos
15 videos
157 files
132K links
Exploit
Pentesting
Hacking
Red Team
Blue Team
Kali Linux
Bug Bounty
Black Hat
Cyber security etc

@Hacking_Video
@Hacking_attack
Download Telegram
Docker: From a beginner's perspective

Docker is actually a docker engine that is used to create containers. Containers can be considered as VMs, but these VMs don’t have any…Continue reading on Medium »
Read more...
-BasicAuth Parameter: [OPTIONAL] If MFA is not enforced for your user principal, you can use this parameter which will prompt only once for authentication and store credentials (https://www.kitploit.com/search/label/Credentials) using Get-Credential. (Not Recommended) .\Get-CRTReport.ps1 -BasicAuth
-JobName Parameter: [OPTIONAL] Use the JobName parameter to distinguish between different tenants. If no JobName is specified, a Date/Time formatted folder will be placed within the working directory. .\Get-CRTReport.ps1 -JobName MyJobName
-WorkingDirectory Parameter: [OPTIONAL] If you want to specify a different working directory for your jobs, you can do so with this parameter. The default working directory is the directory the script is being run from. .\Get-CRTReport.ps1 -JobName MyJobName -WorkingDirectory 'C:\Path\to\Job\Folder'
-Commands Parameter: [OPTIONAL] With this parameter, specify the specific commands you want to run in quotes, comma or space separated. .\Get-CRTReport.ps1 -JobName MyJobName -WorkingDirectory 'C:\Path\to\Job\Folder' -Commands "Command1,Command2"
-AzureEnvironmentName & -ExchangeEnvironmentName Parameter: [OPTIONAL] With this parameter, specify the Azure or Exchange environment names. Using tab complete you can search the acceptable values. .\Get-CRTReport.ps1 -ExchangeEnvironmentName O365USGovGCCHigh -AzureEnvironmentName AzureUSGovernment
Available Commands: FedConfig
FedTrust
ClientAccess
RemoteDomains
SMTPForward
TransportRules
FullAccessGranted
AnyAccessGranted
SendAsGranted
EXOPowerShell
AuditBypassEnabled
HiddenMailboxes
KeyCredentials
O365AdminGroups
DelegateAppPerms
AdminAuditLogConfig
-Interactive Parameter: [OPTIONAL] Some commands may take a long time to process depending on the amount of data in the tenant. Using the Interactive parameter, you will have the option to skip any particular command prior to the module running. .\Get-CRTReport.ps1 -JobName MyJobName -WorkingDirectory 'C:\Path\to\Job\Folder' -Interactive
Report Summary: With each run, CRT will output a report for each query in json as well as more readable, .TXT and .CSV formats: No parameters specified: A folder named with date and time (YYYYDDMMTHHMM) will be created automatically in the directory the script is being run from. To support MFA, the default authentication method will prompt the user to login for each connection. YYYYDDMMTHHMM\output.log (hard copy of console logging) YYYYDDMMTHHMM\_CRTReportSummary.txt (Summary of scripts run and investigative tips for guidance) YYYYDDMMTHHMM\Reports\.csv (Report in CSV output, where applicable) YYYYDDMMTHHMM\Reports\.txt (Report in TXT output, where applicable) YYYYDDMMTHHMM\Reports\json\.json (Each report is accompanied by JSON output for additional verbosity) Known Issues: Attempting to connect to Exchange Online using Federated logins does not currently work while trying to connect to both Exchange Online and Azure AD in the same PowerShell session. Retrieving results for Any/FullAccess permissions (AnyAccessGranted and FullAccessGranted commands) in some cases returns an error and may not fully complete. Running the command manually may still work: Get-EXOMailbox -ResultSize Unlimited | Get-EXOMailboxPermission | Where-Object { ($_.IsInherited -eq $false) -and -not ($_.User -like "NT AUTHORITY\SELF")} | Export-Csv "AnyAssignedPerms.csv" -NoTypeInformation -Encoding Default

Get-EXOMailbox -ResultSize Unlimited | Get-EXOMailboxPermission | Where-Object { ($_.AccessRights -eq "FullAccess") -and ($_.IsInherited -eq $false) -and -not ($_.User -like "NT AUTHORITY\SELF")} | Export-Csv "FullAccessPerms.csv" -NoTypeInformation -Encoding Default
How Can I Contribute? If you've found a bug, please use the Issues tab to report a new issue or add your comments to an existing one. If you have any recommendations for the tool or require critical escalation, please email: CRT@crowdstrike.com (mailto:CRT@crowdstrike.com).
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
How to Beat Wordle every day! An Easy Cheat!

https://cdn-images-1.medium.com/max/867/1*z4UArGXdi9KODQYQLqepzA.png
Since I have been seeing a lot of people sharing their daily Wordle results on social media recently, it makes me curious to look into …

Continue reading on Medium »