LinuxQuestions.org
Review your favorite Linux distribution.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Non-*NIX Forums > General
User Name
Password
General This forum is for non-technical general discussion which can include both Linux and non-Linux topics. Have fun!

Notices


Reply
  Search this Thread
Old 11-20-2022, 07:54 AM   #1
jr_bob_dobbs
Member
 
Registered: Mar 2009
Distribution: Bedrock, Devuan, Slackware, Linux From Scratch, Void
Posts: 651
Blog Entries: 135

Rep: Reputation: 188Reputation: 188
Question Downforeveryone problem, anyone else getting?


I was checking to see if a web site was really down or if it were just some oddness on my end. Ages ago I found a web (downforeveryoneorjustme.com) site that checks if another web site is on. So today I used it, or tried to... and the text entry field, where one enters the URL to check, wasn't there. There is a line, but it's just a graphic not a clickable field. Neither the "is", space, line nor "down for everyome" responds to clicks.

picture: click

Is anyone else getting this?

Thank you.

Last edited by jr_bob_dobbs; 11-20-2022 at 07:56 AM.
 
Old 11-20-2022, 08:00 AM   #2
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,308
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
I see it too. It's an indication that the page is poisoned with gratuitous javascript. There are a lot of alternative sites which provide a similar service but they too seem poisoned.

There's no legitimate reason for them to require javascript, their whole interface is just an HTML form which sends a single field off to their server(s) for checking. So it is likely that they're now up to some mischief in your web browser.
 
Old 11-20-2022, 08:05 AM   #3
boughtonp
Senior Member
 
Registered: Feb 2007
Location: UK
Distribution: Debian
Posts: 3,599

Rep: Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546Reputation: 2546

viewdns.info has a bunch of tools, including "Is My Site Down", which doesn't require JavaScript.

https://viewdns.info/ismysitedown/

(It does include scripts fom Google, Facebook and Twitter, but works with them blocked.)

 
Old 11-20-2022, 09:29 AM   #4
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
You could check it yourself, without relying on a website.

Code:
agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0"

curl -A "$agent" -Is https://www.linuxquestions.org/robots.txt | head -n1
HTTP/2 200

curl -A "$agent" -Is https://www.shellhacks.com | head -n1
HTTP/2 200

curl -A "$agent" -Is https://www.linuxquestions.org | head -n1
HTTP/2 403
 
Old 11-20-2022, 09:32 AM   #5
Turbocapitalist
LQ Guru
 
Registered: Apr 2005
Distribution: Linux Mint, Devuan, OpenBSD
Posts: 7,308
Blog Entries: 3

Rep: Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721Reputation: 3721
Quote:
Originally Posted by teckk View Post
You could check it yourself, without relying on a website.
The advantage of that kind of a web site is that you are checking from another network. However, if you have shell accounts on remote servers, the curl or wget trick would be useful since they would be on another network and, perhaps, in another country or on another continent.
 
Old 11-20-2022, 10:06 AM   #6
teckk
LQ Guru
 
Registered: Oct 2004
Distribution: Arch
Posts: 5,137
Blog Entries: 6

Rep: Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826Reputation: 1826
Oh ok.

Code:
agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:106.0) Gecko/20100101 Firefox/106.0"

#US
curl -A "$agent" -x 20.106.201.217:5003 -Is https://www.linuxquestions.org/robots.txt
HTTP/1.1 200 OK
content-length: 0

#Poland
curl -A "$agent" -x 185.204.216.70:3128 -Is https://www.linuxquestions.org/robots.txt
HTTP/1.1 200 OK
content-length: 0

#India
curl -A "$agent" -x 134.238.252.143:8080 -Is https://www.linuxquestions.org/robots.txt
HTTP/1.1 200 OK

#France
curl -A "$agent" -x 54.36.239.180:5000 -Is https://www.linuxquestions.org/robots.txt
HTTP/1.1 400 Bad Request

#Japan
curl -A "$agent" -x 172.104.80.181:80 -Is https://www.linuxquestions.org/robots.txt
HTTP/1.1 400 Bad Request
https://www.proxynova.com/proxy-server-list/

I suppose that one would need to have some assurance of a good proxy.
 
Old 11-20-2022, 05:05 PM   #7
jr_bob_dobbs
Member
 
Registered: Mar 2009
Distribution: Bedrock, Devuan, Slackware, Linux From Scratch, Void
Posts: 651

Original Poster
Blog Entries: 135

Rep: Reputation: 188Reputation: 188
So many replies, and so many things I did not know about, in such a short time! Thank you all very much.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
Anyone else getting tired of Linux embedded devices not being compatible with... darkstarbyte Linux - General 3 12-04-2010 09:48 PM
Anyone else having Ubuntu 8.04 upgrade errors, anyone? greatquizzard Ubuntu 27 05-06-2008 04:35 AM
Anyone else having trouble getting to slashdot? Trasa General 3 12-19-2007 01:03 AM
Is anyone else getting a problem with Google tonight? Robhogg General 2 03-07-2006 04:44 PM
anyone else stopped getting emails notices from LQ other then me??? sirpelidor LQ Suggestions & Feedback 4 01-19-2005 05:12 PM

LinuxQuestions.org > Forums > Non-*NIX Forums > General

All times are GMT -5. The time now is 12:32 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration