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].

Php – Do not rely on set_time_limit too much

By | April 23, 2019

Php set_time_limit Php has a function called set_time_limit which can be used to dynamically adjust the maximum execution time permitted to a script. It allows specifying the time in seconds and limits the script execution time to that many seconds. The set_time_limit function whenever called, effectively extends the script execution time by that many seconds…. Read More »

Generate ssh keys on windows 8

By | March 10, 2018

SSH If you are using an ssh client on windows to control a remote webserver and want to setup passwordless logins then you need to create ssh keys. The puttygen command from the putty suite can be used to generate keys in both putty and openssh formats. Download the puttygen program from the following url… Read More »

Install quanta plus on ubuntu 12.10

By | June 27, 2013

Quanta Plus Quanta Plus is web development tool for the KDE desktop that resembles dreamweaver of windows. But it is a dead project now and is not being developed anymore for years. However it is still my favorite because it works very well. Remarkable features are : 1. Group files into projects. 2. Auto-suggestions for… Read More »

How to Sniff Http Post data with Wireshark

By | August 1, 2020

Wireshark Wireshark, the most powerful packet sniffer and protocol analyser can be used to sniff data out of the captured packets for various protocols. Network communication takes place in packets and any request like http get/post is broken down into multiple packets and then transmitted to the remote webserver. Wireshark has the ability to reconstruct… Read More »

Enable smooth scrolling in Google Chrome

By | May 19, 2013

Firefox by default has smooth scrolling enabled on Ubuntu. With smooth scrolling, if you turn the mouse wheel, the page scrolls by some percentage not in a single moment, but taking some time like an animation. It gives a similar effect as if the page is being scrolled by fingers on a touch device. Google… Read More »

Hack remote adsl routers

By | May 15, 2013

Adsl Routers Adsl routers are very common now a days as the primary hardware device used to connect to broadband connections. The modems connect to the broadband service using the username/password. Then the pcs connect to this router to form a local area network. The pcs use the router as the primary gateway to connect… Read More »

Crack ftp passwords with thc hydra | tutorial

By | May 16, 2013

Brute force password cracking Hydra is a popular password cracking tool that can be used to brute force many services to find out the login password from a given wordlist. It is included in kali linux and is in the top 10 list. On ubuntu it can be installed from the synaptic package manager. For… Read More »

Auto login root user at system start in Kali linux

By | May 11, 2013

Kali linux uses the root user, since root privileges are needed to run various security tools like nmap and wireshark etc. However its uneasy to type the root/toor combination everytime Kali boots. So to make things simple just make the user root login automatically at system start. And here are the simple steps to do… Read More »

Hack windows xp with metasploit | tutorial

By | May 8, 2013

Hack windows xp with MS08-067 exploit Using metasploit its possible to hack windows xp machines just by using the ip address of the victim machine. It does not involve installing any backdoor or trojan server on the victim machine. Metasploit does this by exploiting a vulnerability in windows samba service called ms08-67. This exploit works… Read More »

Install tor and vidalia on kali linux

By | May 1, 2013

Kali linux is the next version of backtrack in a completely new form. Tor is not installed by default in kali linux. However can be installed easily right from its own repositories. root@kali:~# apt-get install tor vidalia Run the above command and tor along with vidalia should be installed. Start the tor service with the… Read More »