The Top 5 Cyber Security Threats - 2025 Citations

External Reports & Articles:
BitDefender Reports & Data:
 – 2024 Consumer Cybersecurity Assessment Report
 – 2024 Business Cybersecurity Assessment Report
  • Bitdefender Business: https://www.bitdefender.com/business.html
 – Bitdefender internal data & public reports
 – Defeat Cybercrime (Sponsor): https://www.bitdefender.com/en-us/company/defeat-cybercrime?adobe_mc=MCMID%3D58813079024193824950182583613162839176%7CMCORGID%3D0E920C0F53DA9E9B0A490D45%2540AdobeOrg%7CTS%3D1739390682

Data & Statistics Sources:
 – ITRC 2023 Annual Data Breach Report: https://www.idtheftcenter.org/wp-content/uploads/2024/01/ITRC_2023-Annual-Data-Breach-Report.pdf
 – Verizon 2024 DBIR Insights: https://www.verizon.com/business/resources/articles/s/what-the-2024-dbir-tells-us-about-enterprise-cybersecurity-strategy/
 – FBI Internet Crime Complaint Center (IC3): https://www.ic3.gov/
 – FBI: https://www.fbi.gov/
 – Federal Trade Commission (FTC): https://www.ftc.gov/
 – Anti-Phishing Working Group (APWG): https://apwg.org/
 – LastPass State of Passwords (data reference)
 – Verizon DBIR (additional reference)

Read more

Deep Research on Preterism

!Image Description

This is some deep research on a hot topic that is always being debated at my small group.

I’ll conduct a deep research study comparing Preterism and Futurism/Dispensationalism, focusing on biblical evidence, historical development, theological arguments, and scholarly perspectives. I’ll analyze key scriptural passages (e.g., Revelation, Daniel, Matthew 24) and how they are interpreted by each view. Additionally, I’ll explore how historical events are used to support or challenge these perspectives and highlight relevant theological debates. I’ll get back to you with a comprehensive analysis soon.

Read more

Open Source Deep Research

Clone the project

git clone https://github.com/dzhng/deep-research.git
cd deep-research

.env.local file

FIRECRAWL_KEY="your_firecrawl_key"
OPENAI_KEY="your_openai_key"
# Optionally, for self-hosted Firecrawl:
# FIRECRAWL_BASE_URL="http://localhost:3002"

Dockerfile

FROM node:18-alpine

WORKDIR /app

COPY package*.json ./
RUN npm install

COPY . .

CMD ["npm", "start"]

Docker Compose File

version: '3.8'
services:
  deep-research:
    build: .
    env_file:
      - .env.local
    tty: true
    stdin_open: true

Make a change to the package.json file

Change this:

"start": "tsx --env-file=.env.local src/run.ts"

to this:

"start": "tsx src/run.ts"

Read more

Is DeepSeek Safe To Run (locally)

Monitor Network Connections

Windows

while($true) {
    Get-Process ollama | ForEach-Object { 
        $id = $_.Id
        Write-Host "`nConnections for Ollama process $id" -ForegroundColor Green
        Get-NetTCPConnection | Where-Object OwningProcess -eq $id | Select-Object LocalAddress, LocalPort, RemoteAddress, RemotePort, State 
    }
    Start-Sleep -Seconds 2
    Clear-Host
}

Mac

# One-time check
pid=$(pgrep ollama)
lsof -i -P -n | grep ollama

# For continuous monitoring
while true; do
    echo "$(date): Ollama Connections"
    lsof -i -P -n | grep ollama
    sleep 2
    clear
done

# Alternative using netstat
netstat -p tcp -v | grep ollama

Linux

# One-time check
pid=$(pgrep ollama)
lsof -i -P -n | grep ollama

# Or for continuous monitoring
watch -n 2 "lsof -i -P -n | grep ollama"

# Alternative using netstat
netstat -np | grep ollama

# Or using ss (more modern)
ss -np | grep ollama

Running Ollama Inside Docker

docker run -d \
--gpus all \
-v ollama:/root/.ollama \
-p 11434:11434 \
--security-opt=no-new-privileges \
--cap-drop=ALL \
--cap-add=SYS_NICE \
--memory=8g \
--memory-swap=8g \
--cpus=4 \
--read-only \
--name ollama \
ollama/ollama
Read more

Top InfoTech Creators to Follow in 2025

This is a list of the YouTube creators I love to follow. This list contains creators that I think are genuine, creative and really fun to watch. And most importantly, they provide value. So, here are the Top 10….11.

John Hammond

• Content: Cybersecurity…also now destroying scammers…I think

• Insanely knowledgeable. Also, the nicest guy you’ll ever meet. He is authentically John Hammond on and off camera. He really does care and has a ton of integrity.

Read more