How to create and configure linux service

How to create and configure linux service
In the previous post, we wrote an HTTP server script that has one drawback - it doesn't start automatically and doesn't work as a service. Here are the steps to configure it as a service in Linux. Script: We already have a startup script named web-server.py. Save it in the directory where it will be permanently stored.…

Jak utworzyć i skonfigurować usługi w Linuxie

Jak utworzyć i skonfigurować usługi w Linuxie
W poprzednim wpisie napisaliśmy skrypt serwera HTTP, który ma jedną wadę - nie uruchamia się automatycznie i nie dziala jako usługa. Po kolei teraz przedstawię kroki jak skonfigurować usługę w linuxie. Skrypt: Mamy już skrypt startowy, pod nazwą web-server.py. Zapisujemy go w katalogu, w którym będzie przechowywany na stałe. Ja wkleiłem go do ścieżki /root/ Uprawnienia do…

Simple HTTP server with 208 redirect in Python

Simple HTTP server with 208 redirect in Python
In today's post, I will show you how to start a simple web server that will be accessible within your network, and when users enter its address, they will be redirected to an external address. I created my web server on Debian, and it's written in Python. I used the Flask framework. The server will perform a…

Prosty serwer HTTP w Pythonie z przekierowaniem 308

Prosty serwer HTTP w Pythonie z przekierowaniem 308
W dzisiejszym wpisie pokażę wam jak uruchomić prosty web serwer, który będzie dostępny wewnątrz sieci i po wpisaniu jego adresu użytkownik zostanie przekierowany na adres zewnętrzny. Ja zrobiłem swój web serwer na Debianie i jest napisany w pythonie. Posłużyłem się frameworkiem Flask. Serwer będzie wykonywał przekierowanie na podany adres zewnętrzny. Na początek musimy zainstalować Python ( jeśli…

Uptime report – PowerShell

Uptime report – PowerShell
Following the post about the Defender status report in PowerShell, I decided to create a script that will generate a list of servers based on Active Directory data, just like in the previous case, and gather information about the current UpTime and last boot time. In the first step, we need to retrieve a list of computers…

Raport UpTime – PowerShell

Raport UpTime – PowerShell
Idąc w ślad za wpisem Raport ze statusem ochrony Defender w PowerShell postanowiłem zrobić skrypt, który przygotuje listę serwerów na podstawie danych z AD tak jak w poprzednim przypadku oraz pozyska informację o aktualnym UpTime oraz ostatnim czasie uruchomienia. W pierwszym kroku musimy pobrać listę komputerów lub serwerów. Jeśli mamy to gdzieś w pliku to możemy tej…

Status report of Defender – Powershell

Status report of Defender – Powershell
Today, I will present you with a script that will retrieve a list of servers from a specified OU in AD and display the status of individual protection options in Defender for them. In the first step, we need to fetch the list of computers or servers. If we have this list in a file, we can…

Raport ze statusem ochrony Defender – PowerShell

Raport ze statusem ochrony Defender – PowerShell
Dzisiaj zaprezentuję Wam skrypt, który pobierze z określonego OU w AD listę serwerów i wyświetli dla nich status poszczególnych opcji ochrony w Defenderze. W pierwszym kroku musimy pobrać listę komputerów lub serwerów. Jeśli mamy to gdzieś w pliku to możemy tej listy użyć. Ja jednak pobieram listę maszyn z AD. [crayon-6a01b792ed260543413864/] Zmienna $ComputerList będzie zawierała wszystkie hosty…

Exchange Online – report of mailboxes size – PowerShell

Having a large number of test mailboxes can benefit from a report that shows the size of all mailboxes. If you want to check an individual mailbox, you can do it with a single command. [crayon-6a01b792ed5cf558622643/] The result of this command will be: What if we have many mailboxes? I've written a script that allows checking the…

Exchange Online – statystyki rozmiaru skrzynek

Mając dużo skrzynek testowych może przydać się raport, który pokaże rozmiar wszystkich skrzynek mailowych. Jeśli zależy nam na sprawdzeniu pojedynczej skrzynki to można to zrobić z pomocą jednej komendy [crayon-6a01b792ed8e8989147175/] Wynikiem tego polecenia będzie A co jeśli mamy wiele skrzynek? Napisałem skrypt, który pozwoli na sprawdzenie rozmiarów wszystkich skrzynek i wyświetli je w raporcie. [crayon-6a01b792ed8ed422387925/] Wynikiem tego…