Bài đăng

How to setup an xRDP server on Ubuntu 18.04

Hình ảnh
Most of the tutorials on setting up an xRDP server are based on the older vesions. This tutorial definitely works on Ubuntu 18.04 I am using XFCE as my desktop environment as its light on resources and I don’t always have good internet connection when working remotely. You can choose other environemnt of your choice, like MATE. Note — xRDP has problems working with Unity and GNOME desktop environment. Step 0- Connecting to remote server vivek@Teega:~$ ssh username@r emoteServerIP username @r emoteServerIP's password: ***** Step 1- Install xRDP sudo apt-get update sudo apt-get install xrdp Step 2- Install preferred desktop environment # XFCE sudo apt-get install xfce4 #Optional stuff sudo apt-get install xfce4-terminal sudo apt-get install gnome-icon-theme-full tango-icon-theme or # MATE sudo apt-get install mate-core mate-desktop-environment mate-notification-daemon Step 3- Tell xRDP to use your environment # XFCE sudo sed -i.bak '/fi/a #xrdp multiple u

[CISSP] Types of Access Control

Access controls are necessary to protect the  confidentiality, integrity, and  availability  of objects (and by extension, their information and data). The term access control is used to describe a broad range of controls, from forcing a user to provide a valid username and password to log on to preventing users from gaining access to a resource outside of their sphere of access. Access controls can be divided into the following seven categories of function or purpose. You should notice that some security mechanisms can be labeled with multiple function or purpose categories. Preventative access control  A preventative access control is deployed to stop unwanted or unauthorized activity from occurring. Examples of preventative access controls include fences, locks, biometrics, mantraps, lighting, alarm systems, separation of duties, job rotation, data classification, penetration testing, access control methods, encryption, auditing, presence of security cameras or closed circuit tel

Install Wazuh OSSEC with ELK stack

Hình ảnh
If you have been following my blog you know that I am trying to increase my Incident Response(IR) skillz and experience. For a class project we had to create/improve a piece of software in the forensic community for Windows(Windows forensic class). From my short time of searching the internet I never found a guide to setting up a logging system for Windows from start to finsh. An effective logging system has an agent/collector, a log aggregator, a data visualizer, and a good alerting mechnism. The following sytem I have setup has Wazuh(OSSEC fork) for log collection, Wazuh Management for a log aggregator, the ELK stack for data retention and vizualiztion, and elastalert for e-mail alerting. In this guide I will walk you through on how to setup an effective logging system for all operating systems but mainly Windows for free. Additionally, we will be discussing the type of things that should be logged depending on your enviornment. As final note I have included  my github repo  a

How To Install and Configure Grafana to Plot Beautiful Graphs from Zabbix on CentOS 7

Hình ảnh
Introduction Zabbix is a great monitoring tool that collects data from servers, virtual machines, and other kinds of network devices so you can analyze it for trends or problems. It has feature-rich notifications on emerging issues, but the built-in tools for data analysis and visualization are not easy to use. You can combine graphs into dashboards, but first you need to create them, and there is practically no easy way to create graphs that display real-time data. Also,to there is no way to collect data from different hosts onto a single graph. While the situation is getting better with each new release, it is far from ideal. Grafana is a good alternative to Zabbix's dashboards. It lets you create graphs and dashboards based on data from various monitoring systems, and it specializes in the display and analysis of this data. It is lightweight, easy to install, and it looks beautiful. In this tutorial, you'll install Grafana and configure it to display data from Zabbix,