Presentation is loading. Please wait.

Presentation is loading. Please wait.

CSCE 815 Network Security Lecture 23 Jails and such April 15, 2003.

Similar presentations


Presentation on theme: "CSCE 815 Network Security Lecture 23 Jails and such April 15, 2003."— Presentation transcript:

1 CSCE 815 Network Security Lecture 23 Jails and such April 15, 2003

2 – 2 – CSCE 815 Sp 03 Network Administrator Tools Network Administration tools (MSDOS/Windows) ipconfig ifconfig netstat /etc/… not really tools as much as files /sbin/… Find ethernet/IP addresses More tools http://newsforge.com/newsforge/02/12/12/0232235.shtml?tid= 23 http://newsforge.com/newsforge/02/12/12/0232235.shtml?tid= 23

3 – 3 – CSCE 815 Sp 03 ARP Spoofing Revisited Linux World /sbin arp Iptables, ipchains, ipfwadm Arp comand –print the table Ping somewhere then use arp to look at the table again

4 – 4 – CSCE 815 Sp 03 Firewall Limitations cannot protect from attacks bypassing it eg sneaker net, utility modems, trusted organisations, trusted services (eg SSL/SSH) cannot protect against internal threats eg disgruntled employee cannot protect against transfer of all virus infected programs or files because of huge range of O/S & file types

5 – 5 – CSCE 815 Sp 03 Firewalls – Packet Filters

6 – 6 – CSCE 815 Sp 03 Firewalls – Packet Filters simplest of components foundation of any firewall system examine each IP packet (no context) and permit or deny according to rules hence restrict access to services (ports) possible default policies that not expressly permitted is prohibited that not expressly prohibited is permitted

7 – 7 – CSCE 815 Sp 03 Firewalls – Packet Filters

8 – 8 – CSCE 815 Sp 03 Firewalls with IPtables (Linux) IPtablesIPchainsNetfilter “10 minutes to an iptables-based Linux firewall” by Joshua Drake Joshua DrakeJoshua Drake http://www.linuxworld.com/site-stories/2001/0920.ipchains.html “Taming the Wild Netfilter” September 01, 2001 by David A. Bandel David A. BandelDavid A. Bandel http://www.linuxjournal.com/article.php?sid=4815

9 – 9 – CSCE 815 Sp 03 Firewalls with IPtables (Linux) [root@jd root]# /sbin/iptables -h iptables v1.2.1 Usage: iptables -[ADC] chain rule-specification [options] iptables -[RI] chain rulenum rule-specification [options] iptables -D chain rulenum [options] iptables -[LFZ] [chain] [options] iptables -[NX] chain iptables -E old-chain-name new-chain-name iptables -P chain target [options] iptables -h (print this help information) Commands: Either long or short options are allowed. --append -A chain Append to chain --delete -D chain Delete matching rule from chain --delete -D chain rulenum [...]

10 – 10 – CSCE 815 Sp 03 Firewalls with IPtables (Linux) No incoming traffic (tcp connections) /sbin/iptables -A INPUT -p tcp --syn -j DROP Accept incoming SSH (port 22) why? /sbin/iptables -A INPUT -p tcp --syn -s 192.168.1.110/32 -- destination-port 22 -j ACCEPT /sbin/iptables -A INPUT -p tcp --syn -j DROP Add rule to allow a web server to the chain /sbin/iptables -A INPUT -p tcp --syn -s 192.168.1.110/32 -- destination-port 22 -j ACCEPT /sbin/iptables -A INPUT -p tcp --syn --destination-port 80 -j ACCEPT /sbin/iptables -A INPUT -p tcp --syn -j DROP

11 – 11 – CSCE 815 Sp 03 Chroot Jails References: http://librenix.com/ general purpose security/Linux site http://librenix.com/ http://www.gsyc.inf.uc3m.es/~assman/jail/index.html chroot environment:

12 – 12 – CSCE 815 Sp 03 Chroot Implementation

13 – 13 – CSCE 815 Sp 03 User-mode Linux UML (binding problem) http://user-mode-linux.sourceforge.net/ creates a virtual Machine allows you to run multiple instances of Linux on the same system at the same time designed for a variety of purposes, such as kernel debugging, testing applications

14 – 14 – CSCE 815 Sp 03 Firewalls – Stateful Packet Filters examine each IP packet in context keeps tracks of client-server sessions checks each packet validly belongs to one better able to detect bogus packets out of context

15 – 15 – CSCE 815 Sp 03 Firewalls - Application Level Gateway (or Proxy)

16 – 16 – CSCE 815 Sp 03 Firewalls - Application Level Gateway (or Proxy) use an application specific gateway / proxy has full access to protocol user requests service from proxy proxy validates request as legal then actions request and returns result to user need separate proxies for each service some services naturally support proxying others are more problematic custom services generally not supported

17 – 17 – CSCE 815 Sp 03 Firewalls - Circuit Level Gateway

18 – 18 – CSCE 815 Sp 03 Firewalls - Circuit Level Gateway relays two TCP connections imposes security by limiting which such connections are allowed once created usually relays traffic without examining contents typically used when trust internal users by allowing general outbound connections SOCKS commonly used for this

19 – 19 – CSCE 815 Sp 03 Bastion Host highly secure host system potentially exposed to "hostile" elements hence is secured to withstand this may support 2 or more net connections may be trusted to enforce trusted separation between network connections runs circuit / application level gateways or provides externally accessible services

20 – 20 – CSCE 815 Sp 03 Firewall Configurations

21 – 21 – CSCE 815 Sp 03 Firewall Configurations

22 – 22 – CSCE 815 Sp 03 Firewall Configurations

23 – 23 – CSCE 815 Sp 03 Access Control given system has identified a user determine what resources they can access general model is that of access matrix with subject - active entity (user, process) object - passive entity (file or resource) access right – way object can be accessed can decompose by columns as access control lists rows as capability tickets

24 – 24 – CSCE 815 Sp 03 Access Control Matrix

25 – 25 – CSCE 815 Sp 03 Trusted Computer Systems information security is increasingly important have varying degrees of sensitivity of information cf military info classifications: confidential, secret etc subjects (people or programs) have varying rights of access to objects (information) want to consider ways of increasing confidence in systems to enforce these rights known as multilevel security subjects have maximum & current security level objects have a fixed security level classification

26 – 26 – CSCE 815 Sp 03 Bell LaPadula (BLP) Model one of the most famous security models implemented as mandatory policies on system has two key policies: no read up (simple security property) a subject can only read/write an object if the current security level of the subject dominates (>=) the classification of the object no write down (*-property) a subject can only append/write to an object if the current security level of the subject is dominated by (<=) the classification of the object

27 – 27 – CSCE 815 Sp 03 Reference Monitor

28 – 28 – CSCE 815 Sp 03 Evaluated Computer Systems governments can evaluate IT systems against a range of standards: TCSEC, IPSEC and now Common Criteria define a number of “levels” of evaluation with increasingly stringent checking have published lists of evaluated products though aimed at government/defense use can be useful in industry also

29 – 29 – CSCE 815 Sp 03 Summary have considered: firewalls types of firewalls configurations access control trusted systems

30 – 30 – CSCE 815 Sp 03 References Librenix: http://librenix.comfirewalls types of firewalls configurations access contro Newsforge: http://newsforge.com/newsforge


Download ppt "CSCE 815 Network Security Lecture 23 Jails and such April 15, 2003."

Similar presentations


Ads by Google