GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   How to manage a vps (https://gfy.com/showthread.php?t=1270315)

Barry-xlovecam 12-07-2017 12:28 AM

as root

Code:

$ ./ufw_deny_all.sh
Code:

#!/bin/bash
#-vx
file=server-ban-ufw-list.csv
for line in $(cat $file)  ; do

ufw deny from $line to any
sleep 1

done < ${file}

This script will stop after 30 entries sonetimes ^s ^q will restart it
you can try
Code:

$ ./ufw_deny_all.sh || true
that may help
bash error checking is
Code:

#!/bin/bash -vx
There a lot of setup tutorials on UFW

I added allow to ssh (22) only my static ips
I DID NOT allow ftp (I only use sftp and scp on 22)
I allow ftp when necessary I have a worpress on one server that needs it to update, After up dating I block ftp
You need to allow http and https

--------

Code:

barry@paragon-DS-7:~$ host 51.15.40.0
0.40.15.51.in-addr.arpa domain name pointer 0-40-15-51.rev.cloud.scaleway.com.
barry@paragon-DS-7:~$ host 37.9.114.0
Host 0.114.9.37.in-addr.arpa. not found: 3(NXDOMAIN)
barry@paragon-DS-7:~$ whois 37.9.114.0

Quote:


inetnum: 37.9.64.0 - 37.9.127.255
netname: RU-YANDEX-20111214

country: RU
org: ORG-YA1-RIPE
You want to block the *right* ips or CIDR /24 /20 etc.
I only block single IPs for abusive ISP users and not servers -- I will cut off whole datacenters on some servers -- without looking back. However I know i may lose some VPN users that are legit buyer (collateral damage).

On mail servers you need to only block some single IPs of spam servers (etc).

you need to allow the ports your mail server needs (<incoming)

Code:

#!/bin/bash
#-vx
file=server-ban-ufw-list.csv
for line in $(cat $file)  ; do

echo host $line
sleep 1

done < ${file}

WHO THE IPs that resolve ARE!
https://pastebin.com/28QEjW6B

Ahrefs and Semrush are spybots -- SEO for simpletons.

What bots look like IRL

https://s18.postimg.org/hlukvehe1/ca...an-hamster.gif
The ones that do not resolve are servers in datacenters probably with no hostname entry.
If you don't want to do business with them -- block them -- that is up to you. Most legit (not all) ISP users (people) IP's resolve to hostnames.

$resolveip [ip] [hostname]

$man resolveip

porn-update 12-07-2017 02:54 PM

This s**t doesn't work...:mad:

Yesterday I set all the rules in Iptables, today the bastard who clones My sites is back, its IP enters and exits without problems in my server, although in my iptables there is this rule that blocks its IP.
Code:

iptables -A INPUT -s 93.105.187.11 -j DROP
It's not working, just as it didn't work in UFW doesn't even work iptables.

I reset everything again and entered a single rule in iptables and now the IP of the bastard is properly locked...

I believe that in Digitalocean there is a limit on the number of rules that can be entered in UFW or iptables, those beyond the limit are ignored.

Even Nixstat, who needs HTTPS, after adding all the rules did not work anymore, removing the rules back to work. Perhaps the rules that allow HTTPS traffic is beyond the limit.

Now my firewall only blocks the IP of the bastard., but I want to be able to block at least the traffic from China

In Digitalocean There is something called "Cloud Firewall" https://www.digitalocean.com/communi...loud-firewalls, with this inscription: Limits: Total incoming and outgoing rules for Firewall: 50.

The Digitalocean firewall limit may also be applied to UFW and Iptables?

porn-update 12-11-2017 03:44 PM

So, after countless tutorial guides, iptable templates, etc etc etc etc etc etc etc etc and so on UFW and iptables etc., nothing ever works... as soon as the rules increase they begin to be ignored.

Now my rules.v4 is this: http://porn-update.com/temp/rules.v4, as simple as possible, only blocks the IP of the bastard and Baidu.

The server works well, the sites are online, everything looks wonderful, until I go to see the visits...

http://porn-update.com/temp/Schermat...2023-18-22.png

I'm losing about half of my normal visits.

It is true that the cloned sites were closed, and removed from the DMCA results in Google that probably created confusion even in statistics.

And maybe even in Webmaster tools.

http://porn-update.com/temp/Schermat...2023-21-06.png

But perhaps the most important thing is that the clicks that arrive at the pop-unders and the affiliate services have not diminished much :eek7:eek7:eek7

http://porn-update.com/temp/Schermat...2023-23-58.png http://porn-update.com/temp/Schermat...2023-23-49.png

I noticed that most of the visits I lost in the server 14.04 (which contains my sites with more turnout), more or less 50% on 14.04 and about 30% on 16.04.

At this point the doubt comes, something is wrong with my iptables? Is it blocking something that shouldn't?

How can I understand/verify if the firewalls are doing more than necessary?

(I wouldn't even know exactly what I should look over HTTP, https, and SSH...)


Summary:
Applied new simple Rules. V4 in Iptables.
Closing clone sites and removing results (DMCA).
Loss about 50% visits (especially in 14.04).
Click to pop-unders and affiliations, almost constant.


The Doubts:
What the f*** is going on?
How can I check if the firewalls in my server are working properly or are blocking too much?

sarettah 12-11-2017 04:03 PM

Did you keep track anywhere of referrals? Meaning do you know where the traffic was coming from before so that you can compare it to where it is coming from now?

That might tell you a lot.

You say you pretty much killed the clones. Is it possible that some of the clones included links to you that you have now killed?

Just some ideas to look at that have nothing to do with whether your set up is right or now.

.

porn-update 12-11-2017 07:22 PM

It is difficult to understand who are the referal, because that moron who copied my sites has left my code anlytics, my code Yandex metrica, my Google Webmaster Tools verification Code, my advertising codes etc.

Also one of the cloned sites is this: Adult Hashtag, which sends visits to all my sites.

Of all this mess, what remains are just a lot of doubts...:(

Barry-xlovecam 12-12-2017 05:47 PM

Enable logging for iptables

https://tecadmin.net/enable-logging-...les-on-linux/#

porn-update 12-13-2017 05:17 PM

I turned on the iptables logs (I didn't even know existed)

But how do I read them?

Code:

Dec 14 00:00:45 ubuntu-1gb-nyc3-01 kernel: [519730.097997] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=163.172.12.194 DST=104.236.230.48 LEN=437 TOS=0x00 PREC=0x00 TTL=56 ID=37739 DF PROTO=UDP SPT=5084 DPT=5060 LEN=417
Dec 14 00:00:56 ubuntu-1gb-nyc3-01 kernel: [519741.342892] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=40.117.185.56 DST=104.236.230.48 LEN=60 TOS=0x00 PREC=0x00 TTL=51 ID=19982 DF PROTO=TCP SPT=39018 DPT=8118 WINDOW=29200 RES=0x00 SYN URGP=0
Dec 14 00:01:34 ubuntu-1gb-nyc3-01 kernel: [519779.127039] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=119.57.159.10 DST=104.236.230.48 LEN=60 TOS=0x00 PREC=0x00 TTL=43 ID=24611 DF PROTO=TCP SPT=2725 DPT=8118 WINDOW=14600 RES=0x00 SYN URGP=0
Dec 14 00:02:13 ubuntu-1gb-nyc3-01 kernel: [519818.274003] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=62.210.140.28 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=120 ID=5586 DF PROTO=TCP SPT=59827 DPT=8118 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:02:14 ubuntu-1gb-nyc3-01 kernel: [519818.881408] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=62.210.140.28 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=120 ID=5627 DF PROTO=TCP SPT=59827 DPT=8118 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:02:14 ubuntu-1gb-nyc3-01 kernel: [519819.489873] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=62.210.140.28 DST=104.236.230.48 LEN=48 TOS=0x00 PREC=0x00 TTL=120 ID=5682 DF PROTO=TCP SPT=59827 DPT=8118 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:02:31 ubuntu-1gb-nyc3-01 kernel: [519836.242574] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=201.243.135.218 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=118 ID=27360 DF PROTO=TCP SPT=56286 DPT=445 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:02:32 ubuntu-1gb-nyc3-01 kernel: [519837.072353] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=201.243.135.218 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=118 ID=27373 DF PROTO=TCP SPT=56286 DPT=445 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:02:36 ubuntu-1gb-nyc3-01 kernel: [519841.555419] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=123.151.148.53 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=45 ID=42706 DF PROTO=TCP SPT=59911 DPT=8118 WINDOW=13600 RES=0x00 SYN URGP=0
Dec 14 00:03:00 ubuntu-1gb-nyc3-01 kernel: [519865.240407] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=185.53.154.126 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=112 ID=18507 DF PROTO=TCP SPT=63111 DPT=445 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:03:01 ubuntu-1gb-nyc3-01 kernel: [519865.861936] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=185.53.154.126 DST=104.236.230.48 LEN=52 TOS=0x00 PREC=0x00 TTL=112 ID=18527 DF PROTO=TCP SPT=63111 DPT=445 WINDOW=8192 RES=0x00 SYN URGP=0
Dec 14 00:03:10 ubuntu-1gb-nyc3-01 kernel: [519875.416271] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=77.72.82.158 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=246 ID=28755 PROTO=TCP SPT=55887 DPT=5411 WINDOW=1024 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389328] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=89 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389491] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=1081 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389515] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8282 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389747] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=1082 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389766] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=1818 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389784] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=1801 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389817] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=7978 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389935] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8082 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.389955] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8189 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.390300] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=91 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.390321] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8181 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.393088] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8081 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.393916] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8080 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.394452] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=88 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.394740] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=8090 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.395412] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=104 ID=256 PROTO=TCP SPT=6000 DPT=9098 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.398840] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=106 ID=256 PROTO=TCP SPT=6000 DPT=8008 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.399290] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=106 ID=256 PROTO=TCP SPT=6000 DPT=9191 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.399640] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:08:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=106 ID=256 PROTO=TCP SPT=6000 DPT=9898 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:17 ubuntu-1gb-nyc3-01 kernel: [519882.402208] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=219.133.31.126 DST=104.236.230.48 LEN=40 TOS=0x00 PREC=0x00 TTL=106 ID=256 PROTO=TCP SPT=6000 DPT=8989 WINDOW=16384 RES=0x00 SYN URGP=0
Dec 14 00:03:43 ubuntu-1gb-nyc3-01 kernel: [519908.182049] IN=eth0 OUT= MAC=36:1a:36:97:ff:ba:84:b5:9c:f9:18:30:08:00 SRC=114.239.184.31 DST=104.236.230.48 LEN=48 TOS=0x00 PREC=0x00 TTL=112 ID=13078 DF PROTO=TCP SPT=2324 DPT=8118 WINDOW=64240 RES=0x00 SYN URGP=0

In the logs I see the requests that are blocked?

According to "my theory" I should only block the IP of Baidu and the bastard who clones me sites, but I did the whois of some IP in the logs and they seem to arrive from England, Australia, Ireland, Japan etc.

I did not understand how to read the logs or my iptables is blocking half the world?


Something else, Ipset.
Trying to figure out how the iptables logs work I saw ipset that is often used along with iptables, but almost all the tutorials I find are for Ubuntu 10.04 or 12.04, is it old and outdated or still works the same way?

seomanager 12-13-2017 11:24 PM

better buy managed vps

porn-update 12-14-2017 09:27 PM

I've had it for years, never have been able to understand what was going on, the only solution was to buy a more expensive service...

porn-update 12-21-2017 04:30 PM

So...
In recent days the situation has not improved (indeed), so I thought of another drastic change, move everything on Linode or Vultr.

I asked for advice to those who have already used them here https://gfy.com/webmaster-q-and-fucki...tr-linode.html, to understand "where to go".

Digitalocean has something strange, cronjob in PHP that do not work, firewall rules and IP tables that are ignored, and many other strange behaviors that I have seen in recent months.

I chose Digitalocean because I had already tried it and I had that feeling
To know him a little and for the guides that make everything seem simple, but in practice I do not think changes much in the procedure to install and configure a LAMP server and also Linode and Vultr offer more resources at the same price.

Even this big loss of visits perhaps is due to a misconfiguration or interpretation of firewalls or iptables, but I can not understand what there is that does not work, maybe it's just something Digitalocean, with a new server, or visits come back to grow, or anyway I know I have to look somewhere else.

So I was thinking about a complete shift.

Are there any problems with Linode or vultr that I should know before I start creating a new server?

Ubuntu 17? Can you use it for servers?

porn-update 01-08-2018 04:25 PM

So...
I moved one of my servers in vultr and finally UFW seems to work properly, I'm blocking a few hundred IP of cloners, bad-bots, Chinese IP etc. and for now no problem..


In the next few days I would also like to move the sites of my second server.

Since I have to move the second server I came a new idea (just to complicate life more and more)

And if I try Nginx?

I could add all the other sites to the Apache server I've already created, but since you have to do the job maybe it's worth a try.

Of Nginx I do not know anything, except that they do not work the htaccess and that url_rewriter should be moved to the servers blocks (I think are the virtual hosts), deflate there should be, mod_headers and mod_expires and everything else I have no idea.

Url_rewriter I hate it in Apache, and it hate even more in Nginx, but my url_rewriter is simple and I saw that there are converters from Apache to Nginx (but they are deprecated)

For everything else my sites are basically PHP and MySQL, it should work pretty much everything.

But it remains a question, is it worth using nginx instead of Apache?
  • My sites generate all content dynamically via MySQL-PHP, there are no real HTML pages.
  • The url_rewriter transform everything into HTML or folder-like structure, but there is nothing physical on the server.
  • My MySQL databases can also contain about a million lines.
  • My sites currently are all under 5-10000 visits a day.
  • Almost all images are hosted on other servers

Does it make sense to use Nginx instead of Apache?


All times are GMT -7. The time now is 11:39 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc