Install a nice alternative to Burp suite for scanning websites for vulnerabilities.

Burp suite is very good for scanning websites, but there is also a nice alternative for website application scanning. This is zaproxy. This is a very good alternative for performing this task. It is very easy to install. If you have snap enabled. 4.4 Mon Nov 04 jason@Yog-Sothoth 0: $ snap install zaproxy –classic zaproxy … Read more

How to install a program from a tar.gz file on Linux easily.

I am needing to install Emacs on my computer and I have decided to install from source. This is easy on Linux, I had to ensure I had the latest build of Emacs. Then I could compile the source code. Download the source here: http://ftp.gnu.org/gnu/emacs/emacs-26.3.tar.xz. Firstly, extract the source to a folder. 4.4 Wed Oct … Read more

Narodnaya Solyanka Cumulative Pack 2.2 to be out next year.

The new mega Stalker Shadow of Chernobyl mod Объединенный пак 2.1 is going to receive an update next year with the OP 2.2 version slated for release. This features a 64bit engine and new areas. This will also feature a new plot and older more familiar quests are redone. This will keep it very fresh. … Read more

It is very useful to have knowledge of the command line. Here are some useful tips for you.

If you need to perform a command a second time on a different file, you can use command replacement with the ^ symbol. e.g. cp foo.txt /to/some/directory then ^foo^bar, expanding to: cp bar.txt /to/some/directory. To find information about a particular command, the apropos utility can be very helpful, this will search the system and find … Read more

Microsoft Windows 10 updates still an embarrassment.

Microsoft have been plagued by many issues regarding the quality control and testing within the organisation. The main problem is that there are different testing teams for each section of the operating system, and this has lead to problems slipping through the cracks into mainstream releases. This has caused a lot of embarrassment for Microsoft, … Read more

Trim multiple spaces with sed into a normal string.

To trim multiple spaces from a sentence and turn it back into properly readable text, use this sed syntax. sed ‘s/ \+/ /g’sed ‘s/ \+/ /g’ This is an example. echo "Hello, this sentence has multiple spaces in it and needs fixing." Hello, this sentence has multiple spaces in it and needs fixing.echo "Hello, this … Read more

Install a nice new web browser on Linux. The Brave browser is fast and secure.

The brave web browser is a very secure alternative to Firefox and Chromium for the Linux platform. To install this browser on Ubuntu 18.04, use snap. 4.4 Wed Sep 25 jason@Yog-Sothoth 0: $ sudo snap install brave Warning: /snap/bin was not found in your $PATH. If you’ve not restarted your session since you installed snapd, … Read more

Speed up the shutdown time of your Ubuntu machine using Systemd.

Systemd, by default waits a long time for some services to shutdown when switching off the machine. This can be annoying when you get a message in the console that a stop job is running for a certain service, and it is waiting for it to shutdown. But this can be fixed. Edit the /etc/systemd/system.conf … Read more

Get information about your swap partition with this simple command.

This command will print information about your swap partition easily using the Linux command line. root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860 0 -3root@Yog-Sothoth:~# swapon -s -v Filename Type Size Used Priority /dev/sda5 partition 7811068 0 -2 /dev/dm-1 partition 62500860 0 -3 The –show parameter … Read more

A quantum CPU could be a revolutionary solution to the need for more CPU power.

A quantum CPU could be a good way to get way more power out of a modern PC. Games and applications are becoming more and more demanding, as well as websites that run bitcoin miners in the background like Piratebay. But operating systems and applications would need to be completely rewritten to work on a … Read more

How to copy text to a pastebin easily, and some other very useful tips.

This command will copy text to a pastebin online using curl. 4.4 Mon Sep 16 jason@Yog-Sothoth 0: $ echo "This is a message I want to save online." | curl -F file=@- https://0x0.st/4.4 Mon Sep 16 jason@Yog-Sothoth 0: $ echo "This is a message I want to save online." | curl -F file=@- https://0x0.st/ This … Read more

Use nftables on your Linux machine to add more security.

The nftables firewall is a good alternative to iptables. This has better performance than the old iptables system. To install this on Ubuntu 18.04, run this command. 4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables4.4 Thu Sep 12 jason@Yog-Sothoth 0: $ sudo apt install nftables Edit the /etc/nftables.conf file to remove the … Read more

Best light Linux distro for older computers. Based upon Ubuntu 18.04.

There is a nice new Linux distribution, LXLE. This is a very light and fast Linux distro based on Ubuntu. This would run fine on an older machine that cannot handle the full Ubuntu distribution. This is very helpful of the user has an old machine that they are not using, and wish to press … Read more

How to copy files from your machine to a backup drive. And how to do it over a network.

How to use rsync to send files from your hard disk to a backup drive. This example will copy the files from a folder to a backup drive and the ipinfo folder will be created on your backup HDD. rsync -av Documents/ipinfo/ /media/jason/Seagate\ Expansion\ Drive/Linux/ipinfo/ sending incremental file list created directory /media/jason/Seagate Expansion Drive/Linux/ipinforsync -av … Read more