From d7da16ecfa5cadb643df78694db44963ba665cbe Mon Sep 17 00:00:00 2001 From: Shubham Saini Date: Wed, 8 Feb 2023 16:19:28 -0800 Subject: init --- content/about.md | 18 +++ content/favicon.ico | Bin 0 -> 2508 bytes content/posts/binary-exp.md | 300 +++++++++++++++++++++++++++++++++++++++++ content/posts/dynamic-img.md | 39 ++++++ content/posts/hosting-email.md | 8 ++ content/posts/optimus-void.md | 98 ++++++++++++++ content/posts/setup.md | 28 ++++ content/pubkey.gpg | 52 +++++++ 8 files changed, 543 insertions(+) create mode 100755 content/about.md create mode 100755 content/favicon.ico create mode 100755 content/posts/binary-exp.md create mode 100755 content/posts/dynamic-img.md create mode 100755 content/posts/hosting-email.md create mode 100755 content/posts/optimus-void.md create mode 100755 content/posts/setup.md create mode 100755 content/pubkey.gpg (limited to 'content') diff --git a/content/about.md b/content/about.md new file mode 100755 index 0000000..2357ba4 --- /dev/null +++ b/content/about.md @@ -0,0 +1,18 @@ +--- +title: "About" +draft: false +--- + +I'm Shubham and I goes by `shubh` or `rinzler` on the internet. This site is mostly about opensource, privacy, infrastructure and security. + +I am currently pursuing my Master's in Computer Science with primary interest in cybersecurity. I live in Vancouver and work as a Cloud Engineer at [Fispan](https://fispan.com/). I play CTFs, crack boxes on hackthebox to pass my time. I also write opensource stuff, rice my desktop. Have a look at my [github](https://github.com/sh-ubh). + +Want to contact, send an message using email/xmpp to me@ubh.sh + +## Profiles + +hackthebox - [rinzl3r](https://app.hackthebox.com/profile/116082) + +pgp - [E0404DDE4BCF9DB5](/pubkey.gpg) + +`A504 C5F4 B9AD 213F A8A3 A901 E040 4DDE 4BCF 9DB5` diff --git a/content/favicon.ico b/content/favicon.ico new file mode 100755 index 0000000..725af1f Binary files /dev/null and b/content/favicon.ico differ diff --git a/content/posts/binary-exp.md b/content/posts/binary-exp.md new file mode 100755 index 0000000..e3c0704 --- /dev/null +++ b/content/posts/binary-exp.md @@ -0,0 +1,300 @@ +--- +title: "Basics of Binary Exploitation" +date: 2019-08-19T11:53:57+05:30 +description: "All you need to get started with binary exploitation" +draft: false +--- + +## Intro into assembly +Each personal computer has a microprocessor that manages the computer’s arithmetical, logical, and control activities. + +Each family of processors has its own set of instructions for handling operations like getting user input, displaying info on screen etc. These set of instructions are called ‘machine language instructions’. A processor can only understand these machine language instructions which is basically 0’s & 1’s. So, here comes the need of our low-level assembly. + +Assembly can be intimidating so I will sum it up for you and this is (pretty) enough to start pwning some binaries. + +- In assembly you are given 8-32 global variables of fixed size to work with which are called “registers”. +- There are some special registers also. MOst important is “program counter”, which tells the cpu which instruction we’re executing next. This is same as IP(instruction pointer) - don’t get confused. +- Technically, all the computation is executed on registers. A 64-bit processor requires 64-bit registers, since it enables the CPU to access 64-bit memory addresses. A 64-bit register can also store 64-bit instructions, which cannot be loaded into a 32-bit register. Therefore, most programs written for 32-bit processors can run on 64-bit computers, while 64-bit programs are not backward compatible with 32-bit machines. +- But big programs need more space so they access memory. Memory is accessed by using memory location or through push & pop op. on a stack. +- Control flow is handled via altering program counter directly using jumps, branches, or calls. These inst. are called “GOTOs”. +- Status flags are generally of 1-bit. They tells about wheather flag is set or reset. +- Branches are just GOTOs that are predicated on a status flag, like, “GOTO this address only if the last arithmetic operation resulted in zero”. +- A CALL is just an unconditional GOTO that pushes the next address on the stack, so a RET instruction can later pop it off and keep going where the CALL left off. + +I think this is enough info about assembly and you’re ready to dive into binary exploitation. Wanna learn more then this book is awesome - [here](https://beginners.re/RE4B-EN.pdf) + +## Let’s start pwning binaries +To start you will need a disassembler(converts 0’s & 1’s [machine code] into assembly) like radare2, IDA, objdump etc. and a debugger(used to debug programs) like gdb, OllyDbg etc. + +Let’s get started: Here is the code that I wrote and we will try to exploit it. It’s a simple license checker which check two strings. Source will be available on my [github](https://github.com/anon6405/binary_exploit). + +crackme1.c +```c +#include +#include +int main(int argc, char *argv[]){ + if(argc==2){ + printf("Checking Licence: %s\n", argv[1]); + if(strcmp(argv[1], "hello_stranger")==0){ + printf("Access Granted!\n"); + printf("Your are 1337 h4xx0r\n"); + } + else{ + printf("Wrong!\n"); + } + } + else{ + fprintf(stderr, "Usage: %s \n", argv[0]); + return 1; + } + + return 0; +} +``` + +This code is pretty simple and I hope you can understand it. So lets compile it. +```shell +$ gcc crackme1.c -o crackme1 +``` + +Now we will use gdb to debug our program +``` +$ gdb crackme1 +``` + +Now we know that every program has main function. So lets disassemble it. +``` +(gdb) disassemble main +``` + +It will through this: +```shell +Dump of assembler code for function main: + 0x0000000000001169 <+0>: push %rbp + 0x000000000000116a <+1>: mov %rsp,%rbp + 0x000000000000116d <+4>: sub $0x10,%rsp + 0x0000000000001171 <+8>: mov %edi,-0x4(%rbp) + 0x0000000000001174 <+11>: mov %rsi,-0x10(%rbp) + 0x0000000000001178 <+15>: cmpl $0x2,-0x4(%rbp) + 0x000000000000117c <+19>: jne 0x11e3 + 0x000000000000117e <+21>: mov -0x10(%rbp),%rax + 0x0000000000001182 <+25>: add $0x8,%rax + 0x0000000000001186 <+29>: mov (%rax),%rax + 0x0000000000001189 <+32>: mov %rax,%rsi + 0x000000000000118c <+35>: lea 0xe71(%rip),%rdi # 0x2004 + 0x0000000000001193 <+42>: mov $0x0,%eax + 0x0000000000001198 <+47>: callq 0x1040 + 0x000000000000119d <+52>: mov -0x10(%rbp),%rax + 0x00000000000011a1 <+56>: add $0x8,%rax + 0x00000000000011a5 <+60>: mov (%rax),%rax + 0x00000000000011a8 <+63>: lea 0xe6b(%rip),%rsi # 0x201a + 0x00000000000011af <+70>: mov %rax,%rdi + 0x00000000000011b2 <+73>: callq 0x1050 + 0x00000000000011b7 <+78>: test %eax,%eax + 0x00000000000011b9 <+80>: jne 0x11d5 + 0x00000000000011bb <+82>: lea 0xe67(%rip),%rdi # 0x2029 + 0x00000000000011c2 <+89>: callq 0x1030 + 0x00000000000011c7 <+94>: lea 0xe6b(%rip),%rdi # 0x2039 + 0x00000000000011ce <+101>: callq 0x1030 + 0x00000000000011d3 <+106>: jmp 0x120c + 0x00000000000011d5 <+108>: lea 0xe72(%rip),%rdi # 0x204e + 0x00000000000011dc <+115>: callq 0x1030 + 0x00000000000011e1 <+120>: jmp 0x120c + 0x00000000000011e3 <+122>: mov -0x10(%rbp),%rax + 0x00000000000011e7 <+126>: mov (%rax),%rdx + 0x00000000000011ea <+129>: mov 0x2e6f(%rip),%rax # 0x4060 + 0x00000000000011f1 <+136>: lea 0xe5d(%rip),%rsi # 0x2055 + 0x00000000000011f8 <+143>: mov %rax,%rdi + 0x00000000000011fb <+146>: mov $0x0,%eax + 0x0000000000001200 <+151>: callq 0x1060 + 0x0000000000001205 <+156>: mov $0x1,%eax + 0x000000000000120a <+161>: jmp 0x1211 + 0x000000000000120c <+163>: mov $0x0,%eax + 0x0000000000001211 <+168>: leaveq + 0x0000000000001212 <+169>: retq +End of assembler dump. +``` + +This looks ugly right. Well it’s AT&T syntax, change it to intel using: +``` +(gdb) set disassembly-flavor intel +``` + +For permanent change, create ~/.gdbinit and add +``` +set disassembly-flavor intel +``` + +Again disassemble main and you will get a more readable code +```shell +Dump of assembler code for function main: + 0x0000000000001169 <+0>: push rbp + 0x000000000000116a <+1>: mov rbp,rsp + 0x000000000000116d <+4>: sub rsp,0x10 + 0x0000000000001171 <+8>: mov DWORD PTR [rbp-0x4],edi + 0x0000000000001174 <+11>: mov QWORD PTR [rbp-0x10],rsi + 0x0000000000001178 <+15>: cmp DWORD PTR [rbp-0x4],0x2 + 0x000000000000117c <+19>: jne 0x11e3 + 0x000000000000117e <+21>: mov rax,QWORD PTR [rbp-0x10] + 0x0000000000001182 <+25>: add rax,0x8 + 0x0000000000001186 <+29>: mov rax,QWORD PTR [rax] + 0x0000000000001189 <+32>: mov rsi,rax + 0x000000000000118c <+35>: lea rdi,[rip+0xe71] # 0x2004 + 0x0000000000001193 <+42>: mov eax,0x0 + 0x0000000000001198 <+47>: call 0x1040 + 0x000000000000119d <+52>: mov rax,QWORD PTR [rbp-0x10] + 0x00000000000011a1 <+56>: add rax,0x8 + 0x00000000000011a5 <+60>: mov rax,QWORD PTR [rax] + 0x00000000000011a8 <+63>: lea rsi,[rip+0xe6b] # 0x201a + 0x00000000000011af <+70>: mov rdi,rax + 0x00000000000011b2 <+73>: call 0x1050 + 0x00000000000011b7 <+78>: test eax,eax + 0x00000000000011b9 <+80>: jne 0x11d5 + 0x00000000000011bb <+82>: lea rdi,[rip+0xe67] # 0x2029 + 0x00000000000011c2 <+89>: call 0x1030 + 0x00000000000011c7 <+94>: lea rdi,[rip+0xe6b] # 0x2039 + 0x00000000000011ce <+101>: call 0x1030 + 0x00000000000011d3 <+106>: jmp 0x120c + 0x00000000000011d5 <+108>: lea rdi,[rip+0xe72] # 0x204e + 0x00000000000011dc <+115>: call 0x1030 + 0x00000000000011e1 <+120>: jmp 0x120c + 0x00000000000011e3 <+122>: mov rax,QWORD PTR [rbp-0x10] + 0x00000000000011e7 <+126>: mov rdx,QWORD PTR [rax] + 0x00000000000011ea <+129>: mov rax,QWORD PTR [rip+0x2e6f] # 0x4060 + 0x00000000000011f1 <+136>: lea rsi,[rip+0xe5d] # 0x2055 + 0x00000000000011f8 <+143>: mov rdi,rax + 0x00000000000011fb <+146>: mov eax,0x0 + 0x0000000000001200 <+151>: call 0x1060 + 0x0000000000001205 <+156>: mov eax,0x1 + 0x000000000000120a <+161>: jmp 0x1211 + 0x000000000000120c <+163>: mov eax,0x0 + 0x0000000000001211 <+168>: leave + 0x0000000000001212 <+169>: ret +End of assembler dump. +``` + +Now make a assumption how this binary works. When you run it without any argument it will display the usage message. If you pass two arguments where first one is program name itself and second one is license key, it will display a access granted or access denied message. Now apply that assumption to assembly code. + +For exploitation, we can ignore most of the stuff. So at 0x1178, you can see a cmp function which is comparing a pointer to hex 0x2(which is 2 in decimal). According to our assumption, that must be checking arguments. Just below that 0x117c have a jne(basically jump not equal). So if those strings don’t match, control flow will jump to addr 0x11e3. Now at addr 0x1198, it is calling a printf function, which maybe printing “Checking License:” when you run the binary. Next interesting addr is 0x11b2, it is calling a strcmp(string compare) function. It should be comparing our key with the correct key to verify. Next we have 0x11b7 which is a test function and returns value 0 if strings match. After that we have addr 0x11b9 which is jne(jump not equal), jumps to addr 0x11d5 if strings are not equal. After that we have 0x11c2 and 0x11ce which is calling a puts(it just prints stuff) function, this will print “Access Granted!” and some other text if we give correct key. Next is 0x11d3 which will jump to 0x120c and terminates our program. Now let’s exploit it using gdb to print access granted without using key. + +First set breakpoint at main. Breakpoint is a point in memory where your execution stops. +``` +(gdb) break *main +``` + +Now run the program and watch the control flow. You can use pen-paper for better understanding. +``` +(gdb) run +(gdb) ni +``` + +ni is to execute next instruction. After that just press enter and it will execute the next instruction. Now try running the program with a key. +``` +(gdb) run random_key +(gdb) ni +``` + +Carefully watch the control flow this time. Now according to our assumption, if we change the value of eax at addr 0x11b7, we are telling the program that the strings matched and it will print the access granted message. So for that set breakpoint 2 to the address of test eax, eax. +``` +(gdb) disass main +(gdb) break *0x00005555555551b7 +``` + +Again run the program with a random_key. +``` +(gdb) run random_key +``` + +After hitting the first breakpoint, type continue to jump to next breakpoint. +``` +(gdb) continue +(gdb) info registers +(gdb) set $eax=0 +(gdb) ni +``` + +Here I set the value of eax to 0 and run the program instruction by instruction. After setting eax=0, next addr 0x00005555555551b9 will not be executed as it is jne. Use ni to continue executing next instruction. +```shell +(gdb) run random_key +The program being debugged has been started already. +Start it from the beginning? (y or n) y +Starting program: crackme1 random_key + +Breakpoint 1, 0x0000555555555169 in main () +(gdb) continue +Continuing. +Checking Licence: random_key + +Breakpoint 2, 0x00005555555551b7 in main () +(gdb) info registers +rax 0x3 3 +rbx 0x0 0 +rcx 0xfff7fdff 4294442495 +rdx 0x68 104 +rsi 0x55555555601a 93824992239642 +rdi 0x7fffffffe563 140737488348515 +rbp 0x7fffffffe170 0x7fffffffe170 +rsp 0x7fffffffe160 0x7fffffffe160 +r8 0xffffffff 4294967295 +r9 0x1d 29 +r10 0xfffffffffffff1a9 -3671 +r11 0x7ffff7f36140 140737353310528 +r12 0x555555555070 93824992235632 +r13 0x7fffffffe250 140737488347728 +r14 0x0 0 +r15 0x0 0 +rip 0x5555555551b7 0x5555555551b7 +eflags 0x206 [ PF IF ] +cs 0x33 51 +ss 0x2b 43 +ds 0x0 0 +es 0x0 0 +fs 0x0 0 +gs 0x0 0 +(gdb) set $eax=0 +(gdb) info registers +rax 0x0 0 +rbx 0x0 0 +rcx 0xfff7fdff 4294442495 +rdx 0x68 104 +rsi 0x55555555601a 93824992239642 +rdi 0x7fffffffe563 140737488348515 +rbp 0x7fffffffe170 0x7fffffffe170 +rsp 0x7fffffffe160 0x7fffffffe160 +r8 0xffffffff 4294967295 +r9 0x1d 29 +r10 0xfffffffffffff1a9 -3671 +r11 0x7ffff7f36140 140737353310528 +r12 0x555555555070 93824992235632 +r13 0x7fffffffe250 140737488347728 +r14 0x0 0 +r15 0x0 0 +rip 0x5555555551b7 0x5555555551b7 +eflags 0x206 [ PF IF ] +cs 0x33 51 +ss 0x2b 43 +ds 0x0 0 +es 0x0 0 +fs 0x0 0 +gs 0x0 0 +(gdb) ni +0x00005555555551b9 in main () +(gdb) +0x00005555555551bb in main () +(gdb) +0x00005555555551c2 in main () +(gdb) +Access Granted! +0x00005555555551c7 in main () +(gdb) +0x00005555555551ce in main () +(gdb) +Your are 1337 h4xx0r +0x00005555555551d3 in main () +(gdb) +``` + +Voila! You have cracked the program without knowing the correct key. + +This one is just a basic intro into binary exploitation and enough to get you started. + diff --git a/content/posts/dynamic-img.md b/content/posts/dynamic-img.md new file mode 100755 index 0000000..4ae5e59 --- /dev/null +++ b/content/posts/dynamic-img.md @@ -0,0 +1,39 @@ +--- +title: "Dynamic Image Sources" +date: 2020-06-13T13:20:34+05:30 +description: Using dynamic image source for dynamic CSS +draft: false +--- +My site uses dynamic css to generate dark or white theme based on user's system theme. So sometimes, I need to use different image colors to fit my needs. There is a very easy fix which involves using javascript but + +![](https://media1.tenor.com/images/ee55cce2b19a8a3731a14b0348ffe4ad/tenor.gif) + +(well accept for feather icons. i'll add only few icons once i get time.) + +## Using invert color filter in CSS +```css +img { + -webkit-filter: invert(1); + filter: invert(1); +} +``` +But sometimes it's just not the right way. + +## Using @media +This is a better approach as it changes the source of the image. + +main.css +```css + +``` + +dark.css +```css +@media { + .class_name{ + content: url(img_dark.png); + } +} +``` + + diff --git a/content/posts/hosting-email.md b/content/posts/hosting-email.md new file mode 100755 index 0000000..f82bd2e --- /dev/null +++ b/content/posts/hosting-email.md @@ -0,0 +1,8 @@ +--- +title: "Selfhosted Email that actually works" +date: 2022-12-07T12:10:56+05:30 +description: This is probably a bad idea +draft: true +--- + +## Why it's so hard? diff --git a/content/posts/optimus-void.md b/content/posts/optimus-void.md new file mode 100755 index 0000000..6ae889c --- /dev/null +++ b/content/posts/optimus-void.md @@ -0,0 +1,98 @@ +--- +title: "Using Optimus on Void or Non Systemd Distros" +date: 2019-09-13T12:10:56+05:30 +description: This article is for those who are a victim of laptop vendors but want to squeeze out maximum performance of their machine. +draft: false +--- + +## What is optimus technology? +According to gentoo wiki +> NVIDIA Optimus is a proprietary technology that seamlessly switches between two GPUs. It is typically used on systems that have an integrated Intel GPU and a discrete NVIDIA GPU. The main benefit of using NVIDIA Optimus is to extend battery life by providing maximum GPU performance only when needed. + +There is a great wiki about using bumblebee(not transformer) on void linux but bumblebee’s project last commit was in 2013 and it doesn’t support vulkan, so no luck for linux gamers. A better way is to use a utility like nvidia-prime which is available for ubuntu or optimus-manager which is available for arch-based distros(available in AUR). Sadly, these projects require systemd as a init system. There is only one project which uses shell script and partly depends on systemd but is pretty hackable - [nvidia-xrun](https://github.com/Witko/nvidia-xrun). + +## Problem on void +libglvnd is broken in void repos which makes it hard to have multiple drivers from different vendors to coexist on the same filesystem. This results in having either openGL libraries from mesa or nvidia. + +## The Hack +Install nvidia openGL libraries in /opt directory and point nvidia-xrun to use them. This is just a workaround of libglvnd. + +First of all install these packages: +- nvidia-dkms - for kernel modules +- libGL libEGL - mesa drivers +- xrandr xorg - display server +- any wm/de + +Create a file /etc/modprobe.d/nvidia.conf for blacklisting nvidia kernel modules so that they won’t be loaded at boot. Add the following text: +``` +blacklist nvidia +blacklist nvidia-drm +blacklist nvidia-modeset +blacklist nvidia-uv +blacklist nouveau +``` + +Next create some directories +```shell +$ sudo mkdir /opt/nvidia +$ sudo mkdir -p /opt/nvidia/fakeroot/usr/lib +$ sudo mkdir -p /opt/nvidia/fakeroot/usr/lib32 +$ sudo mkdir /etc/X11/nvidia +``` + +Now we have to create a fakeroot directory with nvidia openGL libraries +```shell +$ sudo ln -s /opt/nvidia/fakeroot/usr/lib /opt/nvidia/fakeroot/lib +$ sudo ln -s /opt/nvidia/fakeroot/usr/lib32 /opt/nvidia/fakeroot/lib32 +$ sudo chmod 755 -R /opt/nvidia/fakeroot +$ xbps-install --rootdir /opt/nvidia/fakeroot --repository https://alpha.de.repo.voidlinux.org/current --repository https://alpha.de.repo.voidlinux.org/current/nonfree --repository https://alpha.de.repo.voidlinux.org/current/multilib --repository https://alpha.de.repo.voidlinux.org/current/multilib/nonfree --yes --sync nvidia nvidia-libs nvidia-libs-32bit +``` + +Next clone my repo and move the scripts to respective location +```shell +$ git clone https://github.com/fd0e/optimus-hack.git +$ cd optimus-hack/ +$ sudo cp -r xorg.conf xorg.conf.d /etc/X11/nvidia/ +$ sudo cp run.sh /opt/nvidia/ +``` + +There is also off.sh which ensures that GPU is off. Run this as root at boot. + +Also add these lines in your ~/.xinitrc. +```shell +# load additional configs +if [ "$2" = "nvidia" ]; then + XINIT_D="/etc/X11/nvidia/xinit/xinitrc.d" +else + XINIT_D="/etc/X11/xinit/xinitrc.d" +fi + +if [ -d "$XINIT_D" ]; then + for f in "$XINIT_D/?*.sh" ; do + [ -x "$f" ] && . "$f" + done + unset f +fi +unset XINIT_D + +# additional nvidia specific settings +if [ "$2" = "nvidia" ]; then + xrandr --setprovideroutputsource modesetting NVIDIA-0 + xrandr --auto +fi +``` + +Now close your X session and run /opt/nvidia/run.sh. + +And boom! Your X session is now running on nvidia opengl libraries. + +## Troubleshooting +If steam complains about missing libGL. Run steam using this command +```shell +$ STEAM_RUNTIME_PREFER_HOST_LIBRARIES=0 steam +``` + +## Conclusion +I don’t recommend using this method but this is the only thing that worked for me. + +See this article for more details - [here](https://www.ifnull.org/articles/void_optimus_nvidia_intel/#disqus_thread) diff --git a/content/posts/setup.md b/content/posts/setup.md new file mode 100755 index 0000000..5b3ccd9 --- /dev/null +++ b/content/posts/setup.md @@ -0,0 +1,28 @@ +--- +title: "My Setup" +date: 2020-05-19T19:21:39+05:30 +description: Hardware & Software that I use +draft: false +--- +## Hardware +I have one laptop and one PC at home but I only use my laptop [`HP Pavilion 15-au620tx`] as a daily driver. It's a nice machine with a i5-7200U processor, 8 gigs ram and a nvidia 940mx for gaming. + +I also have a `Zenfone Max Pro M2`. For listening, I use `Skullcandy Uproar`. + +## Software +![](/images/rice.png) + +My software of choice is very minimal. I like things to do what they are supposed to do, nothing less, nothing more. I run gentoo linux with nomultilib/hardened profile. I use suckless software like dwm, st, dmenu, slock to handle my daily needs - if you don't know what they are check them [out](https://suckless.org/). My browser of choice is hardened firefox with tips from [privacytools](https://www.privacytools.io/browsers/). + +> You need a bloated browser to browse the bloated web - Luke Smith + +Some more tools that I regularly use - `cmus` for music, `bash` as my shell, `zathura` for PDFs, `pass` for managing passwords, `weechat` for IRC, `aerc` for mail. + +For pentesting, I use blackarch in virtualbox with just the tools that I need. + +## Android +Coming to my android setup - I use [LineageOS with microG patches](https://lineage.microg.org/) because the name `OpenGApps` is very misleading. My browser of choice for android is [bromite](https://www.bromite.org/) (which is pretty much degoogled chromium). I use [F-Droid](https://f-droid.org/) for installing additional apps. For most of my social media, I use PWAs. I also have [Aurora Store](https://auroraoss.com/) installed just for whatsapp (mostly for my uni groups). Lawnchair is my launcher of choice. Sometimes I do ROM-hoping (i don't even know if that's a thing). To make other ROMs degoogled, I use [nanodroid patches](https://nanolx.org/nanolx/nanodroid) or [minMicrog](https://github.com/friendlyneighborhoodshane/minmicrog_releases/releases). + +Some other apps that I use - `K9` for mail, `feeder` for RSS feeds, `Infinity` for reddit, `Revolution IRC` for IRC, `Go Player` for music, `newspipe` for youtube, `OsmAnd` for directions, `PasswordStore` for passwords, `termux` as terminal. + +That's it for today, Peace diff --git a/content/pubkey.gpg b/content/pubkey.gpg new file mode 100755 index 0000000..f385801 --- /dev/null +++ b/content/pubkey.gpg @@ -0,0 +1,52 @@ +-----BEGIN PGP PUBLIC KEY BLOCK----- + +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 +b3qQAzTOKTJ6sE8S +=l0PM +-----END PGP PUBLIC KEY BLOCK----- -- cgit v1.2.3