Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
vbAnonymizer Details »»
vbAnonymizer
Version: 3.0, by Dismounted Dismounted is offline
Developer Last Online: Apr 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.6.x Rating:
Released: 11-10-2006 Last Update: 10-02-2008 Installs: 321
Uses Plugins
Additional Files  
No support by the author.

vbAnonymizer

Description:
This is a hack to "anonymize" all outgoing links from your forum to prevent the referrer information from being sent.

Installation:
All the installation information is in the package.

What's different about this one?
Unlike the other anonymizing hacks, this one is integrated with vBulletin, meaning it shows a nice message along with your forum's headers and footers.

Changes:
2 Templates
6 Plugins
2 Files

Other Versions:
vbAnonymizer for 3.7 - https://vborg.vbsupport.ru/showthread.php?t=184267

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.
Благодарность от:
markoroots

Comments
  #362  
Old 03-16-2008, 02:37 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Look in the database, and see if the posts have the URL appended to them.
Reply With Quote
  #363  
Old 03-16-2008, 09:28 AM
doc_sameer doc_sameer is offline
 
Join Date: Nov 2006
Posts: 14
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Works nicely since 2 months + on my forum.. thx for a great mod

The only issue i have is, when users edit their posts or even switch between WYSIWYG & normal mode, the URL gets appended multiple number of times..

Is there any way to limit the prefix url to occur only once before the link, however many times we edit the post?
Reply With Quote
  #364  
Old 03-16-2008, 04:44 PM
ahlycairo ahlycairo is offline
 
Join Date: May 2007
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
Look in the database, and see if the posts have the URL appended to them.
yeah its in the database.
  • in post table (415) results.
  • pmtext table (26) results.
  • pmtextLog table (29) results.
  • usertextfield table (14) results.

so what can i do now?
Reply With Quote
  #365  
Old 03-17-2008, 06:27 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by doc_sameer View Post
Works nicely since 2 months + on my forum.. thx for a great mod

The only issue i have is, when users edit their posts or even switch between WYSIWYG & normal mode, the URL gets appended multiple number of times..

Is there any way to limit the prefix url to occur only once before the link, however many times we edit the post?
I'll note down the bug as something to fix in the next version.
Quote:
Originally Posted by ahlycairo View Post
yeah its in the database.
  • in post table (415) results.
  • pmtext table (26) results.
  • pmtextLog table (29) results.
  • usertextfield table (14) results.

so what can i do now?
Weird, must be something to do with vBulletin matching up the post data with the cache. This can be solved using an SQL query. Please tell me which fields they are appearing in.
Reply With Quote
  #366  
Old 03-17-2008, 11:25 AM
ahlycairo ahlycairo is offline
 
Join Date: May 2007
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
Weird, must be something to do with vBulletin matching up the post data with the cache. This can be solved using an SQL query. Please tell me which fields they are appearing in.
how can i know which fields they are appearing in?

thanx
Reply With Quote
  #367  
Old 03-18-2008, 05:55 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You look inside the tables, and find which fields the links are appearing in (ie. text).
Reply With Quote
  #368  
Old 03-19-2008, 02:16 PM
AbercrombieAron AbercrombieAron is offline
 
Join Date: Mar 2008
Posts: 24
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Very nice
Reply With Quote
  #369  
Old 03-29-2008, 10:43 PM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
In the plugin 'Anonymizer Function', find:
PHP Code:
if (preg_match_all("/(\<a href=")(.[^"]*)/i"$text$matches)) 
Replace With:
PHP Code:
if (preg_match_all("/(\<a href=YOURDOMAIN.COM")(.[^"]*)/i"$text$matches)) 
Replace YOURDOMAIN.COM with a domain, for each domain you want to anonymize, add an 'OR'. For example:
PHP Code:
if (preg_match_all("/(\<a href=YOURDOMAIN.COM")(.[^"]*)/i"$text$matches) OR preg_match_all("/(\<a href=DOMAIN2.COM")(.[^"]*)/i"$text$matches)) 
Mhmm, it?s not working in the newest version, i think you have changed this part of code.

Can you say me, how i can use the anonym.to link with your script?

Thanks.
Reply With Quote
  #370  
Old 03-30-2008, 06:12 AM
Dismounted's Avatar
Dismounted Dismounted is offline
 
Join Date: Jun 2005
Location: Melbourne, Australia
Posts: 15,047
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Pander23 View Post
Mhmm, it?s not working in the newest version, i think you have changed this part of code.
I have .
Quote:
Originally Posted by Pander23 View Post
Can you say me, how i can use the anonym.to link with your script?
In the function plugin, you will need to find the place where it replaces (trust me, you'll see it), and change it.
Reply With Quote
  #371  
Old 03-30-2008, 10:20 AM
Fraxter Fraxter is offline
 
Join Date: Jul 2007
Posts: 158
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dismounted View Post
I have .

In the function plugin, you will need to find the place where it replaces (trust me, you'll see it), and change it.
I think it?s this part:

Quote:
if (preg_match_all('/' . $anchor . '([^"]+)/i', $text, $links))
But how is must change it to use anonym.to?

Thanks for your help.

regards

Pander23
Reply With Quote
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 On
HTML code is Off

Forum Jump


All times are GMT. The time now is 01:58 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05671 seconds
  • Memory Usage 2,324KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (9)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (1)post_thanks_box_bit
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • fetch_musername
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • post_thanks_function_fetch_thanks_bit_start
  • post_thanks_function_show_thanks_date_start
  • post_thanks_function_show_thanks_date_end
  • post_thanks_function_fetch_thanks_bit_end
  • post_thanks_function_fetch_post_thanks_template_start
  • post_thanks_function_fetch_post_thanks_template_end
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete