Main public logs

From IT-Arts.net

Combined display of all available logs of IT-Arts.net. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)
  • 07:34, 14 December 2025 Admin talk contribs created page SSLDUMP - Examples (Created page with "Category:Wiki == Basic Usage == The basic syntax of the `ssldump` command is as follows: <nowiki> ssldump [options] [host] [port]</nowiki> Here: * `host` specifies the target host. * `port` specifies the target port (default is 443 for HTTPS). == Commonly Used Options == * `-i <interface>`: Specifies the network interface to capture packets from (e.g., `eth0`, `wlan0`). * `-A`: Print all available SSL/TLS protocol messages. * `-d`: Enable the display of decode...")
  • 07:31, 14 December 2025 Admin talk contribs created page PFSENSE - NETSTAT Command (Created page with "Category:Wiki == Syntax == The basic syntax of the `netstat` command is: <nowiki> netstat [options] </nowiki> Where `[options]` can be any of the following flags, which modify the behavior of the command. == Common Options == * `-a` : Display all sockets (both listening and non-listening). * `-n` : Show numerical addresses instead of resolving hostnames. * `-r` : Show the routing table. * `-i` : Display network interfaces and their statistics. * `-s` : Display...")
  • 07:26, 14 December 2025 Admin talk contribs created page VIM - Manpage (Created page with "Category:Wiki == VIM ManPage == <nowiki> VIM(1) General Commands Manual VIM(1) NAME vim - Vi IMproved, a programmer's text editor SYNOPSIS vim [options] [file ..] vim [options] - vim [options] -t tag vim [options] -q [errorfile]...")
  • 07:23, 14 December 2025 Admin talk contribs created page VIM - Command Examples (Created page with "Category:Wiki === Opening and Closing Files === To open a file in Vim, use the following command: <nowiki> vim filename</nowiki> To open multiple files: <nowiki> vim file1 file2 file3</nowiki> To quit Vim: <nowiki> :q</nowiki> To save changes and exit: <nowiki> :wq</nowiki> To force quit without saving changes: <nowiki> :q!</nowiki> To save a file without exiting: <nowiki> :w</nowiki> === Moving the Cursor === Move the cursor word by word: <nowiki> w (...")
  • 07:19, 14 December 2025 Admin talk contribs deleted page VIM - Config (content was: "Category:Wiki == Script File == <nowiki> #!/bin/sh # # To run after VIM installation ##### Test pre-existent config file echo "/root/.vimrc test..." if [ -e ~/.vimrc ] then echo "# A previous Vim config file is present!" && # Backup previous config file echo "# Backup before updating..." && cp -v ~/.vimrc ~/.vimrc.BACKUP && # Append new conf to file echo "# Updating config file..." && echo "\" Remove auto VISUAL mode on mouse selection" >> ~/.vimrc && echo...")
  • 07:19, 14 December 2025 Admin talk contribs created page DEBIAN - Post-Install VIM (Created page with "Category:Wiki == Script File == <nowiki> #!/bin/sh # # To run after VIM installation ##### Test pre-existent config file echo "/root/.vimrc test..." if [ -e ~/.vimrc ] then echo "# A previous Vim config file is present!" && # Backup previous config file echo "# Backup before updating..." && cp -v ~/.vimrc ~/.vimrc.BACKUP && # Append new conf to file echo "# Updating config file..." && echo "\" Remove auto VISUAL mode on mouse selection" >> ~/.vimrc &...")
  • 07:18, 14 December 2025 Admin talk contribs created page VBOXMANAGE - Command Examples (Created page with "Category:Wiki The general syntax of the `VBoxManage` command is as follows: <nowiki> VBoxManage <subcommand> [options]</nowiki> Here, `<subcommand>` is one of the many available subcommands (e.g., `createvm`, `modifyvm`, `startvm`, etc.) and `[options]` are the relevant flags or parameters for the subcommand. == Creating a Virtual Machine == To create a new VM, use the `createvm` subcommand. You can specify parameters like the VM name, OS type, and storage settin...")
  • 07:13, 14 December 2025 Admin talk contribs deleted page ARISTA - BGP Commands (content was: "Category:Wiki ==Introduction== BGP (Border Gateway Protocol) is a standardized exterior gateway protocol designed to exchange routing information between different autonomous systems (ASes) on the internet. Below is a complete guide to BGP commands on Arista EOS, covering configuration, monitoring, and troubleshooting. ==Basic BGP Configuration== * '''router bgp <AS-number>'''...", and the only contributor was "Admin" (talk))
  • 07:12, 14 December 2025 Admin talk contribs created page ARISTA - BGP (Created page with "Category:Wiki ==Introduction== BGP (Border Gateway Protocol) is a standardized exterior gateway protocol designed to exchange routing information between different autonomous systems (ASes) on the internet. Below is a complete guide to BGP commands on Arista EOS, covering configuration, monitoring, and troubleshooting. ==Basic BGP Configuration== * '''router bgp <AS-number>''' - Enters BGP configuration mode for the specified Autonomous System (AS). * '''bgp...")
  • 07:11, 14 December 2025 Admin talk contribs created page PFSENSE - PFCTL Managing snort2c Table (Created page with "Category:Wiki == Checking the Contents of the Snort2c Table == To view the contents of the `snort2c` table, use the following command: <nowiki> pfctl -t snort2c -T show</nowiki> This will display all IP addresses that are currently in the Snort2c table. You may see IPs that are either part of a blocklist or involved in malicious activities detected by Snort. The output will include the IP address and timestamp of when it was added to the table. == Flushing the...")
  • 07:05, 14 December 2025 Admin talk contribs created page PFSENSE - PFCTL Basic Usage (Created page with "Category:Wiki == pfctl Command Overview == The `pfctl` command interacts with the PF firewall by managing states, rules, queues, and NAT configuration. It is a crucial tool for pfSense administrators who need to fine-tune firewall settings, troubleshoot issues, or examine the current state of the firewall. ### General Syntax <nowiki> pfctl [options]</nowiki> The options provide the functionality for various tasks such as listing rules, monitoring states, and man...")
  • 06:57, 14 December 2025 Admin talk contribs created page JITSI-MEET - Install On Ubuntu 24.4 (Created page with "Install required dependencies: <nowiki> sudo apt install -y wget curl gnupg2 lsb-release </nowiki> === Installing Jitsi Meet === 1. Add the Jitsi repository to your system: <nowiki> sudo curl https://download.jitsi.org/jitsi-key.gpg.key | sudo tee /etc/apt/trusted.gpg.d/jitsi.asc </nowiki> 2. Add the Jitsi repository to your list of sources: <nowiki> sudo sh -c 'echo "deb https://download.jitsi.org stable/") >> /etc/apt/sources.list.d/jitsi-stable.list' </nowiki>...")
  • 16:39, 13 December 2025 Admin talk contribs created page METASPLOIT - Pentest a Personnal Website (Created page with "Category:Wiki == Starting Metasploit == First, launch Metasploit's console to begin the penetration test: <nowiki> msfconsole </nowiki> == Information Gathering == Information gathering is the first phase of penetration testing, and Metasploit offers various auxiliary modules to gather valuable data about the target website. === Scanning for Open Ports === To find open ports on the target website's server, use the following auxiliary module: <nowiki> use auxilia...")
  • 16:32, 13 December 2025 Admin talk contribs created page METASPLOIT - Base Commands (Created page with "Category:Wiki == Advanced Metasploit CLI Commands == === Starting Metasploit Console === To start the Metasploit Framework console, use the following command: <nowiki> msfconsole </nowiki> This launches the Metasploit interactive console, where you can execute various commands for penetration testing. === Search for Exploits === To search for a specific exploit module or vulnerability in Metasploit: <nowiki> search <search_term> </nowiki> For example, to searc...")
  • 16:25, 13 December 2025 Admin talk contribs created page ARISTA - VXLAN Troubleshooting (Created page with "== Checking VXLAN Tunnel Status == To verify the status of VXLAN tunnels, use the following command: <nowiki> show vxlan tunnel </nowiki> This command shows information about the VXLAN tunnels including tunnel IDs, state, and the associated interfaces. == Checking VXLAN Interfaces == To view the VXLAN interface configuration: <nowiki> show running-configuration interface Vxlan1 </nowiki> This command will display the configuration of a specific VXLAN interface, such...")
  • 16:14, 13 December 2025 Admin talk contribs created page SNORT - Install On Ubuntu 24.4 (Created page with "Category:Wiki == Step 1: Update Your System == Start by ensuring your system's package list is up-to-date. Open a terminal and run the following commands: <nowiki> sudo apt update sudo apt upgrade -y </nowiki> This will update all the existing packages on your system. == Step 2: Install Required Dependencies == Snort requires several dependencies to compile and run. Install them by running the following command: <nowiki> sudo apt install -y build-essential cma...")
  • 16:03, 13 December 2025 Admin talk contribs created page FAIL2BAN - fail2ban-regex Manpage (Created page with "Category:Wiki == Quick Examples == <nowiki> fail2ban-regex -v /var/log/nginx/<VHOST>.access.log /etc/fail2ban/filter.d/<FILTER-NAME>.conf</nowiki> == fail2ban-regex Manpage == <noscript> FAIL2BAN-REGEX(1) User Commands FAIL2BAN-REGEX(1) NAME fail2ban-regex - test Fail2...")
  • 14:03, 13 December 2025 Admin talk contribs created page FAIL2BAN - Common-Web-Vulnerabilities (Created page with "Category:Wiki == Jail.conf == <nowiki> [common-web-vulns] enabled = true filter = web_vulns action = iptables-multiport[name=web_vulns, port="http,https"] logpath = /var/log/nginx/access.log # Or adjust based on your web server log path maxretry = 3 bantime = 3600 # 1 hour ban findtime = 600 # 10 minutes to check for repeated offenses</nowiki> == common-web-vulnerabilities.conf == <nowiki> [Definition] # Fail2Ban filter for detecting known web vulnera...")
  • 13:54, 13 December 2025 Admin talk contribs created page NMAP - Examples (Created page with "Category:Wiki == 3. Perform a Ping Sweep == To check which hosts are up in a subnet, use the `-sn` option to perform a ping sweep without port scanning: nmap -sn 192.168.1.0/24 == 4. Scan Specific Ports == If you're only interested in specific ports, you can specify them with the `-p` option: nmap -p 22,80,443 192.168.1.1 This command will only scan ports 22 (SSH), 80 (HTTP), and 443 (HTTPS). == 5. Service Version Detection == To detect service versions...")
  • 13:49, 13 December 2025 Admin talk contribs created page NC - Linux Netcat Guide (Created page with "Category:Wiki = Netcat Command Guide = Netcat, often abbreviated as `nc`, is a versatile networking tool in Linux used for reading from and writing to network connections using the TCP or UDP protocol. It can be used for port scanning, banner grabbing, transferring files, and creating network connections for testing or debugging. == Installation == Netcat is usually pre-installed on most Linux distributions. To check if it is installed, use: $ nc -v If it’s...")
  • 13:41, 13 December 2025 Admin talk contribs created page FAIL2BAN - fail2ban-client Manpage (Created page with "Category:Wiki == fail2ban-client Manpage == <nowiki> FAIL2BAN-CLIENT(1) User Commands FAIL2BAN-CLIENT(1) NAME fail2ban-client - configure and control the server SYNOPSIS fail2ban-client [OPTIONS] <COMMAND> DESCRIPTION Fail2Ban v1.1.0 reads log file that cont...")
  • 13:38, 13 December 2025 Admin talk contribs created page ARISTA - MLAG (Created page with "Category:Wiki ==Introduction== MLAG (Multi-Chassis Link Aggregation) is a network feature that allows two physical switches (MLAG peers) to present themselves as a single logical switch to the connected devices. This provides high availability, increased bandwidth, and redundancy without requiring a single switch to be a point of failure. Arista EOS supports MLAG, enabling the creation of a redundant, active-active link aggregation configuration. This guide covers...")
  • 13:36, 13 December 2025 Admin talk contribs created page ARISTA - SNMP (Created page with "Category:Wiki ==Introduction== SNMP (Simple Network Management Protocol) is a protocol used for network management. It allows network devices to be monitored and managed through the exchange of information between network devices (agents) and a central management station (SNMP manager). This guide provides the essential SNMP configuration commands for Arista EOS. ==SNMP Overview== Arista EOS supports SNMP for both monitoring and controlling network devices. It can...")
  • 13:33, 13 December 2025 Admin talk contribs created page ARISTA - VXLAN (Created page with "Category:Wiki ==Introduction== VXLAN (Virtual Extensible LAN) is a network virtualization technology that extends Layer 2 networks over a Layer 3 infrastructure. VXLAN is widely used in data center environments to enable scalable, multi-tenant networking, often in conjunction with technologies like EVPN (Ethernet VPN). This guide covers the VXLAN configuration commands for Arista EOS. ==VXLAN Overview== VXLAN encapsulates Layer 2 Ethernet frames in Layer 3 UDP pack...")
  • 13:31, 13 December 2025 Admin talk contribs created page ARISTA - BGP Commands (Created page with "Category:Wiki =Arista EOS BGP Command Guide= ==Introduction== BGP (Border Gateway Protocol) is a standardized exterior gateway protocol designed to exchange routing information between different autonomous systems (ASes) on the internet. Below is a complete guide to BGP commands on Arista EOS, covering configuration, monitoring, and troubleshooting. ==Basic BGP Configuration== * '''router bgp <AS-number>''' - Enters BGP configuration mode for the specified Aut...")
  • 13:29, 13 December 2025 Admin talk contribs created page ARISTA - Basic Commands (Created page with "Category:Wiki =Arista EOS Main Commands= ==Basic Configuration Commands== * '''enable''' - Enters privileged exec mode. * '''configure terminal''' or '''conf t''' - Enters global configuration mode. * '''show version''' - Displays EOS software version, device model, and hardware information. * '''show running-config''' - Displays the current active configuration. * '''show startup-config''' - Displays the configuration stored in NVRAM (startup config). * '''copy ru...")
  • 12:44, 13 December 2025 Admin talk contribs created page IT-Arts.net:Privacy policy (Created page with "== You are free to == * Share — copy and redistribute the material in any medium or format for any purpose, even commercially. * Adapt — remix, transform, and build upon the material for any purpose, even commercially.")
  • 15:39, 11 December 2025 Admin talk contribs deleted page Category:Post-It (content was: "[https://it-arts.net Return to IT-Arts.net] ---- '''wiki.it-arts.net''' is powered by the MediaWiki software, used by tens of thousands of websites and thousands of companies and organisations. <br /> It powers Wikipedia and also this website. <br /> MediaWiki helps you collect and organise knowledge and make it available to people. It's powerful, multilingual, free and open, exte...", and the only contributor was "Admin" (talk))
  • 09:33, 9 December 2025 Admin talk contribs deleted page File:It-arts.net-binary.png (Deleted old revision 20251209093259!It-arts.net-binary.png: content was: "", and the only contributor was "Admin" (talk))
  • 09:32, 9 December 2025 Admin talk contribs uploaded a new version of File:It-arts.net-binary.png
  • 09:23, 9 December 2025 Admin talk contribs deleted page File:It-arts.net-binary.png (Deleted old revision 20251209092330!It-arts.net-binary.png: content was: "", and the only contributor was "Admin" (talk))
  • 09:23, 9 December 2025 Admin talk contribs uploaded a new version of File:It-arts.net-binary.png
  • 09:19, 9 December 2025 Admin talk contribs deleted page File:It-arts.net-binary.png (Deleted old revision 20251209091933!It-arts.net-binary.png: content was: "", and the only contributor was "Admin" (talk))
  • 09:19, 9 December 2025 Admin talk contribs uploaded a new version of File:It-arts.net-binary.png
  • 09:06, 9 December 2025 Admin talk contribs created page File:Favicon.png
  • 09:06, 9 December 2025 Admin talk contribs uploaded File:Favicon.png
  • 09:05, 9 December 2025 Admin talk contribs created page File:It-arts.net-binary.png
  • 09:05, 9 December 2025 Admin talk contribs uploaded File:It-arts.net-binary.png
  • 17:43, 8 December 2025 Admin talk contribs deleted page NETWORK AND INFRASTRUCTURE CONSULTING (content was: "== CUSTOM-MADE SOLUTIONS FOR SME == More informations : [https://it-arts.net/index.php/IT-Arts.net:About About IT-Arts.net] == LINKS == <div style="column-count:3"> * [https://lists.it-arts.net BlockLists] * [https://matomo.it-arts.net Matomo] * [https://cloud.it-arts.net NextCloud] * [https://tube.it-arts.net PeerTube] * [https://it-arts.net/index.php/Category:Wiki Wiki] * [http...", and the only contributor was "Admin" (talk))
  • 17:43, 8 December 2025 Admin talk contribs deleted page IT-Arts.net (content was: "File:ascii-art.png == IT AND INFRASTRUCTURE NETWORK CONSULTING == Custom-made solutions for SME since 2019. More informations : [https://it-arts.net/index.php/IT-Arts.net:About About IT-Arts.net] == LINKS == <div style="column-count:3"> * [https://lists.it-arts.net BlockLists] * [https://matomo.it-arts.net Matomo] * [https://cloud.it-arts.net NextCloud] * [https://tube.it-ar...", and the only contributor was "Admin" (talk))
  • 17:36, 8 December 2025 Admin talk contribs protected MediaWiki:Mainpage [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 17:21, 8 December 2025 Admin talk contribs created page File:Ascii-art.png (IT and Infrastructure Network Consulting)
  • 17:21, 8 December 2025 Admin talk contribs uploaded File:Ascii-art.png (IT and Infrastructure Network Consulting)
  • 17:09, 8 December 2025 Admin talk contribs created page NETWORK AND INFRASTRUCTURE CONSULTING (Created page with "== NETWORK AND INFRASTRUCTURE CONSULTING == Custom-made solutions for SME since 2019. More informations : [https://it-arts.net/index.php/IT-Arts.net:About About IT-Arts.net] == LINKS == <div style="column-count:3"> * [https://lists.it-arts.net BlockLists] * [https://matomo.it-arts.net Matomo] * [https://cloud.it-arts.net NextCloud] * [https://tube.it-arts.net PeerTube] * [https://it-arts.net/index.php/Category:Wiki Wiki] * [https://it-arts.net/index.php/Category:Post-...")
  • 17:07, 8 December 2025 Admin talk contribs created page IT-Arts.net (Created page with "== NETWORK AND INFRASTRUCTURE CONSULTING == Custom-made solutions for SME since 2019. More informations : [https://it-arts.net/index.php/IT-Arts.net:About About IT-Arts.net] == LINKS == <div style="column-count:3"> * [https://lists.it-arts.net BlockLists] * [https://matomo.it-arts.net Matomo] * [https://cloud.it-arts.net NextCloud] * [https://tube.it-arts.net PeerTube] * [https://it-arts.net/index.php/Category:Wiki Wiki] * [https://it-arts.net/index.php/Category:Post-...")
  • 14:57, 8 December 2025 Admin talk contribs protected Category:Post-It [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite)
  • 14:56, 8 December 2025 Admin talk contribs protected Category:Wiki [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 14:56, 8 December 2025 Admin talk contribs protected Main Page [Edit=Allow only administrators] (indefinite) [Move=Allow only administrators] (indefinite) (hist)
  • 14:25, 8 December 2025 Admin talk contribs created page Category:Wiki (Created page with "This is the Wiki Page :")
  • 13:52, 8 December 2025 MediaWiki default talk contribs created page Main Page
(newest | oldest) View ( | older 50) (20 | 50 | 100 | 250 | 500)