Yahoo [Bot]
Fri. Mar. 12 2010, 16:42
MSN [Bot]
Fri. Mar. 12 2010, 16:36
Google [Bot]
Fri. Mar. 12 2010, 16:34
Google Adsense [Bot]
Fri. Mar. 12 2010, 16:15
Baidu [Spider]
Fri. Mar. 12 2010, 15:41
MSNbot Media
Fri. Mar. 12 2010, 09:05
Exabot [Bot]
Fri. Mar. 12 2010, 05:12
Gigabot [Bot]
Fri. Mar. 12 2010, 03:23
Ask Jeeves [Bot]
Thu. Mar. 11 2010, 19:46
Alexa [Bot]
Wed. Mar. 10 2010, 10:16
|
| Page 1 of 12 [ 167 posts ] |
|
| Go to page 1, 2, 3, 4, 5 ... 12 |
| Author |
Message |
Teelk
Offline
Joined: Tue Mar 14, 2006 6:25 pm Posts: 1296 Location: Canada Cash:10

|
 CrackerTracker Exploit False Positives
Have you ever gotten this message while trying to do something you know you should be allowed to do? There is a KB Article located here that will explain how to use the debug mode of CrackerTracker to detect the problem file and give you a solution. This thread is for those that have already found their solution and want to share it with the rest of the community. So, feel free to share your CrackerTracker Debug Logs with everyone. All verified and validated False Positive fixes will be contained within this first post. NOTE: Please do not post support questions in this thread, it is only for CT Debug info. If you are having a problem using the debug mod or have another CrackerTracker related question or problem, please start another thread or post in a thread with the same topic material. Verified FixesTell a Friend fixOPEN tellafriend.php FIND AFTER ADD - define('CT_SECLEVEL', 'MEDIUM');
Occupation Fix (in profiles) OPEN profile.php FIND - $ct_ignorepvar = array('helpbox','delete','deleteall','phpBBSecurity_question','user_interests');
REPLACE WITH - $ct_ignorepvar = array('helpbox','delete','deleteall','phpBBSecurity_question','user_interests','user_occ');
_________________ A childhood can be a terrible thing to waste... that's why I've extended mine well into my 20's.
Last edited by Teelk on Tue Jan 23, 2007 1:23 am, edited 2 times in total.
|
| Thu Jan 18, 2007 5:08 pm |
|
|
ZacFields
Offline
Joined: Wed May 24, 2006 11:14 pm Posts: 430

|
When you click the "Tell a Friend" button, you'll get a CrackerTracker error. I have edited the instructions that CrackerTracker gave me to match what you'll actually have to do to fix this.
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- Script-Filename: /tellafriend.php
- ----------------
-
- Request-Method: GET
-
- Possible solution:
- ------------------
-
- #
- #-----[ OPEN ]------------------------------------------
- #
- /tellafriend.php
-
- #
- #-----[ FIND ]------------------------------------------
- #
- define('IN_PHPBB', true);
-
- #
- #-----[ AFTER, ADD ]------------------------------------------
- #
- define('CT_SECLEVEL', 'MEDIUM');
-
- #
- #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
- #
- # EoM
Before it said to look for "define('IN_PHPBB', 1); but in IM 1.4.1 it is "define('IN_PHPBB', true);" so this code will fix the problem.
Zac
|
| Thu Jan 18, 2007 5:20 pm |
|
|
|
florida4x4
Offline
Joined: Thu Jul 27, 2006 6:37 pm Posts: 39

|
 Re: CrackerTracker Exploit False Positives
A user couldn't change their style in the control panel. Debugging showed this
-
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- Script-Filename: /4xforum/profile.php
- ----------------
-
- Request-Method: POST
-
- Matching rule: or
- In variable: user_occ
-
- Matching rule: '
- In variable: user_occ
-
- Possible solution:
- ------------------
-
- #
- #-----[ OPEN ]------------------------------------------
- #
- /4xforum/profile.php
-
- #
- #-----[ FIND ]------------------------------------------
- #
- define('IN_PHPBB', 1);
-
- #
- #-----[ AFTER, ADD ]------------------------------------------
- #
- define('CT_SECLEVEL', 'MEDIUM');
- $ct_ignorepvar = array('user_occ');
-
- #
- #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
- #
- # EoM
So I patched the file -
- --- profile.php.orig 2007-01-22 15:40:55.000000000 -0500
- +++ profile.php 2007-01-22 15:41:15.000000000 -0500
- @@ -12,7 +12,7 @@
-
- define('IN_PHPBB', true);
- define('CT_SECLEVEL', 'MEDIUM');
- -$ct_ignorepvar = array('helpbox','delete','deleteall','phpBBSecurity_question','user_interests');
- +$ct_ignorepvar = array('helpbox','delete','deleteall','phpBBSecurity_question','user_interests','user_occ');
- if ( (isset($HTTP_GET_VARS['mode']) && ($HTTP_GET_VARS['mode'] == 'viewprofile')) || (isset($HTTP_POST_VARS['mode']) && ($HTTP_POST_VARS['mode'] == 'viewprofile')) )
- {
- define('IN_CASHMOD', true);
-
I hope this is what I am supposed to do 
|
| Mon Jan 22, 2007 3:06 pm |
|
|
|
DDay629
Offline
Joined: Wed Jan 17, 2007 11:35 pm Posts: 41

|
For anyone wanting an easy way to make these changes without using a single FTP program, just use the eXtreme Styles template editor. I have for instance created backups in both versions of ctracker/engines/ct_security.php
Hope this helps some of you guys.
DDay
|
| Fri Jan 26, 2007 12:54 am |
|
|
|
ZacFields
Offline
Joined: Wed May 24, 2006 11:14 pm Posts: 430

|
One of my users was having trouble updating his information. Seems that the 'user_realname' parameter was causing the trouble. Here is the patch for it (I have altered it to work with the integramod code)
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- Script-Filename: /profile.php
- ----------------
-
- Request-Method: POST
-
- Matching rule: chr
- In variable: user_realname
-
- Possible solution:
- ------------------
-
- #
- #-----[ OPEN ]------------------------------------------
- #
- /profile.php
-
- #
- #-----[ FIND ]------------------------------------------
- #
- $ct_ignorepvar = array
- ('helpbox','delete','deleteall','phpBBSecurity_question','user_interests')
-
- #
- #-----[IN-LINE FIND]------------------------------------------
- #
-
- 'helpbox','delete','deleteall','phpBBSecurity_question','user_interests'
-
- #
- #-----[ IN-LINE, AFTER, ADD ]------------------------------------------
- #
-
- ,'user_realname'
-
- #
- #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
- #
- # EoM
-
The whole string of code will look like this after the patch:
$ct_ignorepvar = array
('helpbox','delete','deleteall','phpBBSecurity_question','user_interests','user_realname')
I think this is the right instructions that you'll need. Feel free to alter, it's just important to get the 'user_realname' parameter unblocked.
Zac
Last edited by ZacFields on Sat Jan 27, 2007 2:37 pm, edited 1 time in total.
|
| Fri Jan 26, 2007 11:09 am |
|
|
|
ZacFields
Offline
Joined: Wed May 24, 2006 11:14 pm Posts: 430

|
I couldn't edit anything in my ACP ==> Configuration area before adding this fix: (Altered to match integramod code)
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- Script-Filename: /admin/admin_board.php
- ----------------
-
- Request-Method: POST
-
- Matching rule: and
- In variable: board_email_sig
-
- Matching rule: like
- In variable: board_disable_msg
-
- Possible solution:
- ------------------
-
- #
- #-----[ OPEN ]------------------------------------------
- #
- /admin/admin_board.php
-
- #
- #-----[ FIND ]------------------------------------------
- #
- define('CT_SECLEVEL', 'MEDIUM');
- $ct_ignorepvar = array('cookie_name');
- #
- #-----[ IN-LINE FIND]------------------------------------------
- #
-
- 'cookie_name'
-
- #
- #-----[ IN-LINE AFTER, ADD]------------------------------------------
- #
-
- ,'board_email_sig','board_disable_msg'
-
- #
- #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
- #
- # EoM
-
The whole string of code will look like this after the patch:
$ct_ignorepvar = array('cookie_name','board_email_sig','board_disable_msg');
Now as far as I can tell, I can change anything in the configuration section in the ACP.
Zac
Last edited by ZacFields on Sat Jan 27, 2007 2:36 pm, edited 1 time in total.
|
| Fri Jan 26, 2007 3:02 pm |
|
|
|
ZacFields
Offline
Joined: Wed May 24, 2006 11:14 pm Posts: 430

|
To create a forum, there is one minor error that needs to be resolved. Very simple and SMALL problem but here is the patch for it (Altered to match IM code)
-
- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
- Script-Filename: /admin/admin_forums_extend.php
- ----------------
-
- Request-Method: POST
-
- Matching rule: '
- In variable: desc
-
- Possible solution:
- ------------------
-
- #
- #-----[ OPEN ]------------------------------------------
- #
- /admin/admin_forums_extend.php
-
- #
- #-----[ FIND ]------------------------------------------
- #
- $ct_ignorepvar = array('create','delete','name','icon');
-
- #
- #-----[ IN-LINE, FIND ]------------------------------------------
- #
- 'delete','name','icon'
-
- #
- #-----[ IN-LINE AFTER, ADD ]------------------------------------------
-
- ,'desc'
-
- #
- #
- #-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
- #
- # EoM
-
The string of code after the fix will look like this:
$ct_ignorepvar = array('create','delete','name','icon','desc');
Once this is fixed, you should be able to create forums just fine.
Zac
*EDIT* This fix seems to also work for creating categories as well.
|
| Sat Jan 27, 2007 2:34 pm |
|
|
|
MWE_001
Offline
Joined: Fri Apr 21, 2006 7:59 pm Posts: 882 Location: Illinois Cash:380

|
 Re: CrackerTracker Exploit False Positives
Tried Adding a GNU license in downloads and cracker tracker went off. Letting you know so it can be patched when ever and I used ZacFields fixes and my board is alot more free now.
_________________
|
| Tue Jan 30, 2007 1:07 am |
|
|
|
Dick Dynamite
Offline
Joined: Sun Dec 31, 2006 10:53 am Posts: 68

|
Biggest problem I am having right now is on one of my sites, I can't edit style.css sheets on the site itself. I have to download them, edit them on my machine, and submit the edited version. That wouldn't be an issue if I wasn't the kind to try something, and nick and pick at it til I liked it. 
_________________
www.dickdynamite.com
|
| Tue Jan 30, 2007 1:29 am |
|
|
|
Leadfoot
Offline
Joined: Sun Oct 01, 2006 5:02 pm Posts: 144

|
 Re: CrackerTracker Exploit False Positives
ctracker is blocking the cookieMod program. I found the easy go around was to rename ctracker to something else. Run cookieMod and then change the file name back to ctracker.
|
| Tue Jan 30, 2007 1:53 am |
|
|
|
Dick Dynamite
Offline
Joined: Sun Dec 31, 2006 10:53 am Posts: 68

|
_________________
www.dickdynamite.com
|
| Tue Jan 30, 2007 2:05 am |
|
|
|
Leadfoot
Offline
Joined: Sun Oct 01, 2006 5:02 pm Posts: 144

|
If you look at the root of your forums you will see a folder called ctracker. It was in the files you uploaded for 141.
|
| Tue Jan 30, 2007 11:21 am |
|
|
|
ZacFields
Offline
Joined: Wed May 24, 2006 11:14 pm Posts: 430

|
I will take a look at the aforementioned problems and see if we can find a patch for it.
The Devs (and I, the newbie dev) are working on a real patch for crackertracker but we want to make sure we've got most of the major fixes on there before we release it.
I have uploaded a patch that you guys can use in the meantime that will help you be able to do some of the basic stuff like create forums, edit forums, etc.
Zac
|
| Tue Jan 30, 2007 11:59 am |
|
|
|
Dick Dynamite
Offline
Joined: Sun Dec 31, 2006 10:53 am Posts: 68

|
Sorry, Leadfoot, I was asking if you meant the folder itself, or the CTracker_security.php file.
_________________
www.dickdynamite.com
|
| Tue Jan 30, 2007 1:18 pm |
|
|
|
Dick Dynamite
Offline
Joined: Sun Dec 31, 2006 10:53 am Posts: 68

|
Also, now I can't even change those settings at all. [Avatar/Sig, ect.]. I'm tempted to just uninstall ctracker until something is made to work. 
_________________
www.dickdynamite.com
|
| Tue Jan 30, 2007 1:38 pm |
|
|
|
| Page 1 of 12 [ 167 posts ] |
|
| Go to page 1, 2, 3, 4, 5 ... 12 |
Who is online |
Users browsing this forum: No registered users and 0 guests |
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot post attachments in this forum
|
|