bash

Suche

Unten sind die Ergebnisse Ihrer Suche gelistet.

n8n installation with Docker Compose @en:linux
17 Treffer, Zuletzt geändert:
==== ==== 1.1 Uninstall old versions ==== <code bash> sudo apt-get remove docker docker-engine docker.... == 1.2.1 Update apt and activate HTTPS === <code bash> sudo apt-get update sudo apt-get install \ ... /code> === 1.2.2 Add Docker GPG Key === <code bash> sudo mkdir -m 0755 -p /etc/apt/keyrings curl -fs... cker.gpg </code> === 1.2.3 Repo setup === <code bash> echo \ "deb [arch=$(dpkg --print-architecture)
n8n installation with Docker Compose @en:linux:n8n
17 Treffer, Zuletzt geändert:
==== ==== 1.1 Uninstall old versions ==== <code bash> sudo apt-get remove docker docker-engine docker.... == 1.2.1 Update apt and activate HTTPS === <code bash> sudo apt-get update sudo apt-get install \ ... /code> === 1.2.2 Add Docker GPG Key === <code bash> sudo mkdir -m 0755 -p /etc/apt/keyrings curl -fs... cker.gpg </code> === 1.2.3 Repo setup === <code bash> echo \ "deb [arch=$(dpkg --print-architecture)
Helpful NMAP scanner commands @en:it-security
12 Treffer, Zuletzt geändert:
ommand Set ===== ==== Discover Hosts ==== <code bash> export IPRANGE='172.16.0.0/16' nmap -e tun0 -sn ... $IPRANGE </code> ==== Parse Results ==== <code bash> grep Up pingscan.gnmap | awk '{print$2}' > 172_1... s.txt </code> ==== Discover Services ==== <code bash> nmap -v -sSV -A -O -iL 172_16_ping_ips.txt </code> ==== Discover more Hosts ==== <code bash> nmap -PE -PS80,443,3389 -PP -PU40125,161 -PA21 -
Buffer overflow in the 64-bit stack - Part 3 @en:it-security:blog
12 Treffer, Zuletzt geändert:
docs.pwntools.com/en/stable/install.html)) <code bash> python3 -m pip install --upgrade pip python3 -m ... ion on Github in the Dependencies section. <code bash> /dir/to/socat TCP-LISTEN:2323,reuseaddr,fork EXE... e check where the path to the ''libc'' is: <code bash> ldd bof-part3 linux-vdso.so.1 (0x00007ff... find the offset for ''write()'' function: <code bash> readelf -s /lib/x86_64-linux-gnu/libc.so.6 | gre
Archives under Linux @en:linux
11 Treffer, Zuletzt geändert:
===== Archive format: [[wp>tar]] Unpack: <code bash>tar xfv [ARCHIVNAME].tar</code> Packing: <code bash>tar cfv [ARCHIVNAME].tar [VERZEICHNIS1] [VERZEICHNIS2] [DATEI1] [DATEI2]</code> List: <code bash>tar tfv [ARCHIVNAME].tar</code> ===== Ending: "g... " ===== Archive format: [[wp>gzip]] Pack: <code bash>tar cfvz [ARCHIV].tar.gz [VERZEICHNIS1] [DATEI1]<
Debian Distribution Upgrade - Squeeze to Wheezy @en:linux:debian
11 Treffer, Zuletzt geändert:
. display the current Debian version ===== <code bash> cat /etc/debian_version 6.0.7 </code> ===== 3. update packages ===== <code bash> apt-get update apt-get upgrade apt-get dist-upg... de> ===== 5. run the minimal update ===== <code bash> apt-get update apt-get upgrade </code> ===== 6... nel update ===== List the current kernel: <code bash> dpkg -l | grep linux-image </code> Sample outp
Update UnrealIRCD @en:linux
10 Treffer, Zuletzt geändert:
ion 6.1.0) ===== Importing GPG keys ===== <code bash> wget -O- https://raw.githubusercontent.com/unrea... d of x.x.x (e.g. unrealircd-6.1.0.tar.gz). <code bash> wget https://www.unrealircd.org/downloads/unreal... ar.gz </code> ===== Check integrity ===== <code bash> wget https://www.unrealircd.org/downloads/unreal... archive ===== Now we unpack the archive. <code bash> tar xfvz unrealx.x.x.tar.gz </code> ===== Stop
Buffer overflow in the 64-bit stack - part 1 @en:it-security:blog
10 Treffer, Zuletzt geändert:
ithub.com/longld/peda/blob/master/README)) <code bash> git clone https://github.com/longld/peda.git ~/p... d so that memory areas are not randomised. <code bash> echo 0 | sudo tee /proc/sys/kernel/randomize_va_... return 0; } </code> \\ \\ === Compile === <code bash> gcc -fno-stack-protector -z execstack bof.c -o b... ugger and generate a 200-character string: <code bash> gdb -q vulnerable pattern_create 200 in.bin r <
Buffer overflow in the 64-bit stack - Part 2 @en:it-security:blog
9 Treffer, Zuletzt geändert:
|kompilierte debug binary]] from the blog. <code bash> br *vuln+73 # setze Breakpoint r < in.txt... verflow_x64|Part 1]], we also need ropper. <code bash> sudo apt install ropper </code> \\ \\ ===== Deac... as base address as in the examples above. <code bash> gcc -fno-stack-protector -no-pie bof-part2.c -o ... s, we start ropper and display the gadgets <code bash> ropper --file bof-part2 ... 0x000000000040116a:
MySQL Backup under Linux @en:linux:mysql
9 Treffer, Zuletzt geändert:
we get the following instructions for use: <code bash> $ mysqldump Usage: mysqldump [OPTIONS] database ... ptions, use mysqldump --help </code> With <code bash>$ mysqldump --help</code> all available options ... abase, we simply use the following syntax: <code bash>$ mysqldump -u USER -p database USERDATABASE > us... ich is similar to the one described above: <code bash>$ mysqldump -u USER -p --all-databases > full_db.
Linux backup with tar @en:linux:backup
8 Treffer, Zuletzt geändert:
with "tar". You simply create an archive: <code bash> tar -cpvlf meinArchiv.tar /Pfad/zu/meinen/Origin... now compress the archive, e.g. with gzip: <code bash> gzip meinArchiv.tar </code> ===== md5sum ===== ... um of a file can be calculated as follows: <code bash> md5sum meinArchiv.tar.gz </code> After download... you always have the total with the backup: <code bash> md5sum meinArchiv.tar > meinArchiv.md5sum.txt </
Debian Fileserver with Samba @en:linux:samba
8 Treffer, Zuletzt geändert:
debian-linux/}} ===== Install Samba ===== <code bash> fserve ~:# apt-get install samba Reading packag... . </code> ===== Creating the groups ===== <code bash> fserve :~# addgroup smball fserve :~# addgroup ... s </code> ===== Create group folder ===== <code bash> fserve :~# mkdir /home/groupsmball fserve :~# m... ration ===== ==== Save configuration ==== <code bash>fserve ~:# cp /etc/samba/smb.conf /etc/samba/smb.
Set up iptables @en:linux
6 Treffer, Zuletzt geändert:
ommand lists all valid rules for iptables: <code bash> iptables -L </code> ===== Save rules to a file ===== <code bash> apt-get update apt-get install iptables-persiste... tivate rules in productive operation ===== <code bash> iptables-save > /etc/iptables.up.rules nano /etc... The following lines must be inserted here: <code bash> #!/bin/bash /sbin/iptables-restore < /etc/iptab
Privilege escalation: Windows admin thanks to Linux @en:it-security:blog
6 Treffer, Zuletzt geändert:
==== Now we can install ''chntpw'' using: <code bash> sudo apt install chntpw </code> \\ \\ ==== Find ... We are looking for the Windows partition. <code bash> sudo sfdisk -l </code> {{it-security:blog:scree... tion and create it in our $HOME directory. <code bash> mkdir ~/win </code> We then mount the partition. <code bash> sudo mount /dev/sda3 ~/win </code> Now we navig
Set up iptables @en:linux:firewall
6 Treffer, Zuletzt geändert:
ommand lists all valid rules for iptables: <code bash> iptables -L </code> ===== Save rules to a file ===== <code bash> apt-get update apt-get install iptables-persiste... tivate rules in productive operation ===== <code bash> iptables-save > /etc/iptables.up.rules nano /etc... The following lines must be inserted here: <code bash> #!/bin/bash /sbin/iptables-restore < /etc/iptab
Emulated Debian under VMWare @en:linux
5 Treffer, Zuletzt geändert:
Linux Commands Cheatsheet @en:linux
4 Treffer, Zuletzt geändert:
n8n installation and operation @en:linux
4 Treffer, Zuletzt geändert:
Manual OpenSSL update @en:linux
4 Treffer, Zuletzt geändert:
Backing up the sshd @en:linux
4 Treffer, Zuletzt geändert:
Set up SSL under Apache @en:linux:apache
4 Treffer, Zuletzt geändert:
Linux backup with rsync @en:linux:backup
4 Treffer, Zuletzt geändert:
Check and optimise mysql databases @en:linux:mysql
4 Treffer, Zuletzt geändert:
n8n installation and operation @en:linux:n8n
4 Treffer, Zuletzt geändert:
Manual OpenSSL update @en:linux:openssl
4 Treffer, Zuletzt geändert:
Autostart after Linux reboot @en:linux
3 Treffer, Zuletzt geändert:
Wallabag installation under Debian @en:linux
3 Treffer, Zuletzt geändert:
Shellcode Injection Part 1 @en:it-security:blog
3 Treffer, Zuletzt geändert:
retrofit mail command @en:linux:debian
3 Treffer, Zuletzt geändert:
Manual Froxlor Reload @en:linux:froxlor
3 Treffer, Zuletzt geändert:
Wallabag installation under Debian @en:linux:wallabag
3 Treffer, Zuletzt geändert:
Integration of Collabora Office in OwnCloud @en:linux
2 Treffer, Zuletzt geändert:
Integration of Collabora Office in OwnCloud @en:linux:owncloud
2 Treffer, Zuletzt geändert:
nmap SMBv1 Scan via Script @en:it-security
1 Treffer, Zuletzt geändert:
Backup Script Linux @en:linux
1 Treffer, Zuletzt geändert:
Kali Linuxc: apt error - File has unexpected size @en:linux
1 Treffer, Zuletzt geändert:
Postfix trivial rewrite problem @en:linux
1 Treffer, Zuletzt geändert:
Postfix Virtual Mailbox Limit @en:linux
1 Treffer, Zuletzt geändert:
Formatting Syntax @en:wiki
1 Treffer, Zuletzt geändert:
Courier with TLS connection @en:linux:courier
1 Treffer, Zuletzt geändert:
Kali Linuxc: apt error - File has unexpected size @en:linux:kali
1 Treffer, Zuletzt geändert:
MySQL Operating system error number 13 @en:linux:mysql
1 Treffer, Zuletzt geändert:
Change MySQL passwords @en:linux:mysql
1 Treffer, Zuletzt geändert: