Author Archives: Silver Moon

About Silver Moon

A Tech Enthusiast, Blogger, Linux Fan and a Software Developer. Writes about Computer hardware, Linux and Open Source software and coding in Python, Php and Javascript. He can be reached at [email protected].

How to Check/Test Port Forwarding with Netcat

By | July 27, 2020

Port Forwarding Port forwarding is a configuration in the router of a LAN such that any connections to a specific port number on the public/wan ip of the router may be forwarded to a specific machine/ip inside the LAN. Most routers have configuration options to enable port forwarding. Testing Port Forwarding After setting up port… Read More »

Scan the local network with arp-scan on ubuntu

By | August 16, 2012

Arp-scan Arp-scan is a commandline utility for linux that can be used to scan the network of a certain interface for alive hosts. It shows the ip address and mac addresses of all the hosts/nodes found. Project website Install on ubuntu $ sudo apt-get install arp-scan The documentation can be found at Usage Quick example… Read More »

Install Tor, Vidalia and Polipo on Ubuntu

By | August 24, 2012

TOR is an anonymity solution that can be used as a proxy over the internet. Project website Install on Ubuntu $ sudo apt-get install tor vidalia During the installation a configuration screen will come up, asking to select those users who would be using tor. Select the appropriate users on that page and continue. After… Read More »

View sqlite database files with sqlitebrowser on ubuntu

By | August 10, 2012

SQLite Database Browser is a freeware, public domain, open source visual tool used to create, design and edit database files compatible with SQLite. It is meant to be used for users and developers that want to create databases, edit and search data using a familiar spreadsheet-like interface, without the need to learn complicated SQL commands…. Read More »

Using sqlmap with login forms

By | April 15, 2013

In a previous article we saw how to use sqlmap to exploit vulnerable urls of the form http://www.site.com/section.php?id=59 where the id parameter for example is vulnerable to sql injection. Now we shall try to do the same thing with forms, especially login forms. Forms often submit data via post, so the sytanx for launching the… Read More »

Php : Get links on a page with DomDocument

By | September 1, 2023

Scraper scripts often need to extract all links on a given page. This can be done in a number of ways like regex, domdocument etc. Here is simple code snippet to do this using domdocument. /* Function to get all links on a certain url using the DomDocument */ function get_links($link) { //return array $ret… Read More »

Best puzzle solving games for ubuntu

By | May 15, 2023

Here is a list of most popular puzzle games on Ubuntu Linux Marble Arena 2 Excellent graphics and colorful. This is a game where a marble is to be moved around and points to be collected. Project website http://www.marble-arena.com/ Install on ubuntu 1. Download Linux version from http://www.marble-arena.com/ 2. Install libwebkit1.1-cil from synaptic 3. Extract… Read More »