l Home - Andre Honsberg
79 article(s) on 8 page(s) 1 2 3 4 5 Last >>

Install RVM ( Ruby Version Manager ) in Ubuntu 12.04 Linux for Ruby 1.9.3

119.png

In this article I will explain how you can get RVM (Ruby Version Manager) installed on Ubuntu 12.04 Linux. First we have to make sure that we have some dependencies installed, so run the following command to take care of them. sudo apt-get install build-essential git-core Now we need to install RVM (Ruby Version Manager) using curl. If you do not have curl installed yet on your system, you can issue ...
> Ruby

Install Ruby Version Manager RVM on Linux Mint 12 for easy Ruby Management

118.png

Install Ruby RVM ( Ruby Version Manager ) on Linux Mint 12. Today I wanted to install RVM, which stands for Ruby Version Manager, on my laptop so that I can do some Ruby development on the couch. So here are the steps needed to get the install working on Linux Mint 12. First let us drop into a terminal. Ctrl Alt T and then to make sure we can organize our code we will use Git for that. So to install Git ...
> Ruby

Ruby Multi Threaded phpMyAdmin Scanner going through the Tor network for anonymity

117.png

For some research I needed to code a Ruby scanner that scans a list of given URLs for phpMyAdmin installations. I needed this script so that I can easily check a lot of servers that I manage. For an added twist I wanted to route the requests through the Onion network. :) LOL. For this to work you need to have Tor and Polipo installed. If you do not have these installed yet you can check this article out. ...
> Ruby

PHP command line smtp email sender for Gmail using Pear

116.jpg

Today I needed to build a quick command line PHP mailer for easy monitoring on one of my servers. Below are the instructions to get it running on your Linux box. First we need to install all the requirements. If PHP Pear is not installed on your system run the following commands. sudo apt-get install php5-pear Now we need to install the correct Pear modules by running: sudo pear install Mail sudo pear ...
> Web Development

Anonymously connect to MySQL on Linux using Tor and Proxychains with Fedora, Backtrack and Ubuntu

115.jpg

In this article I will explain how to anonymously connect to a MySQL database without revealing your origin using a Linux computer. Before we start you need to make sure you have tor and proxychains installed on your system. The below article will teach you how to install Tor on a Fedora system. Installing on a Debian based system is almost the same. Just use apt-get install instead of yum install. Install ...
> Hacking

Find files that are writable on a Linux system by a certain user

114.png

When on a Linux system, and you want to find out what folders a user has write permissions to, use the following command: find/ -uid 48 -ls 2> /dev/null | grep -v /proc The -uid switch holds the user id of the user you want to check for writable folders on your Linux system. If you do not know what the uid is of a user you can figure it out by following the steps below. id -u user replace user with ...
> Linux How To

Anonymously scan Wordpress for vulnerabilities with WPScan on Linux Fedora 16 Verne with Tor and Polipo

113.jpg

Scanning Wordpress for known vulnerabilities on Fedora 16 Linux with Tor and Polipo to hide one's identiy is very easy. After you have installed WPScan on Fedora 16 go to the folder that the files are in. For this example we will use the directory /home/user/wpscan. cd /home/user/wpscan replace ...
> Hacking

Installing WPScan on Fedora 16 Verne to scan WordPress for exploits

112.png

To scan Wordpress installations on Fedora Core 16 Verne Linux for exploits to make sure that your Wordpress install is secure we use a tool called WPScan. We will install WPScan on a Fedora 16 box with ruby already installed. WPScan is confirmed to work on Ruby 1.8.7 and 1.9.3. For the purpose of this article we will install WPScan in /home/user/wpscan. The first thing we need to do is download the scanner. cd ...
> Hacking

Change or Manipulate your MAC Address in Fedora Core 16 Verne Linux with macchanger

111.png

Sometimes there is a need to change the MAC address of the network interface that you are using in Fedora 16 Linux. Either you are trying to figure out issues with you MAC address based routing or you might want to hide your MAC address for whatever reason. Here is how to manipulate your MAC in Fedora 16. First we need to see what network interface we are using. ifconfig should have an output similar ...
> Hacking

Anonymously scan targets with Tor, Nessus and Socat using Fedora 16 Verne Linux

110.jpg

In this article I will explain how you can scan hacking targets anonymously with Nessus and Socat using Fedora 16. If you do not have Socat installed yet on your Fedora Box you can simply do sudo yum install socat To install Nessus Security Scanner 5 on Linux Fedora Core 16 Verne go here. ...
> Hacking
79 article(s) on 8 page(s) 1 2 3 4 5 Last >>