Random
Cool heredoc
Use when you are on a
/bin/sh
and need tosu
but dont want to go into a fulltty
Bypass a disabled command prompt with /k
Description: 'This command prompt has been disabled by your administrator...' Can usually be seen in environments such as kiosks PCs, a quick hacky work around is to use /k via the windows run box. This will carry out the command and then show the restriction message, allowing for command execution.
Luks On USBs
Bash In memory exec one liner
Bash Keylogger
SSH Client Strace Keylogger
Poor mans keylogger for ssh client but it works. Add to the users
.bashrc
remember to source the
.bashrc
source ~/.bashrc
Apache map external drive to webroot
Create a directory on the external HDD, assuming it is mounted under the
/media
directory, like so:
Change the ownership of this directory and all the files under it to be owned by the Apache user
www-data
like so:
Create a directory under the web root directory ie
/var/www/html/
like so:
Bind the
/media/web_files/
directory to the/var/www/html/external_files/
directory like so:
All files on the external HDD under the
/media/web_files/
directory will be available for Apache under the/var/www/html/external_files/
directory and you can link to them in your web page that resides in/var/www/html/
like so:
Unzip a chunked archive
you will see files ending in .001, .002 etc etc
You will need to join them first. You may use the common linux app,
cat
as in the example below:This will concatenate all of your
test.zip.001
,test.zip.002
, etc files into one larger, test.zip file. Once you have that single file, you may rununzip test.zip
Cool Google Dorks
What is taking up space Linux
I recently ran out of disk space on my Ubuntu machine, here is a quick way to see what is taking up all that space
Fix x11 graphical error
Last updated