Freshers Walkins L&T Infotech Walkin for freshers on 4th Sep 2010 RevInfotech Walkin for Freshers on 3rd and 4th Sep 2010 STELLENT SOFT Walkin for Freshers from 30th Aug to 5th Sep 2010
Bank Jobs Hadoti Kshetryia Gramin Bank Recruitment for Officer and Office Assistant Kashi Gomti Samyukt Gramin (KGSG) Bank Special Drive for Officer and Office Assistant Canara Bank Recruitment for Specialist Officer STATE BANK Of INDIA (SBI) Associate Banks Recruitment for Specialist Officer Punjab National Bank (PNB) Recruitment for Specialist Officer and Management Trainee STATE BANK Of INDIA (SBI) Recruitment for Defence Banking and other jobs Laste date extended Bank Of India (BoI) Recruitment for Probationary Officers(2000 Posts) United Bank Of India Recruitment for Clerk(700 Posts) SOUTH INDIAN BANK LTD. (SIB) Recruitment for Clerks
Government Jobs Central Reserve Police Force (CRPF) Recruitment for Combatised Para Medical Staff RAJASTHAN PUBLIC SERVICE COMMISSION (RPSC) Recruitment Last date extended for Ayurveda Medical Officer Central University of Jharkhand (CUJ) Recruitment for Faculty SUPREME COURT OF INDIA Recruitment for Librarian Gautam Buddha University (GBU) Recruitment for Faculty Rural Electrification Corporation Ltd. (REC) Recruitment for Officer and Engineers BHARAT ELECTRONICS LIMITED (BEL) Recruitment for Electronics and Computer Engineer Bihar Mahadalit Vikas Mission Recruitment for Officer/Store Keeper/Accountant Bharat Heavy Electricals Limited (BHEL) Recruitment for Engineer and Supervisor Trainee
 Freshers Walkins
 Latest Government Jobs

Results for Tech Titbits

10 Ways to Improve Your Programming Productivity

Tech Titbits

1. Limit News Intake to twice a day, Including Google Reader & News Sites Straight from the four hour workweek.  Let’s be real: Your minute-to-minute life...

Perl Script to Update Recommended IP Block Ranges

Tech Titbits

Yesterday, I started down the road of learning to develop in Perl. Came up with the idea of updating my OpenBSD firewall badhosts table with the DShields recommended IP...

Simple perl script for searching logfiles

Tech Titbits

Perl script: It is used for searching log files. Failed SSH connectionsAccepted SSH connectionsWebsites accessed (successfully) though a squid proxy Its a very basic...

How to monitor(by e-mail) auth log?

Tech Titbits

I need to monitor everyone login server [assume -> linux OS] and “opened” status: How? use “root” user =>

Remote SQL Injection (Exploit)

Tech Titbits

#!/usr/bin/perl # ########################################################## # MGB <= 0.5.4.5 Exploit # Vulnerability...

Linux iptables

Tech Titbits

iptables is a user space application program that allows a system administrator to configure the tables provided by Xtables (which in turn uses Netfilter) and the chains...

Useful Finds

Tech Titbits

Useful Find(s) find text in a file and show filename / line number find /fred -exec grep -inH “something” {} \; | more find old user/group ID and rename it to a...

Securing inetd, hosts.allow, and hosts.deny

Tech Titbits

Securing inetd, hosts.allow, and hosts.deny Do we want to let people in ? tcp_wrappers: First lets open /etc/inetd.conf Here’s an example inetd.conf from my desktop...

How to forcefully unmount a Linux/AIX/Solaris disk Partition?

Tech Titbits

Linux / UNIX will not allow you to unmount a device that is busy. There are many reasons for this (such as program accessing partition or open file) , but the most...

Unmask command for Real Time

Tech Titbits

umask command will be used for setting the default file creation permissions. When a file is created, its permissions are set by default depending on the umask setting....

SUID, SGID and Sticky bit

Tech Titbits

Set user ID, set group ID, sticky bit In addition to the basic permissions discussed above, there are also three bits of information defined for files in Linux: * SUID or...

Simple usage of “tcpdump”

Tech Titbits

Tcpdump is a really great tool for network security analyst; you can dump packets that flow within your networks into file for further analysis. With some filters you can...

Creating large empty files in Linux / UNIX

Tech Titbits

To create large empty files in Linux or UNIX: # dd if=/dev/zero of=filename bs=1024 count=desired Example to create a 1GB file: dd if=/dev/zero of=file_1GB bs=1024...

rsync examples from command line

Tech Titbits

To copy all the files in /home/lokams/* of remote host to local directory /backup/home/lokams/ # rsync -e ssh -avz –delete –exclude dir/* –delete-excluded...

Content Writer

Tech Titbits

Functions of content writers : There is a growing demand for content writers in the net because good content often translates into revenues for online businesses. Online...

How to know if your a Hacker

Tech Titbits

I have heard the question many times, “How do I know when I am a hacker?”. Each time that I heard it, I would ponder it for days at a time, thinking, how did i...

A Novice’s Guide to Hacking

Tech Titbits

Introduction: The State of the Hack ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ After surveying a rather large g-file collection, my attention was drawn to the fact that there...

The History Of Hacking & Phreaking

Tech Titbits

By Raven -=-=-=-=-=- Okay boys and girls, children of all ages…Here’s a revolutionary idear….The announcements foist! -=-=-=-=-=- The file we released on...

Introduction to hacking

Tech Titbits

This is a brief tutorial designed to show you how to get started with hacking. It is not an in depth analysis of Unix and I will not show you how to hack specific systems...

Group Discussion Tips

Tech Titbits

Group Discussion : A GD is a methodology used by an organization to gauge whether the candidate has certain personality traits and/or skills that it desires in its members....

What is the difference between Broad Cast addressing and Point to Point addressing (Subject :Computer networks)

Tech Titbits

1) broad cast address:- Teacher taking the attendance ( she will call the roll nos in the class room all the guyz will listen but only one who is having the particular roll...

How to Handle Group Discussions

Tech Titbits

GROUP DISCUSSION Many companies conduct group discussion after the written test so as to check on your interactive skills and how good you are at communicating with other...

C Pointers

Tech Titbits

I can compare the pointer concept to our real time scenario. Just imagine a situation like In a hotel we want to meet somebody staying in some room, but we don’t know...