Skip to content

Instantly share code, notes, and snippets.

View MorpheusH3x's full-sized avatar
🏠
Working from home

MorpheusH3x MorpheusH3x

🏠
Working from home
View GitHub Profile

Update 28 July 2019: An updated version of this guide for Ubuntu Server 18.04 LTS is now available. Feel free to check it out.

Update 23 May 2020: This guide is ALREADY OUTDATED and might no longer work with new versions of Ubuntu and VirtualBox. Please consider switching to the updated guide instead. I will no longer respond to the replies to this gist. Thank you.

Mounting VirtualBox shared folders on Ubuntu Server 16.04 LTS

This guide will walk you through steps on how to setup a VirtualBox shared folder inside your Ubuntu Server guest. Tested on Ubuntu Server 16.04.3 LTS (Xenial Xerus)

# file location: /usr/share/applications/idafree7.desktop
[Desktop Entry]
Name=IdaFreeware
GenericName=Reverse Engineering Tool
Comment=Launch Ida Freeware 7.0
Icon=/home/morpheush3x/idafree-7.0/appico64.png
Exec=/home/morpheush3x/idafree-7.0/ida64
Terminal=false
Type=Application
@MorpheusH3x
MorpheusH3x / bash
Created April 22, 2021 16:29
Get the login in bitwarden cli aka 'bw' with the specified <NAME>
bw list items --search <NAME> | jq '.[].login | "username: " + .username + " | password: " + .password
@MorpheusH3x
MorpheusH3x / How to contribute on Github
Last active August 16, 2021 10:37
Properly contribute to an open source project
Source: https://www.dataschool.io/how-to-contribute-on-github/
# Initialisation
1. Fork the project on Github.
2. `git clone URL_OF_FORK`
3. `cd NAME_OF_REPOSITORY`
4. Check if there is a `origin` when executing `git remote -v`
If not, run `git remote add origin URL_OF_FORK`
5. Setup upstream
`git remote add upstream URL_OF_PROJECT`

Keybase proof

I hereby claim:

  • I am morpheush3x on github.
  • I am morpheush3x (https://keybase.io/morpheush3x) on keybase.
  • I have a public key ASB1ozoJCn3x9giZ1TunxGNaf34Szz3TicyrfuWh8dYjKAo

To claim this, I am signing this object:

@MorpheusH3x
MorpheusH3x / tlp.sty
Created January 9, 2024 21:47
Traffic Light Protocol in LaTeX
\NeedsTeXFormat{LaTeX2e}
\ProvidesPackage{tlp}[2024/01/09 Traffic Light Protocol]
\usepackage{color}
\usepackage{xcolor}
% Colors as defined here:
% https://www.cisa.gov/news-events/news/traffic-light-protocol-tlp-definitions-and-usage
\definecolor{TLPRED}{RGB}{255, 0, 51}
\definecolor{TLPAMBER}{RGB}{255, 192, 0}