Skip to content

Instantly share code, notes, and snippets.

@orim4711
orim4711 / notes.md
Created May 29, 2021 22:06 — forked from stevecheckoway/notes.md
Installing Ghidra Server on Ubuntu 18.04.2 LTS

Installation on Ubuntu 18.04.2 LTS

  1. Install the jdk.

    $ sudo apt update
    $ sudo apt install default-jdk
    
  2. Create a new user.

@orim4711
orim4711 / 4gq25.txt
Created September 18, 2021 21:48 — forked from jacquerie/4gq25.txt
$ outguess -r 4gq25.jpg 4gq25.txt
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Hello.
The path lies empty; epiphany seeks the devoted.
Liber Primus is the way. Its words are the map, their
meaning is the road, and their numbers are the direction.

The command line, in short…

wget -k -K -E -r -l 10 -p -N -F --restrict-file-names=windows -nH http://website.com/

…and the options explained

  • -k : convert links to relative
  • -K : keep an original versions of files without the conversions made by wget
  • -E : rename html files to .html (if they don’t already have an htm(l) extension)
  • -r : recursive… of course we want to make a recursive copy
  • -l 10 : the maximum level of recursion. if you have a really big website you may need to put a higher number, but 10 levels should be enough.