User contributions for Admin
From IT-Arts.net
14 December 2025
- 07:4507:45, 14 December 2025 diff hist +13 TOP - Manpage No edit summary
- 07:4507:45, 14 December 2025 diff hist +108,367 N TOP - Manpage Created page with "[[]] == top Manpage == <nowiki> TOP(1) User Commands TOP(1) NAME top - display Linux processes SYNOPSIS top [options] DESCRIPTION The top program provides a dynamic real-time view of a running system. It can display system summary infor..."
- 07:4307:43, 14 December 2025 diff hist +4,242 N TOP - Basic Usage Created page with "Category:Wiki == Command Output == When you run `top`, the output is divided into two sections: * **Summary Area**: Displays overall system information. * **Task Area**: Displays a list of running processes. === Summary Area === The top part of the display shows summary information about the system, including: * **uptime**: Time the system has been running. * **user tasks**: Number of user processes. * **system tasks**: Number of system processes. * **load averag..."
- 07:3507:35, 14 December 2025 diff hist +13 SSLDUMP - Manpage No edit summary
- 07:3507:35, 14 December 2025 diff hist +17,448 N SSLDUMP - Manpage Created page with "[[]] == ssldump Manpage == <nowiki> SSLDUMP(1) General Commands Manual SSLDUMP(1) NAME ssldump - dump SSL traffic on a network SYNOPSIS ssldump [ -aAdeFHjnNPqtTvxXyz ] [ -i interface ] [ -k keyfile ] [ -l sslkeylogfile ] [ -p password ] [ -r dumpfil..."
- 07:3407:34, 14 December 2025 diff hist +5,029 N 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:3107:31, 14 December 2025 diff hist +4,693 N 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:2607:26, 14 December 2025 diff hist +19,819 N 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:2407:24, 14 December 2025 diff hist −30 VIM - Command Examples No edit summary
- 07:2307:23, 14 December 2025 diff hist +5,072 N 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:1907:19, 14 December 2025 diff hist +886 N 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:1107:11, 14 December 2025 diff hist +4,032 N 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:0707:07, 14 December 2025 diff hist −36 PFSENSE - PFCTL Basic Usage No edit summary
- 07:0607:06, 14 December 2025 diff hist +775 PFSENSE - PFCTL Basic Usage No edit summary
- 07:0507:05, 14 December 2025 diff hist +5,616 N 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..."
13 December 2025
- 16:4016:40, 13 December 2025 diff hist +13 METASPLOIT - Pentest a Personnal Website No edit summary
- 16:4016:40, 13 December 2025 diff hist −646 METASPLOIT - Pentest a Personnal Website No edit summary
- 16:3916:39, 13 December 2025 diff hist +4,362 N 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:3516:35, 13 December 2025 diff hist −1 METASPLOIT - Base Commands No edit summary
- 16:3316:33, 13 December 2025 diff hist −94 METASPLOIT - Base Commands No edit summary
- 16:3216:32, 13 December 2025 diff hist +6,735 N 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:2716:27, 13 December 2025 diff hist −37 ARISTA - VXLAN Troubleshooting No edit summary current
- 16:2616:26, 13 December 2025 diff hist +37 ARISTA - VXLAN Troubleshooting No edit summary
- 16:2516:25, 13 December 2025 diff hist +5,155 N 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:2316:23, 13 December 2025 diff hist −3,213 ARISTA - VXLAN No edit summary
- 16:1816:18, 13 December 2025 diff hist −375 ARISTA - VXLAN No edit summary
- 16:1416:14, 13 December 2025 diff hist +4,316 N 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:1316:13, 13 December 2025 diff hist −3,957 DEBIAN - Post-Install Script Undo revision 463 by Admin (talk) Tags: Replaced Undo
- 16:1216:12, 13 December 2025 diff hist +3,957 DEBIAN - Post-Install Script No edit summary Tag: Reverted
- 16:0316:03, 13 December 2025 diff hist −4 FAIL2BAN - fail2ban-regex Manpage No edit summary
- 16:0316:03, 13 December 2025 diff hist +4,432 N 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..."
- 13:5513:55, 13 December 2025 diff hist −65 NMAP - Examples No edit summary
- 13:5413:54, 13 December 2025 diff hist +4,712 N 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:5013:50, 13 December 2025 diff hist −265 NC - Linux Netcat Guide No edit summary
- 13:5013:50, 13 December 2025 diff hist −343 NC - Linux Netcat Guide No edit summary
- 13:5013:50, 13 December 2025 diff hist −26 NC - Linux Netcat Guide No edit summary
- 13:4913:49, 13 December 2025 diff hist +4,596 N 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:4113:41, 13 December 2025 diff hist +13,032 N 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:3813:38, 13 December 2025 diff hist +8,016 N 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:3613:36, 13 December 2025 diff hist +7,469 N 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:3313:33, 13 December 2025 diff hist +7,416 N 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..."
- 12:4412:44, 13 December 2025 diff hist +224 N 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." current
- 06:3306:33, 13 December 2025 diff hist +4 Main Page No edit summary
11 December 2025
- 15:3915:39, 11 December 2025 diff hist −59 Main Page No edit summary
- 15:3715:37, 11 December 2025 diff hist −3 m MIKROTIK - Bruteforce SSH Firewall Rules Text replacement - "Category:Post-It" to "Category:Wiki"
- 15:2315:23, 11 December 2025 diff hist −3 m CISCO-ASA - Traffic Capture Setup Text replacement - "Category:Post-It" to "Category:Wiki"
- 08:0108:01, 11 December 2025 diff hist +2 Main Page No edit summary
- 08:0108:01, 11 December 2025 diff hist −4 Main Page No edit summary
10 December 2025
- 10:0610:06, 10 December 2025 diff hist −12 Main Page No edit summary
- 10:0410:04, 10 December 2025 diff hist −3 m MDK4 - Manpage Text replacement - "Category:Post-It" to "Category:Wiki"
