To pass wireguard's traffic through a TCP tunnel by using udp2raw
For Arch linux, install udp2raw by pacman:
pacman -S udp2raw
For Debian or Ubuntu, you can use a binary release from: https://github.com/wangyu-/udp2raw/releases
To pass wireguard's traffic through a TCP tunnel by using udp2raw
For Arch linux, install udp2raw by pacman:
pacman -S udp2raw
For Debian or Ubuntu, you can use a binary release from: https://github.com/wangyu-/udp2raw/releases
| //Moved to https://github.com/Incognito-Lab/Frida-WebView-Inspector | |
| //frida -U "<ProcessName>" -l Android_WebView_inspector.js | |
| let Webview = Java.use("android.webkit.WebView"); | |
| // inspect settings of android.webkit.WebView class | |
| Java.choose("android.webkit.WebView", { | |
| // check if there are any running webview instances | |
| onMatch: function(instance) { | |
| // webview must be running on the main thread, so scheduleOnMainThread() will force the function to run on the main thread | |
| Java.scheduleOnMainThread(function(){ |
| # Make sure you have enabled "Expose hardware assisted virtualization to the guest OS" for the VMWare CPU | |
| Write-Host "##############################`nInstalling features: Containers, Hyper-V, Hyper-V-PowerShell`n##############################`n" | |
| Install-WindowsFeature Containers | |
| Install-WindowsFeature Hyper-V | |
| Install-WindowsFeature Hyper-V-PowerShell | |
| Write-Host "##############################`nDisabling firewall`n##############################`n" | |
| Set-NetFirewallProfile -Profile Domain,Public,Private -Enabled False |
This guide will show you how to install Arch Linux on an OVH VPS.
As you may have noticed, OVH does not have an Arch image, which is a problem. Follow these instructions to install Arch using recovery mode.
Assume anything reffered to as low ram vps in the guide to be a VPS with <8gb ram
This guide assumes the following:
| //C:\Windows\Microsoft.NET\Framework64\v4.0.30319\csc.exe /target:library c:\temp\hollow.cs | |
| //SQLRecon.exe /auth:local /host:SQL02 /username:sa /password:Password123 /module:clr /dll:c:\temp\hollow.dll /function:BaconTime | |
| using System; | |
| using System.Data; | |
| using System.Data.SqlClient; | |
| using System.Data.SqlTypes; | |
| using System.Diagnostics; | |
| using System.IO; | |
| using System.Runtime.InteropServices; | |
| using Microsoft.SqlServer.Server; |
This is a very quick tutorial on how to auto-type passwords from KeePassXC to a CLI application. The document is mostly for myself to remember how to do it, but feel free to add your comments and improvements.
I use KeePassXC as my main password manager. About a couple of months ago I discovered I don't need to copy passwords from KeepassXC via clipboard. I found out about the Auto-Type feature in the KeepassXC User Guide. According to the user guide, Auto-Type "acts like a virtual keyboard to populate data from your entries directly into the corresponding websites or applications that you use".
This is great for websites since I don't need any browser plugin. Instead I just press CTRL-Option-A (in my case) and let the user and password fields be auto-completed using KeepassXC. in order to do this correctly, you can configure a Window-Association. This is usually the title of a website as f
| #!/bin/sh | |
| # Example of job definition (as add job using crontab -e): | |
| # .---------------- minute (0 - 59) | |
| # | .------------- hour (0 - 23) | |
| # | | .---------- day of month (1 - 31) | |
| # | | | .------- month (1 - 12) OR jan,feb,mar,apr ... | |
| # | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat | |
| # | | | | | | |
| # * * * * * user-name command to be executed | |
| # 30 02 15,28 * * /root/opkg_updater.sh |
First, congrats! You're more special than the people lost in Windowz land. But not as cool as the Linux kids. It's a trade-off. These are the things I did to set up my nifty new MacOS system.
| # add RKE2 binaries to path | |
| export PATH=$PATH:/var/lib/rancher/rke2/bin | |
| echo "export PATH=$PATH:/var/lib/rancher/rke2/bin" >> ~/.bashrc | |
| # copy RKE2 kubeconfig file to the default location | |
| mkdir ~/.kube | |
| cp /etc/rancher/rke2/rke2.yaml ~/.kube/config | |
| chmod 600 ~/.kube/config | |
| # verify the configuration |
| apt-get update && apt-get install -y locales | |
| export LANGUAGE=en_US.UTF-8 | |
| export LANG=en_US.UTF-8 | |
| export LC_ALL=en_US.UTF-8 | |
| locale-gen en_US.UTF-8 | |
| dpkg-reconfigure locales |