Search found 73 matches

by compucated
Tue Apr 06, 2010 10:15 pm
Forum: Administration
Topic: load balancing
Replies: 10
Views: 9597

4.2. Routing for multiple uplinks/providers
by compucated
Tue Oct 21, 2008 11:28 pm
Forum: Programming
Topic: PHP + Bash script
Replies: 8
Views: 19194

what if i wrote "blah; rm /etc/passwd" in the text field? I love your witty reply :lol: httpd.log > Permission Denied Nothing happen, with default http configuration, as none of http server running as root by default, and in case http server is running with root permissions (not recommend...
by compucated
Tue Oct 21, 2008 6:30 pm
Forum: Programming
Topic: PHP + Bash script
Replies: 8
Views: 19194

Don't know either you are not going at right way with PHP coding (as you posted just html code), or don't want to post your php code. Anyway, you don't need to send your variables toward bash script to execute, you can also execute your php variable directly. i.e. exec("echo $php-variable"...
by compucated
Mon Oct 20, 2008 4:06 pm
Forum: Security
Topic: ARP Poisoning
Replies: 73
Views: 122038

Well, I am extremely sorry to sound critical but the one looking / claiming to find/develop single side solution to prevent ARP poisoning is either not read throughly about how Address Resolution Protocol/ARP Poisoning works or not understood them for some reasons. http://d.imagehost.org/0433/HOST-A...
by compucated
Wed Oct 15, 2008 3:04 pm
Forum: Administration
Topic: Shaper script.
Replies: 16
Views: 22301

I know it is an altered version of your script, as its open source every one is free to alter stuff and they can put their name on it. So if you want your work not to be used or altered then complie it and then distribute it. I appreciate your polite attitude, however you have some misconception to...
by compucated
Tue Oct 14, 2008 10:07 pm
Forum: Administration
Topic: Shaper script.
Replies: 16
Views: 22301

Posting this just to thing make straight: >>that script is created by hamid khan , compucated something his id on linuxpakistan. My name is Hamid Ashraf, not the Khan at last. >> he suggest his script some other post and compiled his main bash script >> with shc, so no one knows what is inside that,...
by compucated
Thu Aug 30, 2007 1:46 am
Forum: General
Topic: Need some information
Replies: 4
Views: 7994

Re: Need some information

dont know what /dev/null means... dev/null: On UNIX, this is a virtual-file that can be written to. Data written to this file gets discarded. It is similar to the file call NUL on Windows machines. Key point: When rooting a machine, intruders will often redirect logging to /dev/null For example, th...
by compucated
Sun Aug 26, 2007 12:58 am
Forum: Security
Topic: how to block MSN Sniffer
Replies: 21
Views: 38869

well, first take a look at Sniffers: Basics and Detection http://cns.tstc.edu/cpate/LINUX/Linux_How2/Sniffers.htm for better understanding. The packets of MSN Messenger are sent over the network in cleartext form which make it highly insecure, its better to use some encrypting application to secure ...
by compucated
Sat May 12, 2007 11:43 pm
Forum: Administration
Topic: load balance 2 DSL Modem in one server
Replies: 17
Views: 45754

http://lartc.org/howto/
Read whole document for better understanding and section 4.2. (Routing for multiple uplinks/providers) to get more specific.
by compucated
Thu May 10, 2007 6:20 pm
Forum: Administration
Topic: Machine maintinance.
Replies: 3
Views: 5922

Re: Machine maintinance.

How do i run defragment on partitions http://defragfs.sourceforge.net/index.html My swap is 2gb but any time it only show around 200K used Swap is only used when no physical memory is available so its normal with high physical memory systems How do i monitor physical memeory usage. man free It's im...
by compucated
Thu May 10, 2007 5:24 pm
Forum: Security
Topic: Multiple MAC's
Replies: 2
Views: 7589

Not possible with static arp entries level (FIX ME). However what about to deal this situation with iptables? iptables -t mangle -I PREROUTING -s 12.12.12.12 -m mac --mac-source xx:xx:xx:xx:xx:01 -j ACCEPT iptables -t mangle -I PREROUTING -s 12.12.12.12 -m mac --mac-source xx:xx:xx:xx:xx:02 -j ACCEP...
by compucated
Sun Apr 29, 2007 1:22 am
Forum: Security
Topic: MAC Address Filtering
Replies: 16
Views: 33564

beside the fact & amaze, the fact, these scripts were wrote by me several years ago when I was novice with scripting and amaze to see that I never distribute my those novice work so how they reach to you? anyway, the problem in your case is, there are garbage characters in fourth line of mac.add...
by compucated
Sun Apr 29, 2007 12:56 am
Forum: Administration
Topic: Traffic
Replies: 2
Views: 5260

what sort of scenario do you have? , is that your desktop machine or some kind of server setup? At desktop machine you can make cap with your download client, for example you can use --limit-rate= option with wget. With server scenario you can make an super cap at squid with delay pool feature. Just...
by compucated
Sun Apr 29, 2007 12:42 am
Forum: Installation
Topic: HP ProLiant DL360 G5 Server series Installation
Replies: 23
Views: 31095

You have to download HP SmartStart bootable CD to configure array.
visit http://h18013.www1.hp.com/products/serv ... index.html for more info.
by compucated
Sat Apr 28, 2007 2:15 am
Forum: Security
Topic: MAC Address Filtering
Replies: 16
Views: 33564

And one more thing. I just want to know what does the following lines do.... iptables -t mangle -F maccheck iptables -t mangle -X maccheck iptables -t mangle -N maccheck iptables -t mangle -I PREROUTING -i eth2 -p tcp -j maccheck iptables -t mangle -A maccheck -j MARK --set-mark 1 iptables -t mangl...