Searching for "adsense" on google gives www.all-in-one-business.com/adsense
as the first organic rank on SERP......Clicking on the link leads to the google adsense page.

Whats going on...anyone????

Dani AI

Generated

Good catch, — odd top results are worth a quick, methodical check. is right that this kind of thing turns up from time to time. Below is a concise, practical checklist to help confirm whether a result is a transient indexing oddity, a server/site compromise, or something in between, and what to do next.

First, quick verifications (from any machine)

  • Try the query from a different network or an incognito/private window to rule out local cache or DNS issues.
  • View Google’s cached copy and the text-only snippet to see what Google indexed.
  • Fetch raw headers and the served HTML to spot server-side tricks:
curl -I http://suspect.example.com/path
curl -L -s http://suspect.example.com/path | head -n 40

What to look for: differing content between the raw HTML and the cached/snippet view, unexpected status codes or Location headers, or HTML that’s clearly unrelated to the indexed snippet.

If you manage the affected domain

  • Check webserver access logs for unusual 3xx/4xx activity and unfamiliar referrers or user agents.
  • Inspect config files (.htaccess, web.config) and common CMS/plugin files for injected redirects, eval/base64 payloads, or recently modified files.
  • Search your codebase for common injection patterns:
grep -R --line-number -E "eval\(|base64_decode|gzinflate" /var/www
  • Verify DNS and registrar records for unauthorized changes, rotate admin/FTP/passwords, update/patch CMS and plugins, and ask your host to scan for malware.

If you’re only a searcher

  • Don’t click suspicious sites; capture screenshots and cached URLs and report the result as spam/phishing through the search feedback options.

Final note: many of these occurrences are temporary (indexing artifacts or exploited sites that get fixed), but keeping logs, screenshots, and following the cleanup/reporting steps above will speed resolution and protect users.

Recommended Answers

All 2 Replies

Apparantly there was a 302 redirect hijack issue. Theres lot more about this "adsense" hijack on searchenginewatch.com

So its a cat and mouse game. Who thinks up a new way to get ahead.

So much for algorithms :-)

Thanks...anyways, and btw nice website.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.