Welcome, Guest. Please login or register.

Author Topic: Latest Posts restored (updated)  (Read 9446 times)

Description:

0 Members and 1 Guest are viewing this topic.

Offline KentTopic starter

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Latest Posts restored (updated)
« on: February 13, 2004, 03:39:44 AM »
The latest posts module has now been restored to service.

The Latest posts module has been restored, thanks to the input provided by DaveP and code fix written by Orgin.  Thanks guys.

The Amiga.org development Team
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com
 

Offline KentTopic starter

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Latest Posts removed
« Reply #1 on: February 13, 2004, 07:42:33 AM »
To keep the security level at a normal level on other Xoops sites, no.  Just know that it was a major security risk, not just for the Amiga.org server, but for your personal computer system as well.  With the right scripts, you could go so far as to potentially pull out a password, or install software to the unknowing user.  I was able to reproduce both with very basic account settings (ie, not using the admin).

I'll leave it at this... it was a very big hole waiting to be hacked.  Not to mention, there are other Xoops sites still using the "Latest Posts" module.  I am working on picking the source appart to create my own module.  I don't think it will be available until after the the new site is already in place and running for a while.  The development has to take the back burner to family, school, and work in that order.  Unfortunately I'm quite swamped at school and family life is no better.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com
 

Offline KentTopic starter

  • Hero Member
  • *****
  • Join Date: Feb 2002
  • Posts: 680
    • Show all replies
    • http://amiga.org/modules/mylinks/visit.php?lid=87
Re: Latest Posts removed
« Reply #2 on: February 14, 2004, 02:25:42 PM »
There's absolutely no "code style" enforced from what I've seen.  Granted LastPost v2 is going to be my first module for xoops, it's also the very first serious work I've done in PHP.  I'm using a strict code style that I'm already familiar with from other projects.  For example:

String strName = "string of text";
char = 'a';
for (int i = 0; i < strName.length(); i++) {
  ...;
} // Notes of "for loop"

It's the default code style found in Java, but I take it to a further extreme--putting spaces between operators, notes always at the end of a loop, whitespace after deliminators (ie ';'), and /** block commenting complete with @params */.  It's something I learned about four or five years back working with Roj in ARexx.  If you can't lock down a code style, half the work will be sloppy as all hell.

:pint:
I love the modern age world of this middle age crises America... all these SUVs driving around like there\\\'s gas to spare and then some.

http://www.RequestFocus.com

W. Kent Seaton ~ RequestFocus.com