-
Notifications
You must be signed in to change notification settings - Fork 73
/
Copy pathlanding_page.pl
45 lines (28 loc) · 1.34 KB
/
landing_page.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/perl
my $message = <<'END_MESSAGE';
############# IMPORTANT SAFETY ANNOUNCEMENT #################
This is the NEW landing page for apache2buddy.pl
Please don't curl and perl the domain any more.
For security reasons, the following
execution method will bring you to this page:
# curl -sL apache2buddy.pl | perl
Instead please run / bookmark the following:
# curl -sL https://raw.githubusercontent.com/richardforth/apache2buddy/master/apache2buddy.pl | perl
This method is much safer.
For more information on this change refer to the README.md:
https://github.com/richardforth/apache2buddy/blob/master/README.md
Pay specific attention to the "Security Concerns" and
"Typo squatting / camping is a thing and why you should be concerned"
sections.
If you still don't understand the dangers of typo camping / typo squatting,
remember, you just ran THIS script, on your server as root. Thankfully I am
a good guy.
The domain will slowly be phased out and will eventually be released.
This landing page marks the start of that process.
I expect the domain will be up (and this page) and serving for at least 2
years to catch all end-users to give ample chance to update their
notes and stuff before the domain finally goes away.
############### END IMPORTANT SAFTEY ANNOUNCEMENT ##############
END_MESSAGE
print $message;
print "Done.\n";