Raised This Month: $12 Target: $400
 3% 

Protecting your server!


Post New Thread Reply   
 
Thread Tools Display Modes
Mavrick4283
Veteran Member
Join Date: Apr 2010
Location: 127.0.0.1@root
Old 07-06-2012 , 15:10   Re: Protecting your server!
Reply With Quote #61

Updated the wiki to include a new tut by C0nw0nk on the windows TCP settings and Firewall
__________________
Mavrick4283 is offline
C0nw0nk
Senior Member
Join Date: May 2011
Location: United Kingdom
Old 07-07-2012 , 20:17   Re: Protecting your server!
Reply With Quote #62

Quote:
Originally Posted by Mavrick4283 View Post
Updated the wiki to include a new tut by C0nw0nk on the windows TCP settings and Firewall
Thanks mavrick much appreciated I will be adding a few more things to it tomorrow to do with windows services to be enabled and disabled for security and perfomance purposes , I also checked the wiki and the link goes to this topic :p
C0nw0nk is offline
Send a message via MSN to C0nw0nk
Mavrick4283
Veteran Member
Join Date: Apr 2010
Location: 127.0.0.1@root
Old 07-08-2012 , 03:56   Re: Protecting your server!
Reply With Quote #63

Quote:
Originally Posted by C0nw0nk View Post
Thanks mavrick much appreciated I will be adding a few more things to it tomorrow to do with windows services to be enabled and disabled for security and perfomance purposes , I also checked the wiki and the link goes to this topic :p
/facepalm copy paste has failed me

Fixed it
__________________

Last edited by Mavrick4283; 07-08-2012 at 03:56.
Mavrick4283 is offline
Powerlord
AlliedModders Donor
Join Date: Jun 2008
Location: Seduce Me!
Old 07-19-2012 , 10:01   Re: Protecting your server!
Reply With Quote #64

Quote:
Originally Posted by Xieus View Post
I would like to have know on what to do with certain situation like for you have been remove or cast out or formally known as "banned" with the unjust decision of certain people here. I like to have an appeal and be able to explain my side that I am not a spammer nor a bot. It' hard to make things clear certainly if you were not used with new rules and guidelines.
I honestly can't tell if you're a spam bot or not.

The guidelines for banning are decided by individual server owners. They can ban you for whatever reason they want.

My advice is, unless you have some lasting attachment to the server, just go to a different server.
__________________
Not currently working on SourceMod plugin development.
Powerlord is offline
xfirestorm
Member
Join Date: Mar 2012
Old 03-07-2013 , 07:04   Re: Protecting your server!
Reply With Quote #65

Don't know if this has been mentioned in those 7 pages, but you have an error at setting permissions in linux.

If you chmod 644 a dir, the dir will no longer be accessible by anyone. Dirs in linux need execute permissions for it to be accessible.

Example:
PHP Code:
[cserv@tantive ~]$ mkdir test
[cserv@tantive ~]$ touch test/test.sh
[cserv@tantive ~]$ echo "Hello world" test/test.sh
[cserv@tantive ~]$ cd test/
[
cserv@tantive test]$ ls
test
.sh
[cserv@tantive test]$ cd ..
[
cserv@tantive ~]$ cat test/test.sh
Hello world
[cserv@tantive ~]$ chmod 644 test
[cserv@tantive ~]$ cd test
-bashcdtestPermission denied
[cserv@tantive ~]$ cat test/test.sh
cat
test/test.shPermission denied
[cserv@tantive ~]$ rm -rf test
rm
cannot remove `test/test.sh': Permission denied
[cserv@tantive ~]$ chmod 755 test/
[cserv@tantive ~]$ rm -rf test
[cserv@tantive ~]$ 
What I would suggest, is make two users:
servrun (runs the server)
servupd (updates the server)
Then, the magic, so you don't fux up your execute permissions on dirs:
PHP Code:
chown -R servupd:servrun /path/to/server/
chmod -R g-w+/path/to/server/
chmod -R g+/path/to/server/install_dir/mod/<the dirs that need write permissionslogs,cache,addons/sourcemod/logs...> 
This way servupd user will have write permissions to the whole server install, so if you run your update script with that user you wont have trouble updating it, and the user that's running it will only have permissions to write in those dirs that you give it perms in the last command, plus you wont fux up your dirs in the process. ;)

If you want to further limit you can also remove all rights to "other" like so:
PHP Code:
chmod -R o-rwx /path/to/server
Just my 2 cents.

Last edited by xfirestorm; 03-07-2013 at 07:04.
xfirestorm is offline
Firewall_
Senior Member
Join Date: Aug 2012
Old 09-12-2014 , 04:43   Re: Protecting your server!
Reply With Quote #66

can someone update this tutorials for linux servers ^^ there are lots of new exploit for servers...
Firewall_ is offline
zmd94
Veteran Member
Join Date: Nov 2013
Location: Malaysia (9w2zow).
Old 09-12-2014 , 05:04   Re: Protecting your server!
Reply With Quote #67

Do you allow only STEAM player to play in your server?

Last edited by zmd94; 12-02-2014 at 04:17.
zmd94 is offline
bizzarre13
Member
Join Date: Jan 2014
Old 12-05-2014 , 04:53   Re: Protecting your server!
Reply With Quote #68

Hi, what is the best method to block flood?
The hacker use a linux vps and have installed udp perl that flood my server.
I tried dosp and daf and no effect, the server lag like hell.
bizzarre13 is offline
Reply


Thread Tools
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

Forum Jump


All times are GMT -4. The time now is 21:18.


Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Theme made by Freecode