How to perform a scan with nmap and some useful nmap tips for probing a computer.

To send a SYN packet to a computer on a network, use this command. nmap -sS -v 192.168.1.10nmap -sS -v 192.168.1.10 If you want to send SYN packets to a range of IP addresses, this is the command to use. nmap -sS -v 192.168.1.10-100nmap -sS -v 192.168.1.10-100 This will send SYN packets to the IP … Read more

How to perform the same task as wget using Windows 10 and Powershell 5.0.

The Windows 10 Powershell command prompt has a cmdlet named Invoke-WebRequest, this allows a user to download a link using Powershell. This will download a web link with a very fast transfer rate. Making this a very good way to retrieve a web link. Below is an example downloading a link from kernel.org. I am … Read more

Good alternative to the Problem Steps Recorder for Windows.

The Windows Problem Steps Recorder can have issues with missing screenshots when you are attempting to record steps to document a process on Windows. The Imago steps recorder, available here: http://www.softsea.com/download/Imago-Recorder.html is a good alternative. This only creates a folder full of screenshots, but the area of the window clicked is highlighted. This is a … Read more

How to show the routing table on Linux with the bash command shell.

Netscape Navigator install floppies.

The netstat command may be used to show the routing tables for your network connection easily. Use the netstat -r command to achieve this. iMac05:~ admin$ netstat -r Routing tables   Internet: Destination Gateway Flags Refs Use Netif Expire default 172.18.31.1 UGSc 31 0 en0 127 localhost UCS 0 0 lo0 localhost localhost UH 0 … Read more

How to change the default shell for new users on your Ubuntu Linux system.

The useradd command is used to add new users on your Linux system. But it can be used for other things too. You may display the defaults for new users. jason-H55-USB3% sudo useradd -D GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/sh SKEL=/etc/skel CREATE_MAIL_SPOOL=nojason-H55-USB3% sudo useradd -D GROUP=100 HOME=/home INACTIVE=-1 EXPIRE= SHELL=/bin/sh SKEL=/etc/skel CREATE_MAIL_SPOOL=no Use the -s parameter … Read more

How to uninstall a package in Ubuntu.

To remove a package in Ubuntu, use the sudo apt-get remove command. This will uninstall the package. jason-H55-USB3 [mc] ~ 14-10-18 8:47PM jason-H55-USB3% sudo apt-get remove linphone Reading package lists… Done Building dependency tree Reading state information… Done The following packages were automatically installed and are no longer required: libexosip2-10 liblinphone5 libmediastreamer-base3 libortp9 libosip2-10 libupnp6 … Read more

Cool Linux tricks and hacks for the desktop and server user.

Using the shellshock bash bug on an iMac. iMac04:~ admin$ env VAR1=’me() {echo "hello"}\ ‘ /bin/echo "hello" helloiMac04:~ admin$ env VAR1=’me() {echo "hello"}\ ‘ /bin/echo "hello" hello Getting free hard disk space easily. iMac04:~ admin$ df -Hla Filesystem Size Used Avail Capacity iused ifree %iused Mounted on /dev/disk0s2 89G 64G 25G 73% 15757422 6089307 72% … Read more

Use iperf to check the bandwidth between two servers over the Internet.

The iperf utility is used to transfer data from one machine to another over the Internet. This is a client-server utility and is the go-to utility to test a Wide Area Network connection. To use this, type sudo apt-get install iperf. Then open port 5001 in your router and/or firewall to allow the incoming connection … Read more

Some news about the new Windows 10 preview. It does have many improvements.

The new Windows 10 preview has just been released, since I have an MSDN account I have just downloaded this and installed it in VMware. My initial impressions are very positive, the CMD window now can be resized at will just like a Linux xterm window. This is the version of Windows you will see … Read more