Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Code Smell 138 — Packages Dependency
https://cdn-images-1.medium.com/max/2600/1*uCAKYwy4zWzjkWRCG-NxqQ.jpeg
There’s an industry trend to avoid writing code as much as possible. But this is not for free
Continue reading on Level Up Coding »
___________________________
@hacking_Attack
@Hacking_Video
Code Smell 138 — Packages Dependency
https://cdn-images-1.medium.com/max/2600/1*uCAKYwy4zWzjkWRCG-NxqQ.jpeg
There’s an industry trend to avoid writing code as much as possible. But this is not for free
Continue reading on Level Up Coding »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Code Smell 138 — Packages Dependency
There’s an industry trend to avoid writing code as much as possible. But this is not for free
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
Bored Ape Yacht Club’s Discord Server Was Hacked
https://cdn-images-1.medium.com/max/1600/1*uugtK-mTK0G3cUEqxkQcTg.jpeg
The Bored Ape Yacht Club (BAYC) Discord server was hacked on Saturday, with the attacker making off with 200 ETH ($360,000) worth of NFTs…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Bored Ape Yacht Club’s Discord Server Was Hacked
https://cdn-images-1.medium.com/max/1600/1*uugtK-mTK0G3cUEqxkQcTg.jpeg
The Bored Ape Yacht Club (BAYC) Discord server was hacked on Saturday, with the attacker making off with 200 ETH ($360,000) worth of NFTs…
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
Bored Ape Yacht Club’s Discord Server Was Hacked
The Bored Ape Yacht Club (BAYC) Discord server was hacked on Saturday, with the attacker making off with 200 ETH ($360,000) worth of NFTs…
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
JIS-CTF: VULNUPLOAD
https://cdn-images-1.medium.com/max/863/0*LtRwhl2BF8r8nz7O
Makineyi indirebilirsiniz.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
JIS-CTF: VULNUPLOAD
https://cdn-images-1.medium.com/max/863/0*LtRwhl2BF8r8nz7O
Makineyi indirebilirsiniz.
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
JIS-CTF: VULNUPLOAD
Makineyi indirebilirsiniz.
Hacking Articles Tips Tricks Videos Tutorials
Photo
KitPloit - PenTest Tools!
AzureRT - A Powershell Module Implementing Various Azure Red Team Tactics
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGtrjEObTfWdBVYk2Y7SDeJ_lIYLNEAsmxP3r6h8NIWcwVQkH_VIVS49EaZk7C9OgtWqoBo3dN9E5lfaEU-R3mEWBQ4yvrAIzUKIYI6FlsNDmALwFMOxt7MkQKwzl2mQXYwR7di93zq2ZEd0fXgq0hE7eIaYrMUrNnVeCPmwrf1Jc68grUVNoloH-x/w640-h230/azure_redteam.png Powershell module implementing various cmdlets to interact with Azure and Azure AD from an offensive perspective.
Helpful utilities dealing with access token based authentication, switching from
Typical Red Team / audit workflow starting with stolen credentials can be summarised as follows:
1.
2.
3.
4.
5.
* Juggling with access tokens from
* Nicely print authentication context (aka whoami) in
* Display available permissions granted to the user on a target Azure VM
* Display accessible Azure Resources along with permissions we have against them
* Easily read all accessible Azure Key Vault secrets
* Authenticate as a Service Principal to leverage Privileged Role Administrator role assigned to that Service Principal
* Execute attack against Azure Automation via malicious Runbook InstallationThis module depends on Powershell
Then to load this module, simply type:
Or you can let AzureRT to install and import all the dependencies:
Every cmdlet has a nice help message detailing parameters, des[...]
___________________________
@hacking_Attack
@Hacking_Video
AzureRT - A Powershell Module Implementing Various Azure Red Team Tactics
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGtrjEObTfWdBVYk2Y7SDeJ_lIYLNEAsmxP3r6h8NIWcwVQkH_VIVS49EaZk7C9OgtWqoBo3dN9E5lfaEU-R3mEWBQ4yvrAIzUKIYI6FlsNDmALwFMOxt7MkQKwzl2mQXYwR7di93zq2ZEd0fXgq0hE7eIaYrMUrNnVeCPmwrf1Jc68grUVNoloH-x/w640-h230/azure_redteam.png Powershell module implementing various cmdlets to interact with Azure and Azure AD from an offensive perspective.
Helpful utilities dealing with access token based authentication, switching from
Azto AzureADand az cliinterfaces, easy to use pre-made attacks such as Runbook-based command execution and more. The Most Valuable CmdletsThis toolkit brings lots of various cmdlets. This section highlights the most important & useful ones.Typical Red Team / audit workflow starting with stolen credentials can be summarised as follows:
Credentials Stolen -> Authenticate to Azure/AzureAD -> find whether they're valid -> find out what you can do with them The below cmdlets are precisely suited to help you follow this sequence:1.
Connect-ART- Offers various means to authenticate to Azure - credentials, PSCredential, token2.
Connect-ARTAD- Offers various means to authenticate to Azure AD - credentials, PSCredential, token3.
Get-ARTWhoami- When you authenticate - run this to check whoami and validate your access4.
Get-ARTAccess- Then, when you know you have access - find out what you can do & what's possible by performing Azure situational awareness5.
Get-ARTADAccess- Similarly you can find out what you can do scoped to Azure AD. Use CasesCmdlets implemented in this module came helpful in following use & attack scenarios:* Juggling with access tokens from
Azto AzureADand back again.* Nicely print authentication context (aka whoami) in
Az, AzureAD, Microsoft.Graphand az cliat the same time* Display available permissions granted to the user on a target Azure VM
* Display accessible Azure Resources along with permissions we have against them
* Easily read all accessible Azure Key Vault secrets
* Authenticate as a Service Principal to leverage Privileged Role Administrator role assigned to that Service Principal
* Execute attack against Azure Automation via malicious Runbook InstallationThis module depends on Powershell
Azand AzureADmodules pre-installed. Microsoft.Graphand az cliare optional but nonetheless really useful. Before one starts crafting around Azure, following commands may be used to prepare one's offensive environment: Install-Module Az -Force -Confirm -AllowClobber -Scope CurrentUser
Install-Module AzureAD -Force -Confirm -AllowClobber -Scope CurrentUser
Install-Module Microsoft.Graph -Force -Confirm -AllowClobber -Scope CurrentUser # OPTIONAL
Install-Module MSOnline -Force -Confirm -AllowClobber -Scope CurrentUser # OPTIONAL
Install-Module AzureADPreview -Force -Confirm -AllowClobber -Scope CurrentUser # OPTIONAL
Install-Module AADInternals -Force -Confirm -AllowClobber -Scope CurrentUser # OPTIONAL
Import-Module Az
Import-Module AzureAD Even though only first two modules are required by AzureRT, its good to have others pre-installed too.Then to load this module, simply type:
PS> . .\AzureRT.ps1 And you're good to go.Or you can let AzureRT to install and import all the dependencies:
PS> . .\AzureRT.ps1
PS> Import-ARTModulesBatteries IncludedThe module will be gradually receiving next tools and utilities, naturally categorised onto subsequent kill chain phases.Every cmdlet has a nice help message detailing parameters, des[...]
___________________________
@hacking_Attack
@Hacking_Video
KitPloit - PenTest & Hacking Tools
AzureRT - A Powershell Module Implementing Various Azure Red Team Tactics
Hacking Articles Tips Tricks Videos Tutorials
KitPloit - PenTest Tools! AzureRT - A Powershell Module Implementing Various Azure Red Team Tactics https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiGtrjEObTfWdBVYk2Y7SDeJ_lIYLNEAsmxP3r6h8NIWcwVQkH_VIVS49EaZk7C9OgtWqoBo3dN9E5lfaEU-R3mEWBQ4yvrA…
cription and example usage:
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
___________________________
@hacking_Attack
@Hacking_Video
PS C:\> Get-Help Connect-ART Currently, following utilities are included: Authentication & Token mechanics* Get-ARTWhoami- Displays and validates our authentication context on Azure, AzureAD, Microsoft.Graphand on AZ CLIinterfaces.*
Connect-ART- Invokes Connect-AzAccountto authenticate current session to the Azure Portal via provided Access Token or credentials. Skips the burden of providing Tenant ID and Account ID by automatically extracting those from provided Token.*
Connect-ARTAD- Invokes Connect-AzureAD(and optionally Connect-MgGraph) to authenticate current session to the Azure Active Directory via provided Access Token or credentials. Skips the burden of providing Tenant ID and Account ID by automatically extracting those from provided Token.*
Connect-ARTADServicePrincipal- Invokes Connect-AzAccountto authenticate current session to the Azure Portal via provided Access Token or credentials. Skips the burden of providing Tenant ID and Account ID by automatically extracting those from provided Token. Then it creates self-signed PFX certificate and associates it with Service Principal for authentication. Afterwards, authenticates as that Service Principal to AzureAD and deassociates that certificate to cleanup*
Get-ARTAccessTokenAzCli- Acquires access token from az cli, via az account get-access-token* Get-ARTAccessTokenAz- Acquires access token from Az module, via Get-AzAccessToken.*
Get-ARTAccessTokenAzureAD- Gets an access token from Azure Active Directory. Authored by Simon Wahlin, @SimonWahlin * Get-ARTAccessTokenAzureADCached- Attempts to retrieve locally cached AzureAD access token (https://graph.microsoft.com), stored after Connect-AzureADoccurred.*
Remove-ARTServicePrincipalKey- Performs cleanup actions after running Connect-ARTADServicePrincipalRecon & Situational Awareness* Get-ARTAccess- Performs Azure Situational Awareness.*
Get-ARTADAccess- Performs Azure AD Situational Awareness.*
Get-ARTTenants- List Tenants available for the currently authenticated user (or the one based on supplied Access Token)*
Get-ARTDangerousPermissions- Analyzes accessible Azure Resources and associated permissions user has on them to find all the Dangerous ones that could be abused by an attacker.*
Get-ARTResource- Authenticates to the https://management.azure.com using provided Access Token and pulls accessible resources and permissions that token Owner have against them.*
Get-ARTRoleAssignment- Displays a bit easier to read representation of assigned Azure RBAC roles to the currently used Principal.*
Get-ARTADRoleAssignment- Displays Azure AD Role assignments on a current user or on all Azure AD users.*
Get-ARTADScopedRoleAssignment- Displays Azure AD Scoped Role assignments on a current user or on all Azure AD users, associated with Administrative Units*
Get-ARTRolePermissions- Displays all granted permissions on a specified Azure RBAC role.*
Get-ARTADRolePermissions- Displays all granted permissions on a specified Azure AD role.*
Get-ARTADDynamicGroups- Displays Azure AD Dynamic Groups along with their user Membership Rules, members count and current user membership status*
Get-ARTApplication- Lists Azure AD Enterprise Applications that current user is owner of (or all existing when -All used) along with their owners and Service Principals*
Get-ARTApplicationProxy- Lists Azure AD Enterprise Applications that have Application Proxy setup.*
Get-ARTApplicationProxyPrincipals- Displays users and groups ass[...]___________________________
@hacking_Attack
@Hacking_Video
Microsoft
Microsoft Graph Dev Center | APIs and app development
Use the Microsoft Graph API to connect to data and other datasets to derive insights and analytics, extend Microsoft 365 experiences, and build intelligent apps.
Hacking Articles Tips Tricks Videos Tutorials
cription and example usage: PS C:\> Get-Help Connect-ART Currently, following utilities are included: Authentication & Token mechanics* Get-ARTWhoami- Displays and validates our authentication context on Azure, AzureAD, Microsoft.Graphand on AZ CLIinterfaces.…
igned to the specified Application Proxy application.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
___________________________
@hacking_Attack
@Hacking_Video
*
Get-ARTStorageAccountKeys- Displays all the available Storage Account keys.*
Get-ARTKeyVaultSecrets- Lists all available Azure Key Vault secrets. This cmdlet assumes that requesting user connected to the Azure AD with KeyVaultAccessToken (scoped to https://vault.azure.net) and has "Key Vault Secrets User" role assigned (or equivalent).*
Get-ARTAutomationCredentials- Lists all available Azure Automation Account credentials and attempts to pull their values (unable to pull values!).*
Get-ARTAutomationRunbookCode- Invokes REST API method to pull specified Runbook's source code.*
Get-ARTAzVMPublicIP- Retrieves Azure VM Public IP address*
Get-ARTResourceGroupDeploymentTemplate- Displays Resource Group Deployment Template JSON based on input parameters, or pulls all of them at once.*
Get-ARTAzVMUserDataFromInside- Retrieves Azure VM User Data from inside of a VM by reaching to Instance Metadata endpoint. Privilege Escalation* Add-ARTADGuestUser- Sends Azure AD Guest user invitation e-mail, allowing to expand access to AAD tenant for the external attacker & returns Invite Redeem URL used to easily accept the invitation.*
Set-ARTADUserPassword- Abuses Authentication AdministratorRole Assignment to reset other non-admin users password.*
Add-ARTUserToGroup- Adds a specified Azure AD User to the specified Azure AD Group.*
Add-ARTUserToRole- Adds a specified Azure AD User to the specified Azure AD Role.*
Add-ARTADAppSecret- Add client secret to the Azure AD Applications. Authored by Nikhil Mittal, @nikhil_mitt Lateral Movement* Invoke-ARTAutomationRunbook- Creates an Automation Runbook under specified Automation Account and against selected Worker Group. That Runbook will contain Powershell commands to be executed on all the affected Azure VMs.*
Invoke-ARTRunCommand- Abuses virtualMachines/runCommandpermission against a specified Azure VM to run custom Powershell command.*
Update-ARTAzVMUserData- Modifies Azure VM User Data script through a direct API invocation.*
Invoke-ARTCustomScriptExtension- Creates new or modifies Azure VM Custom Script Extension leading to remote code execution. Misc* Get-ARTTenantID- Retrieves Current user's Tenant ID or Tenant ID based on Domain name supplied.*
Get-ARTPRTToken- Retrieves Current user's PRT (Primary Refresh Token) value using Dirk-Jan Mollema's ROADtoken*
Get-ARTPRTNonce- Retrieves Current user's PRT (Primary Refresh Token) nonce value*
Get-ARTUserId- Acquires current user or user specified in parameter ObjectId via Azmodule*
Get-ARTSubscriptionId- Helper that collects current Subscription ID.*
Parse-JWTtokenRT- Parses input JWT token and prints it out nicely.*
Invoke-ARTGETRequest- Takes Access Token and invokes GET REST method API request against a specified URI. It also verifies whether provided token has required audience set.*
Import-ARTModules- Installs & Imports required & optional Powershell modules for Azure Red Team activities Show SupportThis and other projects are outcome of sleepless nights and plenty of hard work. If you like what I do and appreciate that I always give back to the community, Consider buying me a coffee (or better a beer) just to say thank you!
Mariusz Banach / mgeeky, (@mariuszbit)
Download AzureRT___________________________
@hacking_Attack
@Hacking_Video
If It’s a Feature!!! Let’s Abuse It for $750
https://medium.com/@shakti.gtp/if-its-a-feature-let-s-abuse-it-for-750-19cfb9848d4b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
https://medium.com/@shakti.gtp/if-its-a-feature-let-s-abuse-it-for-750-19cfb9848d4b?source=rss------bug_bounty-5
___________________________
@hacking_Attack
@Hacking_Video
Medium
If It’s a Feature!!! Let’s Abuse It for $750
Hello mates,
Hello mates,Continue reading on Medium » (https://medium.com/@shakti.gtp/if-its-a-feature-let-s-abuse-it-for-750-19cfb9848d4b?source=rss------bug_bounty-5)
___________________________
@hacking_Attack
@Hacking_Video
___________________________
@hacking_Attack
@Hacking_Video
Medium
If It’s a Feature!!! Let’s Abuse It for $750
Hello mates,
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
AOL 3.0 (1996) Reverse Engineered and Put Back Online
https://external-preview.redd.it/TZO3Zz-KpEap3nYZb-21hBcb5AIr34Yyvcrq0HSppIc.jpg?width=640&crop=smart&auto=webp&s=b983dee35b7861f1214ab17af1c8b462db29a46d submitted by /u/endless
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
AOL 3.0 (1996) Reverse Engineered and Put Back Online
https://external-preview.redd.it/TZO3Zz-KpEap3nYZb-21hBcb5AIr34Yyvcrq0HSppIc.jpg?width=640&crop=smart&auto=webp&s=b983dee35b7861f1214ab17af1c8b462db29a46d submitted by /u/endless
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
AOL 3.0 (1996) Reverse Engineered and Put Back Online
Posted in r/hacking by u/endless • 1 point and 0 comments
Hacking Articles Tips Tricks Videos Tutorials
Photo
hacking: security in practice
Ransomware for IoT Devices that Targets IT and OT Networks is Demonstrated by Researchers
https://external-preview.redd.it/SpRAsRvAGvaj4h1wVnRrfvvAZWTk_AuQefD58rBOsys.jpg?width=640&crop=smart&auto=webp&s=c017ae21934d4b648e5f22deca230f6b846b195d submitted by /u/BadExtension1309
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
Ransomware for IoT Devices that Targets IT and OT Networks is Demonstrated by Researchers
https://external-preview.redd.it/SpRAsRvAGvaj4h1wVnRrfvvAZWTk_AuQefD58rBOsys.jpg?width=640&crop=smart&auto=webp&s=c017ae21934d4b648e5f22deca230f6b846b195d submitted by /u/BadExtension1309
[link] [comments]
___________________________
@hacking_Attack
@Hacking_Video
reddit
Ransomware for IoT Devices that Targets IT and OT Networks is...
Posted in r/hacking by u/BadExtension1309 • 1 point and 0 comments
Hacking Articles Tips Tricks Videos Tutorials
Photo
Hacking on Medium
If It’s a Feature!!! Let’s Abuse It for $750
https://cdn-images-1.medium.com/max/1388/1*OEf4dhF4SJBj6DoF0YnWxw.png
Hello mates,
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
If It’s a Feature!!! Let’s Abuse It for $750
https://cdn-images-1.medium.com/max/1388/1*OEf4dhF4SJBj6DoF0YnWxw.png
Hello mates,
Continue reading on Medium »
___________________________
@hacking_Attack
@Hacking_Video
Medium
If It’s a Feature!!! Let’s Abuse It for $750
Hello mates,