Lost Password?

Go Back   CodeCall Programming Forum > Software Development > Software Security

Software Security Information to inform users on how to protect their personal software / applications. Learn how to protect against software crackers.

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #11 (permalink)  
Old 12-30-2007, 01:38 AM
John's Avatar   
John John is offline
Co-Administrator
 
Join Date: Jul 2006
Age: 19
Posts: 2,345
Last Blog:
PHP Function Overloadi...
Rep Power: 50
John is a glorious beacon of lightJohn is a glorious beacon of lightJohn is a glorious beacon of lightJohn is a glorious beacon of lightJohn is a glorious beacon of light
Send a message via AIM to John
Default

How do meta tags provide protection?
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum | My Blog
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 12-30-2007, 06:33 AM
TcM's Avatar   
TcM TcM is offline
Terminator - I'll be back
 
Join Date: Aug 2006
Location: In a technologic world :p
Posts: 5,709
Rep Power: 47
TcM is a jewel in the roughTcM is a jewel in the roughTcM is a jewel in the rough
Default

Meta Tags? I didn't see that in the post until now.

Anyways.. same question here.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall


Business Directory | Technology Blog | Windows Help
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 01-01-2008, 11:35 AM
kiafaldorius kiafaldorius is offline
Newbie
 
Join Date: Dec 2007
Posts: 1
Rep Power: 0
kiafaldorius is on a distinguished road
Default

Last I checked, html tags don't provide any protection at all. It might tell people that your security is weak, or strong, but you don't secure html. HTML is a Mark-up Language, not scripting, not programming.

Do you still happen to have that script that uploads files? Mind if I take a look at it? I think that's the one with the issues.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 01-22-2008, 04:21 PM
ReekenX's Avatar   
ReekenX ReekenX is offline
Learning Programmer
 
Join Date: Jan 2007
Posts: 77
Rep Power: 6
ReekenX is on a distinguished road
Send a message via Skype™ to ReekenX
Default

Try inserting .htaccess codes in your server to prevent attacks. For example disable config php files for world access, directories and etc.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 02-02-2008, 04:02 AM
zoekmachine zoekmachine is offline
Newbie
 
Join Date: Feb 2008
Location: 24orange.nl
Posts: 12
Rep Power: 0
zoekmachine is on a distinguished road
Default

Maybe i missed that part but are you running forum or something similar. Are you running some free or commercial script?
This kind of script-kiddies run usually one script that use search engines to search for other website running old and insecure script and then they simple infect it through weakness into code, leave message about defacing and go away.
You can see for example a lot old version of VB, phpBB infected.
Setting .htaccess file with example:

Code:
<Limit GET POST PUT>
Order allow,deny
deny from All
</Limit>
may help but not a lot. If there is code inside that they use only thing that can help is to update your script.
Try this crackertracker script by include it into first line of your codes. It may help to block many attacks:
Code:
<?php

// Cracker Tracker Protection System
// Created by: Christian Knerr - www.cback.de
//
// License: GPL
//
//
// Begin CrackerTracker  StandAlone
//

  $cracktrack = $_SERVER['QUERY_STRING'];
  $wormprotector = array('chr(', 'wget', 'cmd=', 'rush=', 'union', 'UNION', 'echr(', 'esystem(', 'cp%20', 'mdir%20', 'mcd%20', 'mrd%20', 'rm%20', 'mv%20', 'rmdir%20', 'chmod(', 'chmod%20', 'chown%20', 'chgrp%20', 'locate%20', 'grep%20', 'diff%20', 'kill%20', 'kill(', 'killall', 'passwd%20', 'telnet%20', 'vi(', 'vi%20', 'INSERT%20INTO', 'SELECT%20', 'nigga', 'fopen', 'fwrite', '$_REQUEST', '$_GET');
  $checkworm = str_replace($wormprotector, '*', $cracktrack);

  if ($cracktrack != $checkworm)
    {
      $cremotead = $_SERVER['REMOTE_ADDR'];
      $cuseragent = $_SERVER['HTTP_USER_AGENT'];

      die( "Attack detected! <br />br />$cuseragent" );
    }

//
// End CrackerTracker StandAlone
//

?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
  #16 (permalink)  
Old 05-14-2008, 05:50 AM
Sionofdarkness Sionofdarkness is offline
Programming Expert
 
Join Date: Jul 2006
Posts: 377
Rep Power: 10
Sionofdarkness is on a distinguished road
Default Re: My Website got hacked!

It always seems that hackers are foreigners trying to do internet terrorism or something. So pointless...
__________________
Make Money Online
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 05-14-2008, 01:50 PM
Xav's Avatar   
Xav Xav is offline
Guru
 
Join Date: Mar 2008
Location: London, England
Posts: 2,969
Last Blog:
Piano Exam
Rep Power: 25
Xav is a name known to allXav is a name known to allXav is a name known to allXav is a name known to allXav is a name known to allXav is a name known to all
Send a message via MSN to Xav
Default Re: My Website got hacked!

Internet terrorism? Now that is a good idea...

Juuussstt kidding...
__________________
Xav, the power of youth
Worship the Creator... not his creations
Web Site | Beta Site
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 05-27-2008, 02:16 PM
DevilsCharm's Avatar   
DevilsCharm DevilsCharm is offline
Programming God
 
Join Date: Jul 2006
Posts: 875
Rep Power: 13
DevilsCharm is on a distinguished road
Default Re: My Website got hacked!

Ha ha. I don't know why people think they can make an impact by doing something on the Internet, unless it's a business like Google or something.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 06-06-2008, 01:10 PM
TcM's Avatar   
TcM TcM is offline
Terminator - I'll be back
 
Join Date: Aug 2006
Location: In a technologic world :p
Posts: 5,709
Rep Power: 47
TcM is a jewel in the roughTcM is a jewel in the roughTcM is a jewel in the rough
Default Re: My Website got hacked!

zokemachine, I did understand what that script does... but where is that supposed to be included?
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum
Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall


Business Directory | Technology Blog | Windows Help
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 06-10-2008, 11:38 AM
deep23 deep23 is offline
Newbie
 
Join Date: Jun 2008
Posts: 3
Rep Power: 0
deep23 is on a distinguished road
Default Re: My Website got hacked!

so dident saw this topic before so hackers use rfi remote file inlclude to put a .php or a .txt now it works with .jpg and .gif too
the hackers find a bug in your page and then the put that php file or some other file into your host the mos use c99.php its a shell that allows me to to anything what i want in your site i can connect to the site with netcat and do more damge to your site
when i hacked i puted into the site a phpmailer and spamed until the web closed an other method is xss cross site scripting withthat way the "hacker" steales your admin cookie and gets access through your site
and other way that i dont know how to explain is rooting
if you wanna protect your site use htaccess or meta taks like someone above sad
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Sponsored Links
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
How 2 create a website tutorial mysticalone Website Design 3 02-02-2007 06:42 PM
Website Goodies littlefranciscan Website Design 1 01-15-2007 11:14 AM
Website Backlinks TcM Search Engine Optimization 10 01-09-2007 02:02 PM
12 Website Design Decisions Your Business or Organization Will Need to Make Void Website Design 1 07-04-2006 08:42 PM


All times are GMT -5. The time now is 05:58 PM.

Contest Stats

John ........ 87.50000
dargueta ........ 75.00000
Xav ........ 50.00000
MeTh0Dz ........ 20.00000
gaylo565 ........ 18.00000
Johnnyboy ........ 3.00000

Contest Rules

Ads