vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Is this a Hack?!? (https://vborg.vbsupport.ru/showthread.php?t=120901)

Wired1 07-12-2006 11:27 PM

Why do you want everyone to know every one else's IP though?

PTWingus 07-13-2006 05:05 PM

Ok i got an answer,from the admin of that site. he said:

Quote:

Actually, its not really any type of hex/binary/decimal format.. what I did was used the crypt() function to encrypt the ip, then the md5() function to further encode the ip, and finally, just displayed the first 8 characters, since displaying the full 32 char md5 hash makes it impossible for people to compare it quickly. With just 8 chars, its impossible to reverse engineer it to get the real ip back.

I went ahead and pasted the code below. You will need to modify the template to display the $post['ipcensored'] variable.



Code:

$censored_ip = explode(".", $post[ip]);
$encrypted_ip = strtoupper(md5(crypt("$censored_ip[0]$censored_ip[1]$censored_ip[2]$censored_ip[3]", "randomKEY")));
$post['ipcensored'] = substr($encrypted_ip, 0, 4) . " " . substr($encrypted_ip, 4, 4);

Insert that code above the line



Code:

$postbits .= construct_postbit($post, $template);
in the linear mode section in the showthreads.php file
However,for some reason. in 3.5.4 their isnt a
Code:

$postbits .= construct_postbit($post, $template);
in that template.

Does anyone know what the code is for 3.5.4?

any1.

a simple fa?ade 07-14-2006 03:13 PM

All of that code he listed is PHP code and needs to be edited into a core file somewhere.

The only templating that needs done is replacing the IP with the new variable.

djscene 07-14-2006 03:32 PM

interesting

PTWingus 07-14-2006 05:26 PM

Quote:

Originally Posted by a simple fa?ade
All of that code he listed is PHP code and needs to be edited into a core file somewhere.

The only templating that needs done is replacing the IP with the new variable.

into a core file?

you mean in the showthread.php right?


All times are GMT. The time now is 05:33 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.02855 seconds
  • Memory Usage 1,726KB
  • 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
  • (3)bbcode_code_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)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