vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Miscellaneous Hacks - Check Proxy RBL on New User Registration. (https://vborg.vbsupport.ru/showthread.php?t=131852)

DaNIEL MeNTED 04-09-2007 01:17 PM

Hey guys... sorry I haven't replied in a while. Moved jobs + a new baby and I've been insanely busy...

Before the month is over I will try and code a new version that addresses everyone's requests...

bitdefuser 04-09-2007 01:19 PM

Quote:

Originally Posted by DaNIEL MeNTED (Post 1223277)
Hey guys... sorry I haven't replied in a while. Moved jobs + a new baby and I've been insanely busy...

Before the month is over I will try and code a new version that addresses everyone's requests...

Welcome back! :)
If your not busy any more, please try to add the following:

Suggestions:
Allowing us to enter a ban reason in the settings of the AdminCP.
Option to disable site viewing. (Simply blocks the user from the site.)

Damien001 04-11-2007 03:39 PM

Quote:

Originally Posted by DaNIEL MeNTED (Post 1223277)
Hey guys... sorry I haven't replied in a while. Moved jobs + a new baby and I've been insanely busy...

Before the month is over I will try and code a new version that addresses everyone's requests...

congrats on the new job and baby

cool to see this imrpoved a bit more, it nearly perfect as it is. Just cut down the work if it ran the check after all the other checks are passed. Also put less strain on the database


since incorpating nospam and this addon we not had any spam

DaNIEL MeNTED 04-11-2007 04:36 PM

can anyone running nospam check the plugin and see where it hooks and what # its running at?

Damien001 04-11-2007 09:04 PM

<hookname>register_addmember_process</hookname>

it use multiple hooks as it protect multiple areas.

on area it also protect unless the person has signed in in the contact us page.

Any chance this program protecting that as well.

Damien

any many thanks

DaNIEL MeNTED 04-12-2007 12:40 AM

Quote:

Originally Posted by Damien001 (Post 1225339)
<hookname>register_addmember_process</hookname>

it use multiple hooks as it protect multiple areas.

on area it also protect unless the person has signed in in the contact us page.

Any chance this program protecting that as well.

Damien

any many thanks

There should also be an "Execution Order" # on that page...

DaNIEL MeNTED 04-12-2007 02:15 AM

Well, what started as a 5 line hack has - IMHO - reached the point where I think the feature set is quite significant.

I have fixed -
. reporting errors.
. the post IP = blocked IP issue (it is now 1.2.3.4)

I have made the following feature changes -
. added ability to specify error message someone sees when blocked.
. added ability to specify the group to add banned accounts to.
. added ability to specify a reason for being banned.
. added ability to specify a custom title for banned users.
. added the ability to place users in COPPA Users Awaiting Moderation queue - or another moderation queue.
- updated reporting to reflect new features.
. changed adminCP options order / titles / etc. to clean things up.
. changed the RBLs - # used, order, etc.

Basically, as I am testing it, out of the box the configuration will be:

Allow users to register, do not ban them, but place them in the moderation group.

If you enable banning it will automatically skip the moderation part.

If you choose to block registration it will never get far enough to mod/ban because the account isn't created.

I've finished those dev changes and am testing - I still need someone to tell me the hook order for those other hacks so I can have the checker fire AFTER they do... otherwise I should be uploading a new file within the week.

Damien001 04-12-2007 09:20 AM

<plugin active="1" executionorder="1">
<title>Check if NoSpam! question has been answered correctly</title>
<hookname>register_addmember_process</hookname>

the plug in also covers searchs
new post by un reg users
searches by un reg users
contact us by un reg users

if you need any of the hooks for those or other hooks in nospam let me know and i will do my best

DaNIEL MeNTED 04-12-2007 11:02 AM

Quote:

Originally Posted by Damien001 (Post 1220203)
this mod would be 100 times more effective if it ran the proxy check after confirming that the person details are correct.

i.e. that the image verification word is valid, that if the person using NoSpam that the anwser is valid and that the email address has not been banned

damien


Just to clear this up - it does.

The hook of the plugin (there's now actually 2...) so the hook of the RBL checking plugin is at register_addmember_process... This is to allow blocking of registration. If you don't have blocking turned on then the first plugin still does the check and generates notifications...

The 2nd plugin needs to fire after the new member has been added to the DB so it runs at register_addmember_complete. Depending on the options selected it either bans or flags the new member for moderation.

bitdefuser 04-12-2007 02:13 PM

Thanks for the update!
Edit: Is there a way so that it will completely block them out? Even from the home page? So, that they have no access whatsoever? (Like, as soon as the user comes on the website, it will check the IP) Or is that just too many queries?

The Finman 04-12-2007 03:20 PM

Quote:

Originally Posted by bitdefuser (Post 1225944)
Thanks for the update!
Edit: Is there a way so that it will completely block them out? Even from the home page? So, that they have no access whatsoever? (Like, as soon as the user comes on the website, it will check the IP) Or is that just too many queries?

You really need to do that at the server itself.

If you are running Apache, I recommend using an .htaccess file to bounce them anywhere on the internet you want to, as well as any troll boards or websites linking to you (you can combine both features into one .htaccess file).

Blocking users by IP at the server using .htaccess

Blocking users/ sites by referrer using .htaccess

Although, technically any time a server has to check and verify a query, it is taking additional time and the more queries it has to check & verify, it does increase the time involved. However, on any given day I have about 30 banned IPs & sites in our .htaccess files on various VPS accounts, but I can't notice any appreciable time difference. However, the servers these VPS accounts are located on are very fast...so I suspect, any noticeable time lag will vary on how big your .htaccess list is, and how fast your server itself is.

bitdefuser 04-12-2007 03:34 PM

Quote:

Originally Posted by The Finman (Post 1225975)
You really need to do that at the server itself.

If you are running Apache, I recommend using an .htaccess file to bounce them anywhere on the internet you want to, as well as any troll boards or websites linking to you (you can combine both features into one .htaccess file).

Blocking users by IP at the server using .htaccess

Blocking users/ sites by referrer using .htaccess

Although, technically any time a server has to check and verify a query, it is taking additional time and the more queries it has to check & verify, it does increase the time involved. However, on any given day I have about 30 banned IPs & sites in our .htaccess files on various VPS accounts, but I can't notice any appreciable time difference. However, the servers these VPS accounts are located on are very fast...so I suspect, any noticeable time lag will vary on how big your .htaccess list is, and how fast your server itself is.

Oh, thank you very much but, I'll stick with the Vbulletin IP banning system for now. I have bookmarked those links though in case if I need them in the future. :) Thanks!

|Jordan| 04-12-2007 06:11 PM

Here's a list of proxy ip's i took from proxy4free.com (the first site thats listed when you type "free proxy list"). Keep in mind the list always changes, but here it is anyways:

Code:

216.75.2.22
63.118.235.195
218.94.80.6
66.98.238.8
66.150.105.20
61.166.68.74
218.16.245.54
80.80.12.125
222.175.129.85
203.116.61.164
218.111.110.57
165.228.129.10
84.19.177.62
219.255.135.8
71.237.166.6
198.151.39.94
64.34.113.120
203.113.130.59
219.207.176.130
216.133.248.226
200.174.68.28
195.175.37.6
200.87.6.19
210.212.95.103
200.253.116.3
210.245.197.217
202.194.194.246
202.58.71.30
201.57.111.132
201.57.66.2
219.93.182.98
72.252.22.186
213.172.62.58
61.135.204.121
165.228.130.10
222.83.228.34
216.133.248.228
86.35.121.75
200.171.232.21
213.5.161.51
202.155.4.114
200.118.112.202
200.171.57.149
203.158.215.2
218.7.48.22
221.13.66.161
200.67.30.248
203.130.150.221
86.124.33.235
210.102.52.15
202.188.111.50
200.31.42.3
201.216.218.73
202.82.116.26
202.108.119.227
200.206.165.40
210.176.2.27
125.244.26.4
212.80.89.130
200.107.11.20
202.157.76.70
201.45.178.130
80.80.12.124
201.0.175.100
209.88.89.183
201.21.68.208
195.175.37.71
203.200.187.170
87.120.162.65
222.124.11.218
195.58.111.152
219.87.129.186
195.175.37.8
201.136.159.129
202.94.214.194
203.187.205.32
195.224.154.232
216.133.248.227
222.39.13.42
202.28.186.3
200.174.85.195
218.248.22.100
165.228.128.11
61.19.23.226
61.8.251.92
202.63.233.8
61.47.19.211
201.38.74.70
80.58.205.61
200.78.117.240
59.87.19.236
222.223.173.76
198.151.39.114
89.167.37.146
203.113.130.49
203.146.102.24
58.216.235.242
195.175.37.70
202.141.117.188
165.228.128.10
199.203.55.3
210.56.29.10
201.28.123.98
218.140.138.174
125.244.26.2
219.96.46.219
211.231.187.4
212.122.243.2
220.56.244.231
211.67.66.171
200.174.68.23
210.187.119.244
200.59.162.83
200.174.68.20
165.228.133.10
220.227.77.186
84.19.176.62
200.174.68.29
61.17.191.13
216.133.248.229
159.148.29.62
210.212.95.100
220.181.39.121
202.175.58.10
84.234.106.186
220.227.171.147
200.21.168.45
62.128.166.194
200.174.68.22
200.174.68.27
200.174.68.25
83.151.14.167
222.89.67.78
86.122.0.40
200.174.85.193
211.74.200.203
125.244.70.130
81.7.87.242
165.228.131.10
208.9.62.65
165.228.131.12
200.238.102.170
125.99.121.201
221.11.92.46
222.235.3.43


bitdefuser 04-12-2007 06:45 PM

Quote:

Originally Posted by |Jordan| (Post 1226098)
Here's a list of proxy ip's i took from proxy4free.com (the first site thats listed when you type "free proxy list"). Keep in mind the list always changes, but here it is anyways:

Here is every IP listed on their site:
Code:

200.174.85.195
200.31.42.3
202.194.194.246
200.174.68.27
64.34.113.120
199.203.55.3
202.175.58.10
210.212.95.103
198.151.39.94
61.17.191.13
210.245.197.217
203.130.150.221
63.118.235.195
210.102.52.15
159.148.29.62
212.80.89.130
61.166.68.74
222.124.11.218
219.207.176.130
125.244.26.4
200.174.68.28
62.128.166.194
222.235.3.43
86.124.33.235
222.89.67.78
203.200.187.170
203.116.61.164
61.47.19.211
198.151.39.114
165.228.130.10
165.228.133.10
218.248.22.100
89.167.37.146
195.175.37.6
203.158.215.2
80.58.205.61
86.122.0.40
201.0.175.100
213.172.62.58
80.80.12.125
203.187.205.32
221.13.66.161
200.107.11.20
125.244.70.130
84.234.106.186
200.238.102.170
200.59.162.83
200.78.117.240
200.206.165.40
203.113.130.59
165.228.128.11
201.28.123.98
81.7.87.242
61.19.23.226
216.133.248.229
83.151.14.167
200.21.168.45
222.223.173.76
66.98.238.8
209.88.89.183
195.175.37.71
195.224.154.232
202.141.117.188
202.94.214.194
211.231.187.4
213.5.161.51
202.28.186.3
201.136.159.129
211.67.66.171
61.135.204.121
211.74.200.203
212.122.243.2
216.133.248.227
200.118.112.202
86.35.121.75
210.176.2.27
200.171.57.149
201.216.218.73
84.19.177.62
222.39.13.42
201.57.66.2
218.140.138.174
218.16.245.54
59.87.19.236
222.175.129.85
222.83.228.34
208.9.62.65
80.80.12.124
66.150.105.20
201.21.68.208
220.227.77.186
200.87.6.19
218.111.110.57
200.174.68.29
221.11.92.46
202.155.4.114
61.8.251.92
87.120.162.65
203.146.102.24
216.75.2.22
200.174.85.193
125.244.26.2
219.87.129.186
202.157.76.70
216.133.248.226
165.228.131.12
201.38.74.70
220.56.244.231
72.252.22.186
202.82.116.26
200.174.68.25
219.255.135.8
210.56.29.10
216.133.248.228
125.99.121.201
200.171.232.21
71.237.166.6
201.57.111.132
195.175.37.8
165.228.129.10
210.212.95.100
202.58.71.30
195.58.111.152
58.216.235.242
219.93.182.98
218.94.80.6
200.253.116.3
200.174.68.22
202.188.111.50
219.96.46.219
201.45.178.130
218.7.48.22
220.227.171.147
200.174.68.20
200.67.30.248
165.228.131.10
84.19.176.62
210.187.119.244
202.108.119.227
220.181.39.121
203.113.130.49
200.174.68.23
195.175.37.70
202.63.233.8
165.228.128.10

Enjoy!

DaNIEL MeNTED 04-12-2007 07:15 PM

Remeber the more IPs you add to the "blacklist" the longer it takes to process a registration... I'm not sure what list length will = a performance degredation.

Damien001 04-12-2007 09:00 PM

The new version is amazing thankyou.

Just one thought (not too worried about it) but would be intresrtead in you view and view of other peoples.

Current user, is it worth checking to see if current user and using proxies. Maybe only doing it once or maybe one a wekk or something.

What do people think

DaNIEL MeNTED 04-13-2007 12:17 AM

Quote:

Originally Posted by Damien001 (Post 1226204)
The new version is amazing thankyou.

Thank you.

Quote:

Originally Posted by Damien001 (Post 1226204)
Just one thought (not too worried about it) but would be intresrtead in you view and view of other peoples.

Current user, is it worth checking to see if current user and using proxies. Maybe only doing it once or maybe one a wekk or something.

What do people think

Personally I think once they're registered it doesn't matter ... I originally wrote this hack to deal with trolls more than with spammers, the fact that it blocks spammers is a bonus as far as I'm concerned. We've been lucky - at 1500 members we have only had 1 troll. I've been on other boards where the same trolls keep re-registering after getting banned, in 99% of cases they're using a proxy to get around the IP ban.

This kills alot of their options...

The next thing I'm going to do is look at updating the "known proxies" list... not with the IPs from those open proxy sites - most of those IPs get on the RBLs pretty quick - but with sites that are specific for anon-web surfing. They don't tend to get on RBLs as much...

|Jordan| 04-13-2007 04:15 AM

What about web based proxies? Like anonymouse.org

Damien001 04-13-2007 06:24 AM

Quote:

Originally Posted by |Jordan| (Post 1226435)
What about web based proxies? Like anonymouse.org

just tested that and unfortunately it got pass the protection


how ever it does transmit its host name there for could itbe blcoked with htaccess based on hostname????

Damien001 04-13-2007 06:27 AM

this is the details of that site

IP 85.195.123.29
Host anonymouse.org
Browser & OS http://Anonymouse.org/ (Unix)

DaNIEL MeNTED 04-13-2007 11:41 AM

Quote:

Originally Posted by |Jordan| (Post 1226435)
What about web based proxies? Like anonymouse.org

See my post above... the next thing I'll be doing is spending some time updating the "known proxies" section - places like "anonymous" don't get added to the RBLs effectively enough...

Damien001 04-13-2007 01:30 PM

what we need is a database that can be shearch for these sites

Spinball 04-13-2007 06:41 PM

We have about 170 people registering per day. Since installing this hack, the amount of spam on the forums has dropped off by maybe 90% or more.
I have had one or two complaints from what sound like genuine users.
Here is such a message
Quote:

Hi, I can't register because the server blacklisted my ip as an open proxy/ or as a spammer.
I'm not using an open proxy, my provider www.fastweb.it uses NAT technology to provide network access, so me and about other 1000 user that uses the same ip address can't register.
Could you please disban my ip address ?
Obviously all fastweb ip address aren't open proxy but simple Nat, so all fastweb user (about 2 million of people) cannot register to your forum.
You can read an article about Fastweb nat techonlogies here: http://www.cisco.com/application/pdf...cd801779b4.pdf
This occasional event aside, it's a very positive hack :up:

DaNIEL MeNTED 04-14-2007 10:09 PM

Its odd that fastweb's natting addresses are on a RBL. I would add the IPs to the whitelist.

Can you PM me with the fastweb.it IPs as well, I'll like to check them against the RBLs and see where the hits are coming from/why.

Thanks!

Spinball 04-15-2007 06:50 AM

Quote:

Originally Posted by DaNIEL MeNTED (Post 1227853)
Its odd that fastweb's natting addresses are on a RBL. I would add the IPs to the whitelist.

Can you PM me with the fastweb.it IPs as well, I'll like to check them against the RBLs and see where the hits are coming from/why.

Thanks!

I'd love to but I have absolutely no idea what they are.

gsk8 04-15-2007 02:29 PM

Does this hack also work on site like proxy.org? I ask because I found out a few of my banned members were using that as a "work-around"....:cool:

nsusa 04-16-2007 02:44 AM

Just installed this hack due to trolls in my forum. Hopefully this will take care of them.

C.

Spinball 04-19-2007 09:08 AM

Quote:

Originally Posted by DaNIEL MeNTED (Post 1227853)
Its odd that fastweb's natting addresses are on a RBL. I would add the IPs to the whitelist.

Can you PM me with the fastweb.it IPs as well, I'll like to check them against the RBLs and see where the hits are coming from/why.

Thanks!

Ok I heard back from the person using Fastweb. He said
Quote:

By the way, fastweb ip addresses will always be in spamcop etc. blacklists because fastweb doesn't have an abuse center and doesn't block users who send spam. Obviously spamcop and etc block the ip address.
So Fastweb can remain in the blacklist as far as I'm concerned.

Darat 04-30-2007 09:14 AM

I've got this installed on a 3.6.4 board ( with the security patch) and it is generating 5 PM's and 5 threads every time it detects someone and although I've said allow registration to continue appears to banning them anyway.

Any ideas what could be causing this?

Tom1234 04-30-2007 12:44 PM

Darat, I think this post explains your problem (and mine since I am seeing the same as you):
https://vborg.vbsupport.ru/showpost....&postcount=107

teedizz 04-30-2007 07:00 PM

Hello, will this still work if I have installed:

Proxy to Real I.P. Detector located here

https://vborg.vbsupport.ru/showthread.php?t=120082

Thanks for any info.

aycan555 05-08-2007 02:18 PM

I am getting below database error to my email ???

Code:

Invalid SQL:
INSERT INTO userban (userid, usergroupid, displaygroupid, usertitle,
customtitle, adminid, bandate, liftdate, reason)
                              VALUES
                              (32322, 8, 8, 'Otomatik Ban', 1, ,1178614929, 0, 'Otomatikmen sitemiz
tarafindan banladiniz, uyeliginiz kontrolden gecirilip, yeniden acilacaktir!!!

Sebebi; proxy ip kullanmanizdan kaynaklaniyor, lutfen direk ip adresinizle
giriniz. Eger gereksiz yere banlandiginizi dusunuyorsaniz, lutfen
admin@dizitr.com email adresinden yardim isteyiniz..');

MySQL Error  : You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near
'1178614929, 0, 'Otomatikmen sitemiz tarafindan banladiniz, uyeliginiz
kontrolden' at line 3
Error Number : 1064
Date        : Tuesday, May 8th 2007 @ 04:02:10 AM
Script      : http://www.dizi-tr.com/forum/register.php?do=addmember
Referrer    : http://www.dizi-tr.com/forum/register.php?do=addmember
IP Address  : 85.104.94.112
Username    : starture
Classname    : vb_database


DaNIEL MeNTED 05-08-2007 05:03 PM

Quote:

Originally Posted by Darat (Post 1238096)
I've got this installed on a 3.6.4 board ( with the security patch) and it is generating 5 PM's and 5 threads every time it detects someone and although I've said allow registration to continue appears to banning them anyway.

Any ideas what could be causing this?

No idea, uninstall and reinstall with the latest version. Let me know if that fixes it...


Quote:

Originally Posted by Tom1234 (Post 1238180)
Darat, I think this post explains your problem (and mine since I am seeing the same as you):
https://vborg.vbsupport.ru/showpost....&postcount=107

That post has nothing to do with multiple hits - the issue there is people getting blocked before the captcha fires, leading to extra hits from bots. There are now 2 plugins, one that fires on reg and one at reg_complete...

DaNIEL MeNTED 05-08-2007 05:07 PM

Quote:

Originally Posted by aycan555 (Post 1243683)
I am getting below database error to my email ???

Code:

Invalid SQL:
INSERT INTO userban (userid, usergroupid, displaygroupid, usertitle,
customtitle, adminid, bandate, liftdate, reason)
                              VALUES
                              (32322, 8, 8, 'Otomatik Ban', 1, ,1178614929, 0, 'Otomatikmen sitemiz
tarafindan banladiniz, uyeliginiz kontrolden gecirilip, yeniden acilacaktir!!!

Sebebi; proxy ip kullanmanizdan kaynaklaniyor, lutfen direk ip adresinizle
giriniz. Eger gereksiz yere banlandiginizi dusunuyorsaniz, lutfen
admin@dizitr.com email adresinden yardim isteyiniz..');

MySQL Error  : You have an error in your SQL syntax; check the manual that
corresponds to your MySQL server version for the right syntax to use near
'1178614929, 0, 'Otomatikmen sitemiz tarafindan banladiniz, uyeliginiz
kontrolden' at line 3
Error Number : 1064
Date        : Tuesday, May 8th 2007 @ 04:02:10 AM
Script      : http://www.dizi-tr.com/forum/register.php?do=addmember
Referrer    : http://www.dizi-tr.com/forum/register.php?do=addmember
IP Address  : 85.104.94.112
Username    : starture
Classname    : vb_database


There is no adminid in the mySQL query...

[high]* DaNIEL MeNTED points up at the install instructions...
[/high]

Quote:

IMPORTANT NOTE:You must specify a username if you plan on configuring the AUTOBAN or NOTIFICATION options. Otherwise you WILL get errors.

aycan555 05-08-2007 09:00 PM

How can i add the adminid?

DaNIEL MeNTED 05-09-2007 12:09 PM

In the adminCP go to the settings for the RBL checker - the third option (you can see it in the first screenshot above) is CONFIG - Username for Bans & Notifications ... put in a username of the admin user and then you can use notifications and bans...

meissenation 05-24-2007 12:20 AM

I was just able to register perfectly fine with xroxyx.com and youhide.com and it didn't block me at all?

Mrdby 05-24-2007 03:41 AM

this is confusing

DaNIEL MeNTED 05-24-2007 01:31 PM

Quote:

Originally Posted by meissenation (Post 1253566)
I was just able to register perfectly fine with xroxyx.com and youhide.com and it didn't block me at all?


You'll note earlier in the thread I mention the fact that specific proxy sites don't get added to RBLs. I'm working on getting access to a liveupdating blocklist than includes these sites for the next version.

venomx 05-24-2007 01:47 PM

Not sure it has been meantioned but take a look at
http://oldwww.temp.ahbl.org/docs/ircbl.php

Quote:

IRCbl Lookup System For IRC Networks
We've put together a list for IRC admins who wish to take advantage of our list on their IRC networks to help prevent abuse and open proxies from connecting to their servers. This list contains only the proxy and DDoS drone data from our main list, without extras such as the Spam Sources list and Shoot On Sight.


All times are GMT. The time now is 10:54 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01628 seconds
  • Memory Usage 1,890KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (21)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete