Skip to content

🔐 Karlo Luiten

Think Evil, DO Good

🔐 Karlo Luiten

Think Evil, DO Good

  • Home
  • About me
    • About me
    • LinkedIn
    • Guide to Karlo
  • SELinux cheat sheet
  • CISSP Reference
  • Contact
    • Home
    • 2020
    • January
CLI and tools

Upgrade dumb shell to interactive shell (tty)

karlo Jan 29, 2020 0 Comments

python -c 'import pty; pty.spawn("/bin/bash")' yay python

Uncategorized

Excel return last line of multi line cell

karlo Jan 27, 2020 0 Comments

=TRIM(RIGHT(SUBSTITUTE(B5,CHAR(10),REPT(" ";200));200)) Especially useful for project trackers. Add a LEFT(XXX;10) for returning dates.

Uncategorized

Keeping a (GitHub) fork up to date with upstream master

karlo Jan 26, 2020 0 Comments

1. Clone your fork: git clone git@github.com:YOUR-USERNAME/YOUR-FORKED-REPO.git 2. Add remote from original repository in your forked repository: cd into/cloned/fork-repo git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git git fetch upstream 3. Updating your…

Uncategorized

MySQL / MariaDB DB and user creation

karlo Jan 12, 2020 0 Comments

create user 'nextcloud'@'localhost' identified by 'xxx'; create database nextcloud; grant all privileges on nextcloud.* to 'nextcloud'@'localhost' identified by 'xxx'; FLUSH PRIVILEGES;

Uncategorized

AutoRecon over proxychains

karlo Jan 5, 2020 0 Comments

Since we have no icmp/ping over proxychains, we have to change syntax a bit ~/svn/proxychains-ng/proxychains4 -f ~/proxychains.conf ~/svn/AutoRecon/autorecon.py --nmap '\-sT \-Pn' 10.1.1.{1,224,235,246,248}

Uncategorized

Set scp port

karlo Jan 3, 2020 0 Comments

scp -P 80 … yes, capital P

Posts

  • Nextcloud / php / apache no error for Internal Server Error March 19, 2023
  • Proxmox LXC container disk shrink March 19, 2023
  • Friendly (ionice/nice) rsync on remote server March 17, 2023
  • LVM commands not found March 17, 2023
  • T-Mobile Thuis werkende SMTP 2023 (Fix Relay access denied) March 14, 2023
  • Upgrade to debian11 from 10 March 10, 2023
  • Simple SSH backup of routeros / mikrotik March 8, 2023
  • Proxmox VLANs ‘on a stick’ March 7, 2023
  • T-Mobile thuis (NL) Routeros/Mikrotik-configuratie (met VLANs) March 3, 2023
  • Mikrotik routeros various findings February 26, 2023
  • jq unix timestamp to datetime January 11, 2023
  • Bash script template October 28, 2022
  • Hash file in windows October 6, 2022
  • Fix: acosh defined in both go and assembly August 4, 2022
  • Indent HTML using tidy June 20, 2022
  • Github what repos have you contributed to (graphql) May 16, 2022
  • Debian VM as GW routing through VPN (tun) with nftables April 7, 2022
  • Guacamole broken (Creation of WebSocket tunnel to guacd failed) January 24, 2022
  • mount LVM2_member September 4, 2021
  • List all ansible facts (facter puppet) February 21, 2021

Meta

  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Posts

Uncategorized

Nextcloud / php / apache no error for Internal Server Error

Proxmox

Proxmox LXC container disk shrink

CLI and tools Linux

Friendly (ionice/nice) rsync on remote server

Debian

LVM commands not found

🔐 Karlo Luiten

Think Evil, DO Good

Copyright © All rights reserved | Blogus by Themeansar.