Alliedassault           
FAQ Calendar
Go Back   Alliedassault > Lounge > Offtopic
Reload this Page help
Offtopic Any topics not related to the games we cover. Doesn't mean this is a Spam-fest. Profanity is allowed, enter at your own risk.

Reply
 
Thread Tools Display Modes
Old
  (#16)
Bleuachdu is Offline
Senior Member
 
Posts: 2,345
Join Date: Apr 2002
Location: Detroit, MI
  Send a message via AIM to Bleuachdu  
Default 08-22-2005, 10:42 PM

Quote:
Originally Posted by Himmler
Quote:
Originally Posted by Bleuachdu
try changing your ftp password first.

next, chmod your index.php file to: 755
what exacty is 755? i can only do it through internet explorers ftp thing, i cant use cuteftp cuz for some reason it always crashes when i go to chmod on a file/folder
If you use IE, I think you can chmod with a right click > properties. Not 100% sure though.

Anyway, 755 = wrx-rx-rx

Owner: write - read - execute
Group: read - execute
everyone: read - execute
  
Reply With Quote
Old
  (#17)
Bleuachdu is Offline
Senior Member
 
Posts: 2,345
Join Date: Apr 2002
Location: Detroit, MI
  Send a message via AIM to Bleuachdu  
Default 08-22-2005, 10:48 PM

Also, I just looked over your site. If thats phpnuke or something similar, make sure its patched. herr strik0r is probably right that its a php injection trick, since you're running a php-based CMS.
  
Reply With Quote
Old
  (#18)
Himmler is Offline
Major
 
Himmler's Avatar
 
Posts: 6,938
Join Date: Nov 2002
Location: Behind You...
  Send a message via AIM to Himmler  
Default 08-23-2005, 01:48 AM

no it isnt php nuke, it is a template from http://www.surreal-media.com. they make their own templates and you buy them. they give you a control panel as well, they are really good.

is it possible to ban a certain IP from accessing FTP?

Also, anyone know why my .htaccess file doesn't show up in the folder i put it in for ftp?
  
Reply With Quote
Old
  (#19)
Eight Ace is Offline
Major
 
Posts: 6,139
Join Date: Jan 2002
Location: Sydney
   
Default 08-23-2005, 02:13 AM

I found the perp...and I'm sorry, but it's ur so-called buddy Crockonater annoy:... [img]http://www.teamwf.com/img/crock.jpg[/img]
  
Reply With Quote
Old
  (#20)
Himmler is Offline
Major
 
Himmler's Avatar
 
Posts: 6,938
Join Date: Nov 2002
Location: Behind You...
  Send a message via AIM to Himmler  
Default 08-23-2005, 02:21 AM

[quote="Eight Ace":d7bb0]I found the perp...and I'm sorry, but it's ur so-called buddy Crockonater annoy:... [img]http://www.teamwf.com/img/crock.jpg[/img][/quote:d7bb0]

lolol. hes the leader of the team. i met him in person, hes hella cool
  
Reply With Quote
Old
  (#21)
Bleuachdu is Offline
Senior Member
 
Posts: 2,345
Join Date: Apr 2002
Location: Detroit, MI
  Send a message via AIM to Bleuachdu  
Default 08-23-2005, 08:14 AM

Quote:
Originally Posted by Himmler
Also, anyone know why my .htaccess file doesn't show up in the folder i put it in for ftp?
.htaccess files are hidden by default in Unix systems. If you uploaded it successfully, it will be there. what are you trying to do with .htaccess?

also, what php functionality does the template give you? Even though it isn't phpnuke, its still probably php-injection h4x. search the index.php file for any of these:

[code:e1e9c]<? ?>[/code:e1e9c]

post whats between them, unless its a huge script.
  
Reply With Quote
Old
  (#22)
Simo Häyhä is Offline
Colonel
 
Simo Häyhä's Avatar
 
Posts: 8,177
Join Date: Dec 2002
Location: Ontario, New York
  Send a message via AIM to Simo Häyhä  
Default 08-23-2005, 10:22 AM

fucking hackers annoy:


www.92bengals.com
It's like aa.com with more gay jokes.
  
Reply With Quote
Old
  (#23)
Pyro is Offline
Chief of Staff General
 
Pyro's Avatar
 
Posts: 20,691
Join Date: Apr 2002
Location: Brampton Ontario Canada
  Send a message via AIM to Pyro Send a message via MSN to Pyro  
Default 08-23-2005, 11:35 AM

The hackers realize the war was wrong at least.


  
Reply With Quote
Old
  (#24)
yeaprollytwo is Offline
Member
 
Posts: 70
Join Date: Aug 2005
   
Default 08-23-2005, 06:53 PM

wow, you suck
  
Reply With Quote
Old
  (#25)
Himmler is Offline
Major
 
Himmler's Avatar
 
Posts: 6,938
Join Date: Nov 2002
Location: Behind You...
  Send a message via AIM to Himmler  
Default 08-23-2005, 06:57 PM

Quote:
Originally Posted by Bleuachdu
Quote:
Originally Posted by Himmler
Also, anyone know why my .htaccess file doesn't show up in the folder i put it in for ftp?
.htaccess files are hidden by default in Unix systems. If you uploaded it successfully, it will be there. what are you trying to do with .htaccess?

also, what php functionality does the template give you? Even though it isn't phpnuke, its still probably php-injection h4x. search the index.php file for any of these:

[code:1b411]<? ?>[/code:1b411]

post whats between them, unless its a huge script.
im using the htaccess to ban an IP i found suspicious in the logs. here is the script:

[code:1b411]

php
$mysql_table = "cp_news";
require_once ("required.inc.php");
getHeader();
if (!$_REQUEST[s]) {
$s = 0;
$result = MYSQL_QUERY("SELECT * FROM $mysql_table ORDER BY topic_id DESC LIMIT $max_news") or die (mysql_error());
} else {
$s = $_REQUEST['s'];
$result = MYSQL_QUERY("SELECT * FROM $mysql_table ORDER BY topic_id DESC LIMIT $max_news, $s") or die (mysql_error());
}
$count = MYSQL_QUERY("SELECT * FROM $mysql_table") or die (mysql_error());
$rows = mysql_num_rows($count);
if ($rows == "0") {
echo "
<h2> no news! </h2>


There are no news items </p>

";
} else {
while ($mysql=mysql_fetch_array($result)) {
echo "<h2><span>" . $mysql[topic_date] . "</span>" . checkContent($mysql[news_topic]) . "</h2>


Posted By: <span>" . checkContent($mysql[news_author]) . "</span>



" . checkContent($mysql[news_message]) . "
</p>
";
}
}
echo "<center>";

if ($s != "0") {
$p = $s - $max_news;
echo "
Back " . $max_news . " | ";
}
echo "Home";
if ($s+$max_news < $rows) {
$n = $s + $max_news;
echo " | Next " . $max_news . "";
}
echo "</center>";
getFooter();

[/code:1b411]

Quote:
Originally Posted by yeaprollytwo
wow, you suck
gtfo of my thread
  
Reply With Quote
Old
  (#26)
yeaprollytwo is Offline
Member
 
Posts: 70
Join Date: Aug 2005
   
Default 08-23-2005, 07:01 PM

wow pretty cool shit right there
  
Reply With Quote
Old
  (#27)
Blase is Offline
Senior Member
 
Posts: 1,583
Join Date: Jun 2004
   
Default 08-23-2005, 07:06 PM

i luv himmlar
  
Reply With Quote
Old
  (#28)
Himmler is Offline
Major
 
Himmler's Avatar
 
Posts: 6,938
Join Date: Nov 2002
Location: Behind You...
  Send a message via AIM to Himmler  
Default 08-23-2005, 07:53 PM

Quote:
Originally Posted by Blase
i luv himmlar
beer:
  
Reply With Quote
Old
  (#29)
Jin-Roh is Offline
Senior Member
 
Posts: 5,546
Join Date: Oct 2004
Location: California
  Send a message via AIM to Jin-Roh Send a message via MSN to Jin-Roh  
Default 08-23-2005, 07:59 PM

Quote:
Originally Posted by Blase
i luv himmlar
you don't know luv. hake:
  
Reply With Quote
Old
  (#30)
Blase is Offline
Senior Member
 
Posts: 1,583
Join Date: Jun 2004
   
Default 08-23-2005, 11:25 PM

[quote="Jin-Roh":2fea0]
Quote:
Originally Posted by Blase
i luv himmlar
you don't know luv. hake:[/quote:2fea0]

I can tell you love isn't what you promised me you'd give me if I went with you into your motel room.

cry:
  
Reply With Quote
Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump



Powered by vBulletin® Version 3.8.12 by ScriptzBin
Copyright ©2000 - 2025, vBulletin Solutions Inc.
vBulletin Skin developed by: vBStyles.com
© 1998 - 2007 by Rudedog Productions | All trademarks used are properties of their respective owners. All rights reserved.