security
play

Security Introduc*on How security is compromised Security - PDF document

4/28/14 CSE/ISE 311: Systems Administra5on CSE/ISE 311: Systems Administra5on Outline Security Introduc*on How security is compromised Security *ps


  1. 4/28/14 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ Outline ¡ Security ¡ • Introduc*on ¡ • How ¡security ¡is ¡compromised ¡ • Security ¡*ps ¡ Por*ons ¡courtesy ¡Ellen ¡Liu ¡ • Security ¡power ¡tools ¡ • Potpourri ¡ 20-­‑2 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ Introduc*on ¡ General ¡Consensus ¡ • Computer ¡Security ¡-­‑ ¡protec*on ¡of ¡an ¡automated ¡ • No ¡OS ¡is ¡secure. ¡Security ¡breaches ¡are ¡commonplace ¡ informa*on ¡system ¡in ¡order ¡to ¡preserve ¡the ¡ integrity, ¡availability ¡and ¡confiden*ality ¡of ¡ • Need ¡pa*ence, ¡vigilance, ¡knowledge, ¡persistence ¡ informa*on ¡system ¡resources, ¡including ¡hardware, ¡ from ¡all ¡user, ¡admin, ¡management ¡communi*es ¡ soIware, ¡firmware, ¡informa*on/data, ¡and ¡ • Security ¡is ¡an ¡ongoing ¡baSle ¡that ¡can ¡never ¡really ¡be ¡ telecommunica*ons ¡ won ¡ • CIA ¡Triad ¡ • Security ¡can ¡make ¡system ¡more ¡resistant ¡to ¡aSacks ¡ – Confiden*ality: ¡Data ¡confiden*ality, ¡privacy ¡ – Integrity: ¡Data ¡integrity, ¡system ¡integrity, ¡authen*city: ¡ • Security ¡oIen ¡means ¡less ¡convenience ¡and ¡more ¡ origin ¡integrity, ¡accountability/non ¡repudia*on: ¡ability ¡to ¡ constraints ¡to ¡users ¡ trace ¡a ¡security ¡breach ¡to ¡a ¡responsible ¡party ¡ – Availability ¡ 20-­‑3 ¡ 20-­‑4 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ How ¡Security ¡is ¡Compromised ¡ Social ¡Engineering ¡ There ¡are ¡many ¡vulnerabili*es, ¡threats, ¡risks, ¡ • Seemingly ¡legi*mate ¡personnel ¡or ¡colleague ¡ask ¡for ¡info ¡ • Phishing: ¡collect ¡info ¡via ¡decep*ve ¡emails, ¡instant ¡msgs ¡ and ¡aSacks. ¡We ¡will ¡focus ¡on ¡just ¡three ¡aspects ¡ • OIen ¡provide ¡vic*m-­‑specific ¡info ¡gleaned ¡elsewhere ¡to ¡ • Social ¡engineering ¡ appear ¡authen*c ¡and ¡earn ¡trust ¡ • SoIware ¡vulnerability ¡ • Need ¡site ¡policies ¡on ¡phone ¡dos ¡and ¡don’ts, ¡physical ¡ • Configura*on ¡errors ¡ security, ¡password ¡selec*on, ¡etc. ¡ • Many ¡organiza*ons ¡inform ¡users ¡that ¡administrators ¡will ¡ ¡ never ¡request ¡their ¡passwords. ¡Report ¡immediately ¡if ¡such ¡ incidents ¡occur ¡ ¡ 20-­‑5 ¡ 20-­‑6 ¡ 1 ¡

  2. 4/28/14 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ SoIware ¡Vulnerabili*es ¡ • Program ¡errors ¡or ¡context ¡dependencies ¡ • Buffer ¡overflow: ¡ allocate ¡a ¡fixed-­‑size ¡buffer ¡to ¡store ¡data, ¡ without ¡checking ¡the ¡actual ¡size ¡of ¡data ¡to ¡be ¡stored. ¡If ¡larger ¡ than ¡buffer ¡size, ¡it ¡overflows ¡/overwrites ¡adjacent ¡memory ¡ space, ¡may ¡crash ¡the ¡program ¡or ¡execute ¡arbitrary ¡code ¡ – Some ¡programming ¡systems ¡include ¡automa*c ¡checks ¡ ¡ • Input ¡valida*on ¡vulnerabili*es ¡ #!/usr/bin/perl open(htmlfile, “/var/www/html/$argv[0]”) or die “fail\n”; while(<htmlfile>) { print; } Evalua*on ¡of ¡1=1 ¡will ¡always ¡be ¡true ¡ close htmlfile; /* ¡*/ ¡enclose ¡comments ¡ $argv[0] is ¡a ¡user ¡input. ¡What ¡if ¡sb ¡enters ¡ ../../../etc/passwd ¡ -­‑-­‑ ¡precedes ¡a ¡comment ¡within ¡a ¡single ¡line ¡ 20-­‑7 ¡ 20-­‑8 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ Configura*on ¡Errors ¡ CentOS ¡Entering ¡GRUB ¡ ¡ ¡ • Security ¡vs. ¡convenience ¡ – E.g., ¡accounts ¡without ¡passwords, ¡disks ¡shared ¡with ¡the ¡ world, ¡unprotected ¡databases ¡ • Boot ¡loader ¡password ¡example ¡ – GRUB ¡can ¡be ¡configured ¡at ¡install ¡*me ¡to ¡require ¡a ¡ password, ¡admins ¡almost ¡always ¡decline ¡the ¡op*on ¡ – This ¡leaves ¡the ¡system ¡open ¡to ¡physical ¡aSack ¡ – With ¡a ¡password ¡means ¡if ¡the ¡system ¡is ¡rebooted, ¡say, ¡ aIer ¡a ¡power ¡outage, ¡an ¡admin ¡has ¡to ¡drive ¡to ¡work ¡to ¡ get ¡the ¡machine ¡up ¡and ¡running ¡again ¡ • Do ¡not ¡leave ¡ports ¡open ¡ ¡ 20-­‑9 ¡ 20-­‑10 ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ CSE/ISE ¡311: ¡Systems ¡Administra5on ¡ Security ¡Tips ¡ Patches ¡ • Patches ¡ • Keeping ¡the ¡system ¡updated ¡with ¡the ¡latest ¡patches ¡ • Unnecessary ¡services ¡ is ¡chore ¡of ¡the ¡highest ¡security ¡value ¡ • Remote ¡event ¡logging ¡ • A ¡recommended ¡patching ¡approach ¡includes: ¡ • Backups ¡ – A ¡regular ¡schedule ¡to ¡install ¡rou*ne ¡patches ¡ • Malware ¡(viruses, ¡worms, ¡Trojans, ¡rootkits) ¡ – A ¡change ¡plan ¡to ¡document ¡impact, ¡post-­‑installa*on ¡ • Packet ¡filtering, ¡passwords, ¡vigilance ¡ tes*ng ¡steps, ¡and ¡steps ¡to ¡back ¡out ¡the ¡changes ¡if ¡needed ¡ – Understand ¡what ¡patches ¡are ¡relevant ¡ ¡ • Keep ¡an ¡inventory ¡of ¡apps ¡and ¡OS ¡in ¡use ¡ • Subscribe ¡to ¡vendor-­‑specific ¡lists/blogs, ¡also ¡general ¡ones ¡such ¡as ¡ Bugtraq ¡ ¡ 20-­‑11 ¡ 20-­‑12 ¡ 2 ¡

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend