Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
β‘οΈ A New Wave of #AI: WaveForms Aims to Revolutionize Voice Interaction
https://undercodenews.com/a-new-wave-of-ai-waveforms-aims-to-revolutionize-voice-interaction/
@Undercode_News
https://undercodenews.com/a-new-wave-of-ai-waveforms-aims-to-revolutionize-voice-interaction/
@Undercode_News
UNDERCODE NEWS
A New Wave of AI: WaveForms Aims to Revolutionize Voice Interaction - 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)
β‘οΈ Anthropic's New Claude: A Step Towards Autonomous #AI
https://undercodenews.com/anthropics-new-claude-a-step-towards-autonomous-ai/
@Undercode_News
https://undercodenews.com/anthropics-new-claude-a-step-towards-autonomous-ai/
@Undercode_News
UNDERCODE NEWS
Anthropic's New Claude: A Step Towards Autonomous 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)
#AI's Voice: #OpenAI's Advanced Voice Mode and the Future of #AI Interaction
https://undercodenews.com/ais-voice-openais-advanced-voice-mode-and-the-future-of-ai-interaction/
@Undercode_News
https://undercodenews.com/ais-voice-openais-advanced-voice-mode-and-the-future-of-ai-interaction/
@Undercode_News
UNDERCODE NEWS
AI's Voice: OpenAI's Advanced Voice Mode and the Future of AI Interaction - 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)
π‘οΈ #OpenAI Bolsters Security with Former NSA Chief
https://undercodenews.com/openai-bolsters-security-with-former-nsa-chief/
@Undercode_News
https://undercodenews.com/openai-bolsters-security-with-former-nsa-chief/
@Undercode_News
UNDERCODE NEWS
OpenAI Bolsters Security with Former NSA Chief - 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 TESTING
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦ Hack GraphRAG implementation:
Nano-GraphRAG is a lightweight, efficient, and portable implementation of GraphRAG. It's designed to be more user-friendly and hackable than the official version while retaining the core features.
Key Features
- Small yet powerful: ~1100 lines of core code (excluding tests/prompts).
- Highly portable: Supports integrations with Faiss, Neo4j, Ollama, etc.
- Asynchronous and fully typed: Suitable for modern Python workflows.
- Flexible backends:
- LLM: OpenAI, Amazon Bedrock, Ollama, others.
- Vector DB: Built-in
- Graph Storage: NetworkX (default), Neo4j (optional).
- Incremental and batch data handling: Easy to scale as data grows.
Installation
From Source (Recommended)
From PyPI
Quick Start
1. Set up API Keys:
- OpenAI API:
- For Azure OpenAI or Amazon Bedrock, refer to
2. Download a sample text:
3. Basic Usage:
4. Reuse Stored Contexts:
- Reinitialize with the same
Advanced Features
- Batch Insert:
- Incremental Insert:
- Async Support:
- Customizable Parameters:
- Use
Components and Extensibility
Built-in Components:
- LLM: OpenAI, Amazon Bedrock.
- Vector DB: Nano-vectordb, HNSWlib.
- Graph Storage: NetworkX, Neo4j.
Example Extensions:
- Embedding: Sentence-transformers, custom embeddings.
- Visualization: GraphML-based visualizations.
- Chunking: Token-based or custom splitters.
Benchmarking and Contributions
- Benchmarks for performance comparisons are available under
- Contributions for new components and features are welcomed!
Nano-GraphRAG is ideal for developers seeking a nimble and efficient RAG solution, especially for those who want the flexibility to experiment or build on top of it.
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦ Hack GraphRAG implementation:
Nano-GraphRAG is a lightweight, efficient, and portable implementation of GraphRAG. It's designed to be more user-friendly and hackable than the official version while retaining the core features.
Key Features
- Small yet powerful: ~1100 lines of core code (excluding tests/prompts).
- Highly portable: Supports integrations with Faiss, Neo4j, Ollama, etc.
- Asynchronous and fully typed: Suitable for modern Python workflows.
- Flexible backends:
- LLM: OpenAI, Amazon Bedrock, Ollama, others.
- Vector DB: Built-in
nano-vectordb, HNSWlib, Milvus-lite, Faiss.- Graph Storage: NetworkX (default), Neo4j (optional).
- Incremental and batch data handling: Easy to scale as data grows.
Installation
From Source (Recommended)
Clone the repository
git clone https://github.com/gusye1234/nano-graphrag.git
cd nano-graphrag
pip install -e .
From PyPI
pip install nano-graphrag
Quick Start
1. Set up API Keys:
- OpenAI API:
export OPENAI_API_KEY="sk-..."
- For Azure OpenAI or Amazon Bedrock, refer to
.env.example.2. Download a sample text:
curl https://raw.githubusercontent.com/gusye1234/nano-graphrag/main/tests/mock_data.txt > ./book.txt
3. Basic Usage:
from nano_graphrag import GraphRAG, QueryParam
Initialize GraphRAG
graph_func = GraphRAG(working_dir="./dickens")
Insert text data
with open("./book.txt") as f:
graph_func.insert(f.read())
Perform a global search
print(graph_func.query("What are the top themes in this story?"))
Perform a local search for scalability
print(graph_func.query("What are the top themes in this story?", param=QueryParam(mode="local")))
4. Reuse Stored Contexts:
- Reinitialize with the same
working_dir to reload previous contexts.Advanced Features
- Batch Insert:
graph_func.insert(["TEXT1", "TEXT2", ...])
- Incremental Insert:
graph_func.insert("New text to add")
- Async Support:
await graph_func.ainsert("Async text")
await graph_func.aquery("What is this text about?")
- Customizable Parameters:
- Use
help(GraphRAG) and help(QueryParam) to explore.Components and Extensibility
Built-in Components:
- LLM: OpenAI, Amazon Bedrock.
- Vector DB: Nano-vectordb, HNSWlib.
- Graph Storage: NetworkX, Neo4j.
Example Extensions:
- Embedding: Sentence-transformers, custom embeddings.
- Visualization: GraphML-based visualizations.
- Chunking: Token-based or custom splitters.
Benchmarking and Contributions
- Benchmarks for performance comparisons are available under
examples/benchmarks.- Contributions for new components and features are welcomed!
Nano-GraphRAG is ideal for developers seeking a nimble and efficient RAG solution, especially for those who want the flexibility to experiment or build on top of it.
β β β Uππ»βΊπ«Δπ¬πβ β β β
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
π¨ A Critical Vulnerability in #Windows Common Log File System Driver
https://undercodenews.com/a-critical-vulnerability-in-windows-common-log-file-system-driver/
@Undercode_News
https://undercodenews.com/a-critical-vulnerability-in-windows-common-log-file-system-driver/
@Undercode_News
UNDERCODE NEWS
A Critical Vulnerability in Windows Common Log File System Driver - 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)
β‘οΈ #Windows 11 Build 261002605: A Closer Look at the Latest Patch Tuesday #Update
https://undercodenews.com/windows-11-build-261002605-a-closer-look-at-the-latest-patch-tuesday-update/
@Undercode_News
https://undercodenews.com/windows-11-build-261002605-a-closer-look-at-the-latest-patch-tuesday-update/
@Undercode_News
UNDERCODE NEWS
Windows 11 Build 261002605: A Closer Look at the Latest Patch Tuesday Update - 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)
β‘οΈ #Windows 11's Final 2024 Security #Update: A Closer Look
https://undercodenews.com/windows-11s-final-2024-security-update-a-closer-look/
@Undercode_News
https://undercodenews.com/windows-11s-final-2024-security-update-a-closer-look/
@Undercode_News
UNDERCODE NEWS
Windows 11's Final 2024 Security Update: A Closer Look - 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 Releases Final #Windows 10 Security #Update for 2024
https://undercodenews.com/microsoft-releases-final-windows-10-security-update-for-2024/
@Undercode_News
https://undercodenews.com/microsoft-releases-final-windows-10-security-update-for-2024/
@Undercode_News
UNDERCODE NEWS
Microsoft Releases Final Windows 10 Security Update for 2024 - 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 Purview: Your Comprehensive Data Protection and Governance Solution
https://undercodenews.com/microsoft-purview-your-comprehensive-data-protection-and-governance-solution/
@Undercode_News
https://undercodenews.com/microsoft-purview-your-comprehensive-data-protection-and-governance-solution/
@Undercode_News
UNDERCODE NEWS
Microsoft Purview: Your Comprehensive Data Protection and Governance Solution - 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)
#NASA's Lucy Spacecraft Prepares for a Gravity Assist
https://undercodenews.com/nasas-lucy-spacecraft-prepares-for-a-gravity-assist/
@Undercode_News
https://undercodenews.com/nasas-lucy-spacecraft-prepares-for-a-gravity-assist/
@Undercode_News
UNDERCODE NEWS
NASA's Lucy Spacecraft Prepares for a Gravity Assist - 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 The Frame: Art Mode Meets QLED Excellence
https://undercodenews.com/samsungs-the-frame-art-mode-meets-qled-excellence/
@Undercode_News
https://undercodenews.com/samsungs-the-frame-art-mode-meets-qled-excellence/
@Undercode_News
UNDERCODE NEWS
Samsung's The Frame: Art Mode Meets QLED Excellence - 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 Tough New Phone: #Galaxy Xcover 8 Pro Battery Details Revealed
https://undercodenews.com/informative-samsungs-tough-new-phone-galaxy-xcover-8-pro-battery-details-revealed/
@Undercode_News
https://undercodenews.com/informative-samsungs-tough-new-phone-galaxy-xcover-8-pro-battery-details-revealed/
@Undercode_News
UNDERCODE NEWS
Informative Samsung's Tough New Phone: Galaxy Xcover 8 Pro Battery Details Revealed - 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 TESTING
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦Google Dork : intext:"siemens" & inurl:"/portal/portal.mwsl"
locate Siemens S7 PLC (Programmable Logic Controller) web interfaces through publicly accessible search
This Google dork, intext:"siemens" & inurl:"/portal/portal.mwsl", reveals
the web interfaces of Siemens S7 series PLC controllers. These interfaces
provide access to critical control and monitoring functions of industrial
systems. Unauthorized access can lead to significant operational
disruptions and security risks in industrial environments.
Proof Of Concept (PoC):
Steps to Reproduce:
1.Open Google Search.
2.Enter the dork query: intext:"siemens" & inurl:"/portal/portal.mwsl".
3.Review the search results to find URLs of Siemens S7 PLC web interfaces.
4. Click on a search result to access the web interface of the PLC.
5.Attempt to log in using default or commonly known credentials (if login
is required).
β β β Uππ»βΊπ«Δπ¬πβ β β β
π¦Google Dork : intext:"siemens" & inurl:"/portal/portal.mwsl"
locate Siemens S7 PLC (Programmable Logic Controller) web interfaces through publicly accessible search
This Google dork, intext:"siemens" & inurl:"/portal/portal.mwsl", reveals
the web interfaces of Siemens S7 series PLC controllers. These interfaces
provide access to critical control and monitoring functions of industrial
systems. Unauthorized access can lead to significant operational
disruptions and security risks in industrial environments.
Proof Of Concept (PoC):
Steps to Reproduce:
1.Open Google Search.
2.Enter the dork query: intext:"siemens" & inurl:"/portal/portal.mwsl".
3.Review the search results to find URLs of Siemens S7 PLC web interfaces.
4. Click on a search result to access the web interface of the PLC.
5.Attempt to log in using default or commonly known credentials (if login
is required).
β β β Uππ»βΊπ«Δπ¬πβ β β β
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
π‘οΈ #Tesla's Self-Driving Taxi Might Get a Remote Control Safety Net
https://undercodenews.com/teslas-self-driving-taxi-might-get-a-remote-control-safety-net/
@Undercode_News
https://undercodenews.com/teslas-self-driving-taxi-might-get-a-remote-control-safety-net/
@Undercode_News
UNDERCODE NEWS
Tesla's Self-Driving Taxi Might Get a Remote Control Safety Net - 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)
π¨ Patch Your WPForms Now: Millions of Sites Vulnerable to Payment Fraud (#CVE-2024-11205)
https://undercodenews.com/patch-your-wpforms-now-millions-of-sites-vulnerable-to-payment-fraud-cve-2024-11205/
@Undercode_News
https://undercodenews.com/patch-your-wpforms-now-millions-of-sites-vulnerable-to-payment-fraud-cve-2024-11205/
@Undercode_News
UNDERCODE NEWS
Patch Your WPForms Now: Millions of Sites Vulnerable to Payment Fraud (CVE-2024-11205) - 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 TESTING
β β β Uππ»βΊπ«Δπ¬πβ β β β
π Support & Share: t.me/undercodecommunity
This is the hub for developers and tech enthusiasts:
π» Topics We Cover:
π CVE News & Databases
π° Hacker & Tech News
π‘ Cybersecurity, Hacking, and Secret Methods
π Our Mission:
Share your knowledge, collaborate, and grow together in a community designed for innovation and learning.
π Join now: Let's build the future together!
@UndercodeCommunity
β β β Uππ»βΊπ«Δπ¬πβ β β β
π Support & Share: t.me/undercodecommunity
This is the hub for developers and tech enthusiasts:
π» Topics We Cover:
π CVE News & Databases
π° Hacker & Tech News
π‘ Cybersecurity, Hacking, and Secret Methods
π Our Mission:
Share your knowledge, collaborate, and grow together in a community designed for innovation and learning.
π Join now: Let's build the future together!
@UndercodeCommunity
β β β Uππ»βΊπ«Δπ¬πβ β β β
Telegram
UNDERCODE COMMUNITY
π¦ Undercode Cyber World!
@UndercodeCommunity
FREE
- Hackers Post Monitor:
Latest Bug bounty Methods, Tools Updates, AI, Courses! @Undercode_Testing
- Cyber & Tech NEWS:
@Undercode_News
- CVE: @Daily_CVE
β¨Official Web & Services:
β Undercode.help
@UndercodeCommunity
FREE
- Hackers Post Monitor:
Latest Bug bounty Methods, Tools Updates, AI, Courses! @Undercode_Testing
- Cyber & Tech NEWS:
@Undercode_News
- CVE: @Daily_CVE
β¨Official Web & Services:
β Undercode.help
Forwarded from UNDERCODE NEWS (Copyright & Fact Checker)
β οΈ #Alphabet's CapitalG Invests in Insider Risk Firm Dtex Systems
https://undercodenews.com/alphabets-capitalg-invests-in-insider-risk-firm-dtex-systems/
@Undercode_News
https://undercodenews.com/alphabets-capitalg-invests-in-insider-risk-firm-dtex-systems/
@Undercode_News
UNDERCODE NEWS
Alphabet's CapitalG Invests in Insider Risk Firm Dtex Systems - 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)
π‘οΈ Fortifying the Telecom Fortress: Wyden's Proposal to Bolster Cybersecurity
https://undercodenews.com/fortifying-the-telecom-fortress-wydens-proposal-to-bolster-cybersecurity/
@Undercode_News
https://undercodenews.com/fortifying-the-telecom-fortress-wydens-proposal-to-bolster-cybersecurity/
@Undercode_News
UNDERCODE NEWS
Fortifying the Telecom Fortress: Wyden's Proposal to Bolster Cybersecurity - 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β¦