Google Analytic

Perpustakaan Digital UiTM

Infografik 3 komponen utama Model perpustakaan digital UiTM.

Repositori UiTM

The repository is a platform that contains sources of reference materials for learning and research purposes. The UiTM Library provides three repositories that provide a collection of digital materials through the repository of university institutions, Open Access and Local Content Hub.

My Knowledge Management

MyKM Portal provide the complete information search, categorization and personalization services that allow UiTM Library users to harness the collected enterprise knowledge assets from a single, logical point of access.

UiTM Institutional Repository

UiTM IR is a centre of digital collections, act as an open-access repository that collects, preserve and disseminates scholarly output by university members at Universiti Teknologi MARA.

UiTM LIBRARY MOBILE APP

With the mobile app, you can access information wherever you are and whenever you want to get the latest information on our library, access e-resources and many more.

UiTM DIGITAL SERVICES

22 UiTM Digital Services

Showing posts with label Security. Show all posts
Showing posts with label Security. Show all posts

Tuesday, April 26, 2022

Digital Library Chit Chat Series 3: Keselamatan Dunia Digital


Program pada kali ini diadakan adalah dengan tujuan memberikan maklumat berkaitan Keselamatan di Dunia Digital kepada warga Perpustakaan UiTM dan warga UiTM. Ianya juga platform untuk memberikan informasi terkini  mengenai perkembangan Teknologi semasa, serta kaitannya dengan  kemudahan-kemudahan digital yang ada di Perpustakaan UiTM. 

Objektif Digital Chit Chat Series pada kali ini adalah bertujuan untuk meningkatkan kefahaman tentang Perkembangan Digital Technology semasa, meningkatkan tahap kompetensi staf Perpustakaan UiTM tentang penggunaan teknologi & Digital yang ada di Perpustakaan UiTM dan memberikan kefahaman & ilmu tentang Keselamatan Dunia Digital.


Program telah diadakan pada 27 April 2022, Rabu pada jam 10.00 pagi sehingga 12.00 tengah hari. Platform yang digunakan adalah Youtube dan Facebook Perpustakaan UiTM dan link seperti dibawah: 
Facebook: https://www.facebook.com/libraryuitm/videos/1339888809755447
Penceramah :-En Kamaruddin Bin Mahad , Pegawai Teknologi Maklumat Kanan, Bahagian              Keselamatan ICT, Infostruktur UiTM
Moderator : -Tn. Hj. Ahmad  Faizar Jaafar, Pegawai Jabatan Perpustakaan Digital
 
Rujukan       
Keselamatan digital penting ke arah negara digital Oktober 13, 2019 https://www.bharian.com.my/berita/nasional/2019/10/617147/keselamatan-digital-penting-ke-arah-negara-digital
Keselamatan di Dunia Digital
https://www.denetim.com/ms/hizmetler/stratejik-risk-yonetimi/dijital-dunyada-guvenlik/
Keselamatan Siber Dan Tindak Balas Serta Pemulihan Bencana https://www.malaysia.gov.my/portal/subcategory/257?language=my
Rangka Kerja Keselamatan Siber Sektor Awam (RAKKSSA)
https://www.nacsa.gov.my/doc/RAKKSSA-VERSI-1-APRIL-2016-BM.pdf
Panduan Keibubapaan Siber
https://www.nacsa.gov.my/doc/keibubapaansiber.pdf
 
Sekitar Digital Library Chit Chat Series : Keselamatan Dunia Digital 
https://library.uitm.edu.my/en/pages/upcoming-events/latest-at-ptar/107-announcement/703-keselamatan-dunia-digital
  
#Digital  #digitalMalaysia #DigitalSecurity #DigitalLibrary
 
 
 
 
 



Friday, June 17, 2011

PANDUAN PEMASANGAN &KONFIGURASI MOD_SECURITY BAGI APACHE

Apache_logo

Kepada pengguna server web Apache boleh kemaskinikan Mod_Security

Mod_Security adalah merupakan open source firewall bagi aplikasi web yang digunakan bersama-sama dengan server web Apache bagi menangani serangan DDoS HTTP. Mod_Security boleh digunakan pada server web Apache 1.3.x dan 2.0.x

PEMASANGAN MOD_SECURITY PADA WINDOWS APACHE 2

1. Muat turun versi terkini mod_security untuk Ms Windows di URL http://www.apachelounge.com/download/mods/mod_security-2.6.0-win32.zip

2. Cipta folder ‘/modules/mod_security2’ pada Apache dan salin fail-fail‘pcre.dll’, ‘libxml2.dll’ dan ‘mod_security2.so’ ke folder tersebut.

3. Muat turun fail ‘http://www.modsecurity.org/download/modsecurity-core-rules_2.5-1.6.1.tar.gz’ dan ekstrak fail berkenaan ke folder ‘/conf/modsecurity’ pada Apache.

4. Memasang aplikasi ‘Visual C++ 2008 Redistributable Package’.

 

KONFIGURASI MOD_SECURITY

5. Edit fail ‘httpd.conf’ bagi memasang modul Mod_Security pada Apache

# Memasang Mod_Security

LoadModule security2_module modules/mod_security2/mod_security2.so

LoadModule unique_id_module modules/mod_unique_id.so

<IfModule mod_security.c>

# Basic configuration options

SecRuleEngine On

SecRequestBodyAccess On

SecResponseBodyAccess Off

SecDefaultAction log,auditlog,deny,status:403,phase:2,t:lowercase,t:replaceNulls,t:compressWhitespace

SecAuditEngine RelevantOnly

SecAuditLogType Serial

SecAuditLog logs/mod_security2.log

# Handling of file uploads

# SecUploadDir /opt/apache-frontend/tmp/

SecUploadKeepFiles Off

# Debug log

SecDebugLog logs/modsec_debug.log

SecDebugLogLevel 0

# Maximum request body size we will

# accept for buffering

SecRequestBodyLimit 131072

# Store up to 128 KB in memory

SecRequestBodyInMemoryLimit 131072

# Buffer response bodies of up to

# 512 KB in length

SecResponseBodyLimit 524288

## General rules

SecRule ARGS "c:/" t:normalisePathWin

SecRule ARGS "\.\./" "t:normalisePathWin,id:99999,severity:4,msg:'Drive Access'"

SecRule ARGS "d:/" t:normalisePathWin

</IfModule>

Include conf/modsecurity/*.conf

 

MENGAKTIFKAN MOD_SECURITY

6. Restart Apache untuk mengaktifkan Mod_Security