Listen to this Post

In a world where misinformation spreads faster than truth, tools to distinguish reality from fiction are essential. Vera, a French AI-powered fact-checking tool, aims to combat disinformation where it thrives most—on social media.
How Vera Works
- Availability: Free on WhatsApp (mobile-only) and Instagram.
- Functionality: Users can ask questions via text or voice.
- Output: The AI provides well-documented answers from credible sources and professional fact-checking.
Why Vera Matters
- Fake news spreads 6x faster than true information.
- Social media algorithms prioritize emotionally charged content, amplifying misinformation.
- Vera acts as a public service, fostering informed community discussions.
Read more: Journal du Geek
You Should Know: How to Verify Information Like Vera
1. Manual Fact-Checking Tools
- Google Fact Check Explorer:
curl "https://factchecktools.googleapis.com/v1alpha1/claims:search?query=COVID-19&key=YOUR_API_KEY"
- Whois for Domain Verification:
whois example.com
2. Detecting Deepfakes
- Use Forensically (browser-based):
git clone https://github.com/0xAbdullah/Forensically cd Forensically && python3 -m http.server 8000
3. Analyzing Social Media Metadata
- ExifTool (for image verification):
exiftool suspicious_image.jpg
4. Automating Fact-Checks with Python
import requests
from bs4 import BeautifulSoup
def check_claim(claim):
url = f"https://toolbox.google.com/factcheck/explorer/search/{claim}"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
results = soup.find_all("div", class_="claim")
return results[bash].text if results else "No fact-check found."
print(check_claim("COVID-19 is a hoax"))
5. Linux CLI Tools for Disinformation Analysis
- Twitter Scraping with Twint:
twint -s "Vera AI" --since 2025-05-01 -o vera_tweets.csv
- Sentiment Analysis with NLP:
pip install textblob python -m textblob.download_corpora
What Undercode Say
Misinformation is a growing cyber threat. While AI like Vera helps, cybersecurity professionals must adopt OSINT tools, metadata analysis, and automated fact-checking scripts to combat fake news.
Expected Output:
- A fact-checked report from Vera.
- EXIF data revealing image manipulation.
- Social media sentiment analysis detecting disinformation campaigns.
Prediction
AI fact-checking tools will soon integrate with browsers & firewalls to block fake news in real-time, reducing disinformation’s viral spread.
(End of )
References:
Reported By: Piveteau Pierre – Hackers Feeds
Extra Hub: Undercode MoN
Basic Verification: Pass ✅


