Sponsored Content
Full Discussion: Hackers!!!!!
Special Forums UNIX Desktop Questions & Answers Hackers!!!!! Post 25700 by jurrien on Friday 2nd of August 2002 03:34:23 PM
Old 08-02-2002
few things what always help. make sure you have atleast all services you run the most up2date version. have them constantly watched by loggers. make sure those logs files get not deleted (even if person get root ;-) ). but this is just handy when you got hacked and you need to find out who did it. also handy is put some firewall (prefered cisco with extreme good configuration) in front of it so you are sure only allowed persons can get on it.

next to all of this passwords are the weakest point of many security things. just make sure that with password guessign people do nto get in (you get now all script kiddies and more wannabe hackers ;-) ). the others use buffer over flow et problems in programs. you can limit this by making sure they get a time out to the server. (ip rejected by firewall).

just a few ideas Smilie
 

3 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Paranoid about hackers

Hi all I noted something strange on my server. The get mesages on my terminal even when I am not logged on. What does this mean? I don;t remember the excact message but it looked like messages from my /var/log/messages. "Can't locate mod probe!" or something like that. I am trying to get the... (4 Replies)
Discussion started by: skotapal
4 Replies

2. UNIX for Advanced & Expert Users

any hackers? i need someones help

to get into an telephone account online :confused: (4 Replies)
Discussion started by: jackie8
4 Replies

3. Cybersecurity

on how to protect your website against hackers

Hi! Looking for some feed back on this tutorial... Thank you for checking out this thread. I'm working on some killer videos right now that will explain in detail how you can protect your website against hackers. The first part of the video series is live right now and it covers Cross-Site... (2 Replies)
Discussion started by: Arne1983
2 Replies
desktop_color_depth(3alleg4)					  Allegro manual				      desktop_color_depth(3alleg4)

NAME
desktop_color_depth - Finds out the desktop color depth. Allegro game programming library. SYNOPSIS
#include <allegro.h> int desktop_color_depth(); DESCRIPTION
Finds out the currently selected desktop color depth. You can use this information to make your program use the same color depth as the desktop, which will likely make it run faster because the graphic driver won't be doing unnecessary color conversions behind your back. Under some OSes, switching to a full screen graphics mode may automatically change the desktop color depth. You have, therefore, to call this function before setting any graphics mode in order to retrieve the real desktop color depth. Example: allegro_init(); ... if ((depth = desktop_color_depth()) != 0) { set_color_depth(depth); } RETURN VALUE
Returns the color depth or zero on platforms where this information is not available or does not apply. SEE ALSO
get_desktop_resolution(3alleg4), set_color_depth(3alleg4), set_gfx_mode(3alleg4) Allegro version 4.4.2 desktop_color_depth(3alleg4)
All times are GMT -4. The time now is 02:50 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy