Getting Hacking Attempt Message

Support for IntegraMOD 141

Moderator: Integra Moderator

Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Fri Feb 16, 2007 3:16 pm

Your phpBB Version: 2.0.
phpBB Type: Integramod 141
MODs: No
Your knowledge: Beginner
Board URL: http://aaquacks.com/forum

PHP Version:
MySQL Version:


What was done before the problem appeared?
define('CT_SECLEVEL', 'MEDIUM');
$ct_ignorepvar = array('send');

in admin/admin_email_users.php



What was done to try to solve the problem?
none



De.scription and Message

I went into General Admin/Mass Email & PM section, click on a box next to a name and then clciked on Send A Email Or PM at the top of the page. I then got the cracker tracker error. I did the suggested debug listed above. Then I tried to do same sequence again, and now I don't get the cracker tracker error, I get a little message in top left of the screen stating 'Hacking Attempt'.

What's the fix now?
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Helter » Fri Feb 16, 2007 7:46 pm

try changing
define('CT_SECLEVEL', 'MEDIUM');
to
define('CT_SECLEVEL', 'LOW');
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4175
Likes: 2 posts
Liked in: 2 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 233.25
Location: Seattle Wa
IntegraMOD version: IM 3

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Fri Feb 16, 2007 11:03 pm

already tried that and still get same message
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Teelk » Sat Feb 17, 2007 9:35 pm

Try moving...
Code: Select all
define('IN_PHPBB', true);
... above this code...
Code: Select all
if( !empty($setmodules) ){     $file = basename(__FILE__);     $module['General']['Mass_Email_Users'] = $file;     return;}  
Last edited by Teelk on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Tue Mar 14, 2006 6:25 pm
Cash on hand: 0.00
Location: Canada

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Sat Feb 17, 2007 10:05 pm

Did that change and still get: 'Hacking attempt!' message
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Teelk » Sun Feb 18, 2007 1:05 pm

Wow, this is the second post today that I've found that I gave a really bad answer to. I was so tired yesterday lol.

Ok, the admin/ folder files aren't used to generate the modules anymore, the admin/modules folder is. You're getting a hacking attempt because the file admin/modules/admin_email_users.php isn't defined as a viewable file.

So, open admin/modules/admin_email_users.php

FIND
Code: Select all
if( !empty($setmodules) ){     $file = basename(__FILE__);     $module['General']['Mass_Email_Users'] = $file;     return;}

BEFORE ADD
Code: Select all
define('IN_PHPBB', true);


Congrats, you found an actual bug. <img>
Last edited by Teelk on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
User avatar
Teelk
Dev Team
Dev Team
 
Posts: 1309
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Tue Mar 14, 2006 6:25 pm
Cash on hand: 0.00
Location: Canada

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Sun Feb 18, 2007 2:04 pm

OK tried that too - same result - same message

I tried clicking box next to name and then clicking Send An Email Or A PM = hacking attempt!

I tried clicking box next to name and then clicking Add The Selected Users = hacking attempt!

Am I doing it right?

Must be having fun sorting out all the bugs. Guess ya take em 1 at a time. LOL
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Omni-Lee » Fri Mar 30, 2007 1:30 pm

Has a fix been found for this? The ones supplied within this thread do correct the Hacking Attempt! error.
Last edited by Omni-Lee on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
"Out, out, brief candle! Life's but a walking shadow, a poor player that struts and frets his hour upon the stage and then is heard no more: it is a tale told by an idiot, full of sound and fury, signifying nothing" - Macbeth ACT V, Scene V by William Shakespeare
User avatar
Omni-Lee
Members
Members
 
Posts: 69
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Thu Feb 01, 2007 12:07 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Fri Mar 30, 2007 4:36 pm

define('IN_PHPBB', 1); define('IN_PHPBB', true);

Are the above 2 the same? The left is used in debug, the right is in the actual file.

The above fix doesn't work. I still get the "Hacking Attempt!!!" message.

The original files trigger CT error.
When you do the debug that is suggestted, that's when you get the hacking attempt error.
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Frost » Fri Mar 30, 2007 10:04 pm

I tried doing the suggestions mentioned above and like them found it doesn't work.

So here's what I've seen if it helps.

When using debug mode, the ctracker warning is not logged as a debug, but as a "Worm & Exploit Protection"

Inside the logs it reads...

Appeal - /forum/admin/admin_email_users.php?

Referer - http://www.black-fusion.com/forum/admin ... 6798fba1d2

I tried...

Editing both admin_email_users.php in admin/ and admin/modules/
Changing around.. etc
Last edited by Frost on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
[size=99px]PhpBB3 Themes[/url] ]PhpBB3 Development Center[/url] [/size]

Frost
Sr Integra Member
Sr Integra Member
 
Posts: 776
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Wed Sep 13, 2006 2:04 am
Cash on hand: 0.00
Location: Photoshop CS3

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Thu May 10, 2007 5:40 pm

Bump - Is anyone still looking at this??? <img>
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Ezra » Sat Jun 16, 2007 2:43 am

I wanted to give this topic a bump, because this problem isn't solved yet. I also tried the options given, but with no result.

Does anyone have any idea how to fix this error? Thanks.

Greetings,
Ezra
Last edited by Ezra on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

Ezra
Newbie
Newbie
 
Posts: 25
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Mon Apr 03, 2006 2:15 pm
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Ezra » Mon Jun 18, 2007 10:32 am

I hope I don't sound impatient. But, I was really hoping that you guys can look into this. Unfortunately I can't do it myself, so I need your help on this.

I have to send a large group of users an email, so I would really like this function to work. I'm a n00b on programming, so I don't know if I aks a simple or difficult question.

Maybe you can at least let me know if you're working on it or not, if not, I have to find another easy way to email a selection of my users.

Thanks!
Ezra
Last edited by Ezra on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

Ezra
Newbie
Newbie
 
Posts: 25
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Mon Apr 03, 2006 2:15 pm
Cash on hand: 0.00

Re: Getting Hacking Attempt Message

PostAuthor: Helter » Mon Jun 18, 2007 7:17 pm

I cannot reproduce the problem. On this site, I opened

/forum/admin/admin_email_users.php

found

define('IN_PHPBB', true);

after that, I added

define('CT_SECLEVEL', 'LOW');
$ct_ignorepvar = array('send');


problem solved.

here is the begining of the file



Code: Select all
 <?php/***************************************************************************  *                                      admin_email_users.php  *                                   ------------------  *  *   begin                             ]['Mass_Email_Users'] = $file;     return;}  define('IN_PHPBB', true);  define('CT_SECLEVEL', 'LOW');$ct_ignorepvar = array('send');  $phpbb_root_path = '../';require($phpbb_root_path . 'extension.inc');require("pagestart.$phpEx");include($phpbb_root_path.'language/lang_' . $board_config['default_lang'] . '/lang_admin_mail_users.'.$phpEx);include($phpbb_root_path . 'includes/functions_post.'.$phpEx);include($phpbb_root_path . 'includes/bbcode.'.$phpEx);  
Last edited by Helter on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.
Always use Protection
Image


Please do not PM for support
User avatar
Helter
Administrator
Administrator
 
Posts: 4175
Likes: 2 posts
Liked in: 2 posts
Images: 0
Joined: Sat Mar 11, 2006 4:46 pm
Cash on hand: 233.25
Location: Seattle Wa
IntegraMOD version: IM 3

Re: Getting Hacking Attempt Message

PostAuthor: .QUACK.Major.Pain » Mon Jun 18, 2007 7:49 pm

Had that change but set to medium - I changed it to low and tried.
Still same result - I select a box and then click on Send email or PM

Result: Hacking attempt!

Gotta be something wrong with the coding.

Have to find the file that puts up the message "hacking attempt'
Last edited by .QUACK.Major.Pain on Wed Dec 31, 1969 5:00 pm, edited 1 time in total.

.QUACK.Major.Pain
Sr Integra Member
Sr Integra Member
 
Posts: 986
Likes: 0 post
Liked in: 0 post
Images: 0
Joined: Sat Jan 27, 2007 11:15 am
Cash on hand: 0.00

Next

Return to IntegraMOD 141

Who is online

Registered users: Bing [Bot], Google [Bot], Helter, Unspecified Bot