Wednesday 29 June 2011

Search, Stream, and/or Download Audios/Videos From Youtube and Other Sites With GMediaFinder

GMediaFinder is a new GTK based desktop application that allows you to search, stream and download audios and videos from different sites. Both the windows and linux version of the tool are available and it can be great alternative to Minitube for linux.

It support fullscreen mode (double click on the video or F2/esc), visualisations and use the gstreamer engine to play sounds and videos. This tool also allows searching and streaming of audio and video from several other websites such as azmp3s.com, Tagoo, etc.

It is available for ubuntu through PPA so to install the tool, type the following commands in your terminal.

sudo apt-add-repository ppa:s-lagui/ppa
sudo apt-get update
sudo apt-get install gmediafinder

I hope this info is useful. :)




Read more...

Friday 24 June 2011

how to split a file in linux

If you need to split a single large file into smaller pieces to transfer the files through small memory drives(I had to transfer 4.6 GB matlab ISO using two 4 GB pendrives), there's this simple command line tool called "split" developed by Torbjorn Granlund and Richard M. Stallman.


Fire up the terminal and navigate to the directory in which the file to be splitted is present.

Then, we'll use the split command as below:

split --bytes=2G matlab.iso matlab_

After executing the above command, the iso is divided into smaller chunks of specified file size. The --bytes option can take various different arguments such as 2K, 2M, etc.

To recombine the files into a single file, open the terminal and type the following after navigating to the proper directory.

cat matlab_* > matlab.iso

For more information on the command, type man split.



Read more...

Monday 20 June 2011

SLC Examination 2067 Result Is Out

OCE, Sanothimi has published the result of SLC examination 2067 today and if you are wondering how you can view the result with marksheet, check this post.

To view SLC result with marksheet, we can visit the official OCE site given below.
slcresult.soce.gov.np : Though the info on the page says that the result is of 2067 (probably they are updating their database), you can view full marksheet from the page there.
slc.ntc.net.np : Marksheet available now



Read more...

Friday 10 June 2011

Online Alternative To Matlab

Today, I visited a website which provided the service of working on Matlab online in a website without any need of installing Matlab software. Although not comprehensive as the software itself, this web version can be quite useful in some cases.

This site offers as of now more than 500 Matlab R2009A commands. Only text commands are supported for now and they are working for graphical supports such as plots.

www.matlab-online.com

Thanks to Brisha for pointing this useful site. :)

Read more...

Thursday 9 June 2011

Advanced HTTP Fingerprinting With httprecon

One of the first steps in web server hacking involves fingerprinting to gather information regarding the web server and various mods applied to it. Fingerprinting the web server manually can be cumbersome so some good folks have developed an advanced open-source fingerprinting tool known as httprecon

*Description from official webpage:

The httprecon project is doing some research in the field of web server fingerprinting, also known as http fingerprinting. The goal is the highly accurate identification of given httpd implementations. This is very important within professional vulnerability analysis.

Besides the discussion of different approaches and the documentation of gathered results also an implementation for automated analysis is provided. This software shall improve the easyness and efficiency of this kind of enumeration. Traditional approaches as like banner-grabbing, status code enumeration and header ordering analysis are used. However, many other analysis techniques were introduced to increase the possibilities of accurate web server fingerprinting.

Check the Page of httprecon project

Read more...

Saturday 4 June 2011

Techgaun on custom domain

Hi everybody, I am glad to announce that techgaun has now moved to the custom domain www.techgaun.com. I hope to post more actively now. Thanks everyone for your visit. :)


Read more...

Friday 3 June 2011

Download Torrents From Demonoid Without Any Account

Demonoid.com is one of the most widely used bittorrent tracking site and registration requires invitation from the existing member of demonoid.com. However, in case you don't have an account, there's still a way to download the torrents from demonoid. I would like to thank a friend for providing me insights of doing this.

First go to the following link: http://torrent-finder.info/open/6-Demonoid/search

The search page will appear. Now its just the matter of search and download. Have fun downloading torrents from demonoid.com. :)




Read more...

Thursday 2 June 2011

Install New Nvidia Driver 270.41.19 in Ubuntu

NVIDIA has released the new versions of unix drivers recently and many bugs have been fixed in this release.

To install this recent driver in ubuntu 11.xx, open the terminal and type the following:
sudo apt-add-repository ppa:ubuntu-x-swat/x-updates
sudo apt-get update
sudo apt-get install nvidia-current

Also the packages are available for download from following links:

http://www.nvidia.com/object/unix.html

ftp://download.nvidia.com/XFree86/Linux-x86/270.41.19/

ftp://download.nvidia.com/XFree86/Linux-x86_64/270.41.19/





Read more...