Go Back   vb.org Archive > News and Announcements > News and Announcements
FAQ Community Calendar Today's Posts Search

Closed Thread
 
Thread Tools Display Modes
  #51  
Old 06-09-2004, 04:08 PM
WEForums WEForums is offline
 
Join Date: Apr 2003
Location: Jacksonville, Florida
Posts: 195
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Interesting. Nice to know -- I'll make sure no illegal content is mentioned at my forums.

Thanks.
  #52  
Old 06-09-2004, 05:16 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dean C
That's probably the reason why it was made available again. It's against the license agreement for any vBulletin to broadcast or be involved with illegal material on their forums now
Actually it always has had this rule
  #53  
Old 06-09-2004, 11:30 PM
Nomb's Avatar
Nomb Nomb is offline
 
Join Date: Nov 2002
Location: Phoenix, AZ
Posts: 85
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'm not gonna make this bad boy, but, I thought I'd somewhat help. For vB3, checkout /includes/functions_forumdisplay.php

Specifically checkout the function, "fetch_dot_threads_array":

PHP Code:
// ###################### Start getDotThreads #######################
// --> Queries a list of given ids and generates an array of ids that the user has posted in
function fetch_dot_threads_array($ids)
{
    global 
$DB_site$bbuserinfo$vboptions;

    if (
$ids AND $vboptions['showdots'] AND $bbuserinfo['userid'])
    {
        
$dotthreads = array();
        
$mythreads $DB_site->query("
            SELECT COUNT(*) AS count, threadid, MAX(dateline) AS lastpost
            FROM " 
TABLE_PREFIX "post AS post
            LEFT JOIN " 
TABLE_PREFIX "deletionlog AS deletionlog ON (post.postid = deletionlog.primaryid AND type = 'post')
            WHERE post.userid = 
$bbuserinfo[userid] AND
            post.visible = 1 AND
            post.threadid IN (0
$ids) AND
            deletionlog.primaryid IS NULL
            GROUP BY threadid
        "
);

        while (
$mythread $DB_site->fetch_array($mythreads))
        {
            
$dotthreads["$mythread[threadid]"]['count'] = $mythread['count'];
            
$dotthreads["$mythread[threadid]"]['lastpost'] = vbdate($vboptions['dateformat'], $mythread['lastpost'], true);
        }

        return 
$dotthreads;
    }

    return 
false;


This function returns an array of thread ids the user posted in. Anyway, messing with that somewhat is a big start.
  #54  
Old 06-09-2004, 11:48 PM
Nomb's Avatar
Nomb Nomb is offline
 
Join Date: Nov 2002
Location: Phoenix, AZ
Posts: 85
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Was my post deleted? If so, why?
  #55  
Old 06-09-2004, 11:50 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

you were posting the fetch_dottet threads function of vb. so i assumed you just hit reply on the wrong thread, as we are not talking about dottet threads here, do we?
  #56  
Old 06-09-2004, 11:55 PM
Nomb's Avatar
Nomb Nomb is offline
 
Join Date: Nov 2002
Location: Phoenix, AZ
Posts: 85
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, maybe if you would have read my reply and not just deleted it.

Think about it, what does fetch_dot_threads_array do? Returns an array of a user's dot threads, or, “threads a user has posted in”. I made that very clear in my post.

I was just trying to help out with a suggestion for those that might attempt the hack because someone stated earlier that there is no standard vb functionality to grab threads you’ve posted in, well, there is, hence my example.
  #57  
Old 06-10-2004, 04:08 AM
rookie7 rookie7 is offline
 
Join Date: Apr 2004
Posts: 33
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dean C
That's probably the reason why it was made available again. It's against the license agreement for any vBulletin to broadcast or be involved with illegal material on their forums now
See...this is what I don't get. Why would vB care if their software is being used by people who have inappropriate contents in their sites? Doesn't that make vB, in some way, responsible for the contents of their customers, and by doing that, vB is bringing someone else's problems to itself. :ermm:

Also, I agree with AlexanderT. I don't understand the reason behind the change of the rule. The protection system has been used here at vb.org for ages, and only a few months ago was the lock down hack allowed to be released here. So...what happened between when the protection system was used and a few months ago? Why wouldn't the rule changed as soon as the protection system was put in place here at vb.org?

I'm not trying to start anything. It's just that some things are puzzling me. That's all.
  #58  
Old 06-10-2004, 10:03 AM
Dean C's Avatar
Dean C Dean C is offline
 
Join Date: Jan 2002
Location: England
Posts: 9,071
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

There may be some technical loop hole that would make vBulletin responsible in the case of a courtcase, if its being used to broadcast illegal material. Remember, when napster first came out a few years ago, the never shared files, only its users. Yet they got sued by the australian government.

Also another possibly explanation is so vBulletin can distance itself from this kind of illegal activity and bad reputation. Open-source, GPL software can be used for any purpose including warez so perhaps this was done to help the profile of vb

Btw thanks for the heads up on that function Nomb
  #59  
Old 06-10-2004, 12:00 PM
Xenon's Avatar
Xenon Xenon is offline
 
Join Date: Oct 2001
Location: Bavaria
Posts: 12,878
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

@Nomb: i've read you post several times, and still don't get the use of it in THIS thread, but as you say it wasn't a mistake to post it here, i've restored it
  #60  
Old 07-18-2004, 07:34 PM
kermit_criminal kermit_criminal is offline
 
Join Date: Jun 2004
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what are warez sites? im lost here
Closed Thread


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 08:37 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.04372 seconds
  • Memory Usage 2,266KB
  • Queries Executed 11 (?)
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
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (10)post_thanks_box
  • (10)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (10)post_thanks_postbit_info
  • (10)postbit
  • (10)postbit_onlinestatus
  • (10)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
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • 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