Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🖥️ Secret Blizzard Leverages Storm-0156 Infrastructure for #Espionage
https://undercodenews.com/secret-blizzard-leverages-storm-0156-infrastructure-for-espionage/
@Undercode_News
https://undercodenews.com/secret-blizzard-leverages-storm-0156-infrastructure-for-espionage/
@Undercode_News
UNDERCODE NEWS
Secret Blizzard Leverages Storm-0156 Infrastructure for Espionage - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🔋 #Gemini Could Replace Bixby as the Power Button #AI
https://undercodenews.com/gemini-could-replace-bixby-as-the-power-button-ai/
@Undercode_News
https://undercodenews.com/gemini-could-replace-bixby-as-the-power-button-ai/
@Undercode_News
UNDERCODE NEWS
Gemini Could Replace Bixby as the Power Button AI - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
⚡️ Reuniting Families and Modernizing Immigration: A New Bill in Congress
https://undercodenews.com/reuniting-families-and-modernizing-immigration-a-new-bill-in-congress/
@Undercode_News
https://undercodenews.com/reuniting-families-and-modernizing-immigration-a-new-bill-in-congress/
@Undercode_News
UNDERCODE NEWS
Reuniting Families and Modernizing Immigration: A New Bill in Congress - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🌐 2025: A Wednesday Start Sparks Online Chatter
https://undercodenews.com/2025-a-wednesday-start-sparks-online-chatter/
@Undercode_News
https://undercodenews.com/2025-a-wednesday-start-sparks-online-chatter/
@Undercode_News
UNDERCODE NEWS
2025: A Wednesday Start Sparks Online Chatter - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
Sudden Dismissal: A Techie's Tale of Betrayal
https://undercodenews.com/sudden-dismissal-a-techies-tale-of-betrayal/
@Undercode_News
https://undercodenews.com/sudden-dismissal-a-techies-tale-of-betrayal/
@Undercode_News
UNDERCODE NEWS
Sudden Dismissal: A Techie's Tale of Betrayal - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from Exploiting Crew (Pr1vAt3)
🦑Monitoring: BloodHound is a powerful tool for analyzing and visualizing Active Directory environments. It assists penetration testers and system administrators in identifying weak permissions, potential attack paths, and privilege escalation opportunities within a Windows domain.
---
### GitHub Repository:
[BloodHound GitHub](https://github.com/BloodHoundAD/BloodHound)
---
### Features:
1. Active Directory Enumeration:
- Maps domain trust relationships.
- Identifies paths to high-value targets like Domain Admins.
- Highlights risky ACLs and misconfigurations.
2. Graph Visualization:
- Displays a clear graph of domain objects and their relationships.
- Uses queries to highlight exploitable paths and vulnerabilities.
3. Neo4j Database Integration:
- Stores collected AD data for analysis.
- Allows querying via Cypher language for complex insights.
4. Cross-Platform Support:
- Runs on Windows, macOS, and Linux.
---
### Use Cases:
1. Privilege Escalation:
- Identifies attack paths from low-privileged users to domain administrators.
2. Lateral Movement:
- Maps routes through machines, groups, and users for lateral traversal.
3. Audit & Mitigation:
- Assists administrators in identifying weak spots and tightening security.
---
### How It Works:
1. Data Collection:
Use SharpHound, the data collector, to gather information from the domain.
Example:
This collects data about users, groups, permissions, trusts, and ACLs.
2. Data Import:
Import the collected JSON files into BloodHound.
3. Querying:
Use predefined or custom Cypher queries to identify attack paths.
Example Query:
This finds all computers where "John" has administrative rights.
---
### Visualization Example:
A graphical representation might show:
- Nodes: Users, groups, computers, and domains.
- Edges: Relationships like group memberships, session hosts, and admin rights.
---
### Installation:
1. Neo4j Database:
- Download and install from [Neo4j](https://neo4j.com/).
- Start the database service.
2. BloodHound:
- Clone the repository or download the release binaries.
- Run the BloodHound GUI.
---
### Additional Tools:
- SharpHound: Data collection tool for Windows environments.
- AzureHound: Gathers data for Azure AD.
This tool is essential for auditing AD security and simulating attacker behavior in penetration testing engagements.
---
### GitHub Repository:
[BloodHound GitHub](https://github.com/BloodHoundAD/BloodHound)
---
### Features:
1. Active Directory Enumeration:
- Maps domain trust relationships.
- Identifies paths to high-value targets like Domain Admins.
- Highlights risky ACLs and misconfigurations.
2. Graph Visualization:
- Displays a clear graph of domain objects and their relationships.
- Uses queries to highlight exploitable paths and vulnerabilities.
3. Neo4j Database Integration:
- Stores collected AD data for analysis.
- Allows querying via Cypher language for complex insights.
4. Cross-Platform Support:
- Runs on Windows, macOS, and Linux.
---
### Use Cases:
1. Privilege Escalation:
- Identifies attack paths from low-privileged users to domain administrators.
2. Lateral Movement:
- Maps routes through machines, groups, and users for lateral traversal.
3. Audit & Mitigation:
- Assists administrators in identifying weak spots and tightening security.
---
### How It Works:
1. Data Collection:
Use SharpHound, the data collector, to gather information from the domain.
Example:
SharpHound.exe -c All
This collects data about users, groups, permissions, trusts, and ACLs.
2. Data Import:
Import the collected JSON files into BloodHound.
3. Querying:
Use predefined or custom Cypher queries to identify attack paths.
Example Query:
MATCH (n:User {name:"John"})-[r:AdminTo]->(m:Computer) RETURN n,m
This finds all computers where "John" has administrative rights.
---
### Visualization Example:
A graphical representation might show:
- Nodes: Users, groups, computers, and domains.
- Edges: Relationships like group memberships, session hosts, and admin rights.
---
### Installation:
1. Neo4j Database:
- Download and install from [Neo4j](https://neo4j.com/).
- Start the database service.
2. BloodHound:
- Clone the repository or download the release binaries.
- Run the BloodHound GUI.
---
### Additional Tools:
- SharpHound: Data collection tool for Windows environments.
- AzureHound: Gathers data for Azure AD.
This tool is essential for auditing AD security and simulating attacker behavior in penetration testing engagements.
GitHub
GitHub - SpecterOps/BloodHound-Legacy: Six Degrees of Domain Admin
Six Degrees of Domain Admin. Contribute to SpecterOps/BloodHound-Legacy development by creating an account on GitHub.
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🕵️ A Harrowing Tale of Russian #Spyware and Persecution
https://undercodenews.com/a-harrowing-tale-of-russian-spyware-and-persecution/
@Undercode_News
https://undercodenews.com/a-harrowing-tale-of-russian-spyware-and-persecution/
@Undercode_News
UNDERCODE NEWS
A Harrowing Tale of Russian Spyware and Persecution - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
📧 SEBI Relaxes Demat #Account Contact Details Rules for Family Members
https://undercodenews.com/sebi-relaxes-demat-account-contact-details-rules-for-family-members/
@Undercode_News
https://undercodenews.com/sebi-relaxes-demat-account-contact-details-rules-for-family-members/
@Undercode_News
UNDERCODE NEWS
SEBI Relaxes Demat Account Contact Details Rules for Family Members - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🤖 #Samsung Foundry's 3nm Process: A Strategic Shift
https://undercodenews.com/samsung-foundrys-3nm-process-a-strategic-shift/
@Undercode_News
https://undercodenews.com/samsung-foundrys-3nm-process-a-strategic-shift/
@Undercode_News
UNDERCODE NEWS
Samsung Foundry's 3nm Process: A Strategic Shift - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
📱 #Samsung's Vision for the Future: #AI-Powered Home Appliances and TVs
https://undercodenews.com/samsungs-vision-for-the-future-ai-powered-home-appliances-and-tvs/
@Undercode_News
https://undercodenews.com/samsungs-vision-for-the-future-ai-powered-home-appliances-and-tvs/
@Undercode_News
UNDERCODE NEWS
Samsung's Vision for the Future: AI-Powered Home Appliances and TVs - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
A Racist Rant and a Twisted Narrative
https://undercodenews.com/a-racist-rant-and-a-twisted-narrative/
@Undercode_News
https://undercodenews.com/a-racist-rant-and-a-twisted-narrative/
@Undercode_News
UNDERCODE NEWS
A Racist Rant and a Twisted Narrative - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
⚡️ #Microsoft Store to #Update Third-Party Apps
https://undercodenews.com/microsoft-store-to-update-third-party-apps/
@Undercode_News
https://undercodenews.com/microsoft-store-to-update-third-party-apps/
@Undercode_News
UNDERCODE NEWS
Microsoft Store to Update Third-Party Apps - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
📱 Reclaiming Your #WhatsApp Conversations: A Comprehensive Guide
https://undercodenews.com/reclaiming-your-whatsapp-conversations-a-comprehensive-guide/
@Undercode_News
https://undercodenews.com/reclaiming-your-whatsapp-conversations-a-comprehensive-guide/
@Undercode_News
UNDERCODE NEWS
Reclaiming Your WhatsApp Conversations: A Comprehensive Guide - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
Elon Musk's Success Formula: A Deep Dive
https://undercodenews.com/elon-musks-success-formula-a-deep-dive/
@Undercode_News
https://undercodenews.com/elon-musks-success-formula-a-deep-dive/
@Undercode_News
UNDERCODE NEWS
Elon Musk's Success Formula: A Deep Dive - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
💾 #Google Partners with Andhra Pradesh to Drive #AI Innovation
https://undercodenews.com/google-partners-with-andhra-pradesh-to-drive-ai-innovation/
@Undercode_News
https://undercodenews.com/google-partners-with-andhra-pradesh-to-drive-ai-innovation/
@Undercode_News
UNDERCODE NEWS
Google Partners with Andhra Pradesh to Drive AI Innovation - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
⚠️ Beware! SpyLoan #Malware lurks in Disguised Loan Apps on #Google Play
https://undercodenews.com/beware-spyloan-malware-lurks-in-disguised-loan-apps-on-google-play/
@Undercode_News
https://undercodenews.com/beware-spyloan-malware-lurks-in-disguised-loan-apps-on-google-play/
@Undercode_News
UNDERCODE NEWS
Beware! SpyLoan Malware lurks in Disguised Loan Apps on Google Play - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🔋 Informative #Samsung's Chip Tweak Could Supercharge Future iPhones
https://undercodenews.com/informative-samsungs-chip-tweak-could-supercharge-future-iphones/
@Undercode_News
https://undercodenews.com/informative-samsungs-chip-tweak-could-supercharge-future-iphones/
@Undercode_News
UNDERCODE NEWS
Informative Samsung's Chip Tweak Could Supercharge Future iPhones - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
📱 #Apple Arcade Expands its Game Library with Classic RPGs and More
https://undercodenews.com/apple-arcade-expands-its-game-library-with-classic-rpgs-and-more/
@Undercode_News
https://undercodenews.com/apple-arcade-expands-its-game-library-with-classic-rpgs-and-more/
@Undercode_News
UNDERCODE NEWS
Apple Arcade Expands its Game Library with Classic RPGs and More - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🌐 Dia: The #AI-Powered Browser Redefining the Web
https://undercodenews.com/dia-the-ai-powered-browser-redefining-the-web/
@Undercode_News
https://undercodenews.com/dia-the-ai-powered-browser-redefining-the-web/
@Undercode_News
UNDERCODE NEWS
Dia: The AI-Powered Browser Redefining the Web - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🌐 #AI-Powered Browsing: The Future of Web Browsing
https://undercodenews.com/ai-powered-browsing-the-future-of-web-browsing/
@Undercode_News
https://undercodenews.com/ai-powered-browsing-the-future-of-web-browsing/
@Undercode_News
UNDERCODE NEWS
AI-Powered Browsing: The Future of Web Browsing - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
🔧 #Samsung One UI 70 Beta Program Opens for #Galaxy S24 Series
https://undercodenews.com/samsung-one-ui-70-beta-program-opens-for-galaxy-s24-series/
@Undercode_News
https://undercodenews.com/samsung-one-ui-70-beta-program-opens-for-galaxy-s24-series/
@Undercode_News
UNDERCODE NEWS
Samsung One UI 70 Beta Program Opens for Galaxy S24 Series - UNDERCODE NEWS
Undercode News was founded in order to provide the most useful information in the world of hacking and technology. Staffed 24/24 hours, seven days a week by a dedicated team in undercode around the world, so it can provide an environment of information and…