Security Updates…

SUSE has updated ghostscript (buffer overflow), opera (several vulnerabilities).
rPath has updated lighttpd (denial of service), pcre (buffer overflow), espgs (ghostscript buffer overflow), am-utils (overwrite arbitrary files).
Mandriva has updated dbus (privilege escalation).
Fedora has updated horde (F7, F8: several vulnerabilities), turba (F7, F8: several vulnerabilities), imp (F7, F8: several vulnerabilities), dbus (F7, F8: privilege escalation), thunderbird (F7, F8: multiple vulnerabilities), xen (F7, F8: insufficient block device address range).

Posted by: rishabh_kalra | Comments (0)
Security Updates…

Debian has updated diatheke (missing input sanitizing), koffice (multiple vulnerabilities).
Fedora has updated sword (F7, F8: command injection), cups (F7, F8: denial of service), dnssec-tools (F7, F8: insufficient validation), wyrd (F7, F8: insecure temporary file), kvm (F7, F8: unchecked block read/write), qemu (F7, F8: unchecked block read/write).

Posted by: rishabh_kalra | Comment (1)
Security Updates…

Debian has updated kernel (2.4.27) (multiple vulnerabilities), kernel (2.6.8) (multiple vulnerabilities), alsa-driver (information disclosure), iceape (multiple vulnerabilities), turba2 (access violation).
Gentoo has updated python (arbitrary code execution).
Mandriva has updated firefox (multiple vulnerabilities), nss_ldap (information disclosure).
Red Hat has updated cups (RHEL 3, RHEL 4: multiple vulnerabilities).

Posted by: rishabh_kalra | Comment (1)
Mounting iso image in Linux…

If u want to use a CD or DVD image (*.iso files) then u wont need an additional software in linux as on windows you just need to mount that image file to some directory, which can be done simply by executing the following command –>

mount -t iso9660 path_to_iso.iso path_to_mount_directory -o loop

example –>

mount -t iso9660 /tmp/game.iso /root/game -o loop

Here ->

1.mount is the command.

2.”-t” is option for specifying file system type.

3. “iso9660″ is the file system type for iso image.

4. “/tmp/game.iso” isthe path for the iso file to be mounted.

5. “/root/game” is the directory where the iso file has to be mounted.

Posted by: rishabh_kalra | Comments (0)
Security Updates Friday…

Debian has updated splitvt (privilege escalation), dspam (insecure password), wordpress (multiple vulnerabilities).
Gentoo has updated clamav (multiple vulnerabilities).
Red Hat has updated openldap (denial of service), tcltk (buffer overflows), tk (RHEL4: buffer overflows), tk (RHEL5: buffer overflows), cups (denial of service), tk (RHEL4: packaging update), acroread (multiple vulnerabilities).
SUSE has updated xdg-utils, clamav, wireshark, pcre (various issues).
Ubuntu has updated pcre3 (buffer overflow).

Posted by: rishabh_kalra | Comment (1)
Security Updates Thursday…

Fedora 7 has updated moin (multiple XSS vulnerabilities).
Fedora 8 has updated moin (multiple XSS vulnerabilities).
Mandriva has updated xine-lib (arbitrary code execution).
Ubuntu has updated qt (improper SSL certificate verification) and libcdio (denial of service).

Posted by: rishabh_kalra | Comments (0)
Window Decorator With Compiz

Dont worry if you are using compiz and the title bar of all your windows suddenly disappear…this is just because the window decorator you are using has crashed….

Now there are two ways to get out of it…clean one is restart you machine….but if u r stuck with something and dont want to restart then just use the following command —>

1. “kde-window-decorator –replace” (if you are using the kde3 window decorator).

2.”emerald –replace” (if you are using emerald window decorator).

3.”kde4-window-decorator –replace” (if you are using kde4 window decorator).

And if compiz-fusion as a whole crashes the try the command “compiz ccp&”.

But u will need a restart eventually to make EVERY thing normal.

Posted by: rishabh_kalra | Comments (0)
Security Updates Monday…

Debian has updated clamav (multiple vulnerabilities), nagios-plugins (multiple vulnerabilities).
Fedora has updated httpd (F7, F8: multiple vulnerabilities), cacti (F7, F8: multiple vulnerabilities), scponly (F7, F8: multiple vulnerabilities).
Mandriva has updated xine-lib (arbitrary code execution via crafted FLAC).
rPath has updated mailman (cross-site scripting).
SUSE has updated acroread (multiple vulnerabilities).

Posted by: rishabh_kalra | Comments (0)
Copying Files On network

scp copies files between hosts on a network.  It uses ssh for data transfer, and uses the same authentication and provides the same security as ssh. Unlike rcp, scp will ask for passwords or  passphrases if they are needed for authentication.

It can be useful for automated transferring of files using coding.The prompt for password can be bypassed by generating authenticated public and private keys using command “ssh-keygen” and after that “scp” can be simply called using the “system” function in c++ etc. and automated file transfer can take place.

example syntax :–

scp user@host1:source_file_path user@host2:destination_file_path

example :–

scp /root/send.txt root@172.16.11.22:/root/received.txt

using this the file send.txt in the local machine will be copied and renamed as received.txt to /root directory of machine 172.16.11.22 and the connection to machine 172.16.11.22 will be made as user root on that machine ( ofcourse password will be asked unless a public private key relation is mentained between both machines).

Posted by: rishabh_kalra | Comments (0)
PicoTux

Smallest Linux Computer
Smallest Linux Computer

Posted by: rishabh_kalra | Comments (0)