Best of joomla gives you news, joomla templates, tutorials and websites about Joomla , FireBoard and FireMessage official page.
| No account yet?   |
The FireBoard forum component development is still going on. In order to get better, FireBoard will be moved from the Best of Joomla website.
During this transition period, the forum in Best of Joomla will be closed to new posts.
Welcome, Guest
Please Login or Register.    Lost Password?
FireBoard Manual Latest release discussions Download FireBoard
Re:New announcement -> Hacking attempt (1 viewing) (1) Guest
TOPIC: Re:New announcement -> Hacking attempt
#37136
New announcement -> Hacking attempt 1 Year ago  
I'm testing on latest SVN of Joomla 1.5 and FireBoard 1.0.4 Stable and when i try to add new announcement as administrator
[code:1]index.php?option=com_fireboard&func=announcement&Itemid=55&do=add[/code:1]
i get this error:
[quote]Hacking attempt[/quote]


Here is the problem - announcement.php
[code:1] if ($do == "add"«») {
if (!$editor) {
die ("Hacking attempt"«»);
}
[/code:1]

if i add this line, it works OK !
[code:1]
$editor =& JFactory::getEditor();
[/code:1]
websitemaker (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/01/03 20:26 By websitemaker.
 
 
#43987
Re:New announcement -> Hacking attempt 11 Months ago  
This hack worked for me as well. Thanks for posting it. I've read all of the posts about the evils of WYSIWYG editors and have concluded that this should be an admin's decision. My users are 'trusted' but not 'techie' and no matter how you slice it, bb code is just too difficult for them. They are familiar with MS-Word and nice editors like FCKeditor have been very well received by them. Hope we'll see hooks in Fireboard for these in the future.

All told though, Fireboard rocks.
pastvne (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#49106
Re:New announcement -> Hacking attempt 8 Months, 3 Weeks ago  
I tried both ways by changing code. It is not working. I am new to coding business. I mace changes in notepad, saved as the same name & extension & uploaded the php file by ftp. But it is not working.
santosh_karkhanis (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#49956
Re:New announcement -> Hacking attempt 8 Months, 1 Week ago  
Try change the code block to this:

Code:


if ($do == "add") {
$editor =& JFactory::getEditor();
if (!$editor) {
die ("Hacking attempt");
}

TBK (User)
Fresh Boarder
Posts: 1
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/05/04 00:09 By TBK.
 
 
#54920
Re:New announcement -> Hacking attempt 5 Months, 1 Week ago  
Hi, i'm try to this solitions, but its working only for hacking attempt warning. When i puss the add button, hacking attempt not shownig any more. But i can't still access any editing page or adding page. Help?
oxijen (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54935
Re:New announcement -> Hacking attempt 5 Months, 1 Week ago  
fixed in FB1.0.5
racoon (User)
FB Core Team
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54941
Re:New announcement -> Hacking attempt 5 Months, 1 Week ago  
Ok, but i cant find 1.0.5 download. where can i find it or upgrade my 1.0.4 stable to 1.0.5?
Tnx.
oxijen (User)
Fresh Boarder
Posts: 3
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
#54942
Re:New announcement -> Hacking attempt 5 Months, 1 Week ago  
Sorry, but only the Nightly Builds are available at this moment. Please look here.
racoon (User)
FB Core Team
Senior Boarder
Posts: 355
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
Last Edit: 2008/08/01 20:26 By racoon.
 
 
#62845
Re:New announcement -> Hacking attempt 3 Weeks, 5 Days ago  
Actually the fix is to change:

if (!$editor) {

to

if (!$is_editor) {


It was just a typo.
AJStevens (User)
Fresh Boarder
Posts: 13
graphgraph
User Offline Click here to see the profile of this user
Logged Logged
 
 
Go to top