WORKSHOP ON ETHICAL HACKING AND CYBER FORENSICS

.................... LeArN To HaCk...!!! HaCk To LeArN...!!!................. 

 LEVEL-1 JAN 5TH 2K14 @ CHENNAI Register At : http://securityghost.com/workshop/

Speaker N. Srinivas (Sen Haxor) 
Chief Guest: Striker India (Striker Ica Indishell) 

Join us n learn hacking from REAL-TIME Hackers.....

FOR ANY DOUBT ABOUT UR SPEAKER JUST GOOGLE HIS NAME...!!!!!

For more Details: Ring Us @ +91-8939024436 / 9043438085 / 8148427601

Ping us @ registerforhacking@gmail.com

Join Us @ https://www.facebook.com/groups/LearnToHackHackToLearn/?fref=ts

Join Event @ https://www.facebook.com/events/606103806094579/?fref=ts


TOPICS: ·
  • INTRODUCTION. · 
  •  PC HACKING AND SECURITY. · 
  •  GMAIL HACKING AND SECURITY. · 
  •  FACEBOOK HACKING AND SECURITY. · 
  •  WEBSITE HACKING AND SECURITY . · 
  •  WIRELESS NETWORK HACKING(WIFI PASSWORDS) AND SECURITY. · 
  •  SQL-INJECTION. CRYPTOGRAPHY. · 
  •  D-DOS ATTACKS. · 
  •  IP SPOOFING. ·
  • KEY LOGGERS AND SECURITY. · 
  •  OS HACKING AND SECURITY. · 
  • BACKTRACK . ·
  • METASPLOIT. · 
  • REVERSE ENGINEERING. · 
  • NON TECHNICAL ATTACKS. · 
  • GOOGLE DORKING. · 
  • ONLINE FRAUD. · 
  • COUNTER MEASURES AND CASE STUDIES. 
  • DATABASE DUMPING AN SECURITY MANY MORE SURPRISE TOPICS ...!!!


 DONT MISS IT..!!!

Nokia Lumia 1520

Nokia Lumia 1520 

Nokia recently launched Lumia 1520 in INDIA for 46,900



Specification :

  •  6 INCH Display 
  • 1080p Screen
  •  SnapDragon 800 SOC 
  • 2GB RAM

 they offers Core specs of Nexus 5 and a better Camera as well as Large screen !!

Why the Size of an Hard disk ,pendrive or any Storage Devices is lesser than specified Capacity range !!


Why the Size of an Hard disk ,pendrive or any Storage Devices is lesser than specified Capacity range !!

An 250GB hard disk can have only less than 233 GB space!


  • All Hard Disk manufacturer way of counting space is different from the way a software count a space.
  • This means to a Hard Disk Manufacturer, 1GB is 1000 MB, 1 MB is 1000 KB and so on.
  • Software or computer language recognize a space in terms of power of  2 say 21, 22,23 etc. hence a KB is 210 Bytes which is 1024 Bytes.


Lets do a little math:From a Manufacturer a 250 GB harddisk is 250 x 1000 x 1000 x 1000 =250000000000 Bytes From the Computer Language point of view a 250000000000 Bytes is:250000000000/(1024*1024*1024)=232.83 GB

Now you’ll see why your 250GB harddisk has only less than 232.83 GBspace in total. Well if you go with higher space like 500 GB and so on the space missing is increasing!! 

Best Programming Youtube Channels For Beginners



Some of the best available YouTube channels for learning C,C++,Java, Data Structures and Algorithms.



1. Advanced C++ concepts and Standard template library - BoQian

Mostly His implemetations would be bases on the STL. So, we could implement most of our algorithms using the standard libraries present in C++.

2. Algorithms, DataStuctures and more interview Questions - Saurabh School

Saurabh School of Computing is an initiative by IITian S.Saurabh. He is B.Tech from IIT and MS from USA. This channel provides quality and easy to understand video lessons to help people prepare for programming interviews .

3. Fundamental Concepts of OOPs, Java, Socket and Android Programming - Prof. Vinod Pillai

His teachings Of OOPs are very clear with very simple examples that even an amateur programmer could understand.

4. Programming Paradigms - Prof. Jerry Cain

Professor from the stanford university tells us how a program works internally. Basics that every programmer needs to know to program efficiently.

5. My Code School

Simplicity at its best. Learn all the mathematical logics, algorithms and DataStructures and many more at code School


HTML

Coding can be made effective with HTML, but designing with HTML is little difficult,since you will have to design only with your code.Alternative way of designing is to go with "CSS".(i.e) Cascading style sheet.
Using this we can design a web page more effective and attractive than the one made with HTML.

In this session,we can see about the basic inline and embedded styles and formatting with CSS.

Inline styles:

    Using style sheet, we can code or design as follows:

<style>
h1{color:green}
</style>
To make a inline style,provide the attributes in a single tag.

<H1 style=textsize:14>

The above formatting is called inline style.An embedded style can be made by typing some property and values inside the heading tags

Sample code for embedded style:

<style>
H1
{
    fontcolor:blue;
}
</style>

Fonts:

In HTML, we can specify a font type and size as follows:

<font face="arial,times new roman">ABC</font>

The same can be done with CSS as follows:

Font face:arial,Timesnew roman;

Sample web page using above concepts:

<html>
<head>
<title>New webpage</title>
<style>
H1
{
fontsize:14;
fontytype:arial,time new roman;
}
</style>
<body>
<font color="blue">The text is in blue</font>
</body>
</html>


Facebook's Sympathy Button

Facebook now seems to be planning on adding a sympathy button in addition to its like button.Their primary aim to provide the users to express their emotions on a particular post of their friend.
There will be no captions on that button, but it is primarily based on the traditional 'mood' drop down lists that is in use now. It is likely to be updated by next year beginning.
                                               

HTML Tutorial 1

INTRODUCTION TO BASIC HTML


Welcome to Chapter 1 : intro to HTML

Part 1- HTML Structure Presentation
Part 2- Layout of an HTML file 
Part 3- Working with Tables & List 
Part 4- HTML Forms & Input 
Part 5- Styling & Inline CSS

Part 1- Introduction to HTML

What is HTML?
  • HTML is a Hypertext Markup Language 
  • HTML is not a Programming language 
  • Language of the Browser 
  • The World Wide Web Consortium Creates the Standards of HTML
  • CSS is used to style HTML pages 

Where to type these HTML Codings?? 

Normally we can use any text editor to Execute the HTML tags and to Create the pages .. i prefer to use the Notepad ++ .

Click Here to Download Text Editor Software


HTML Uses Tag Elements :


Code:
<p>this is a Paragraph</p> - paragraph


<h1>this is a heading</h1> - heading


<i></i> - Italic


<b></b> - Bold


Content is wrapped in an open and closing tag ,


Code:
<p>this is a Paragraph</p>


<h1>this is a heading</h1>



HTML Document Layout 


Code:
<!DOCTYPE html>
<html>                                 //open tag of HTML
 <head>                               //open tag of Head
 <title>Page Title</title>            //open and close tag of title
 </head>                              //close tag of Head
 <body>                               //open tag of body
 <p>Hi Welcome to vidyarthiplus !! </p> //open and close tag of Paragraph
 </body>                             //close tag of Body
</html>                              //close tag of HTML


Block Elements 

Block Level Elements:

Creates a large block of content
new lines before and after element 
Consumes the whole width available 

Examples 

Code:
<h1> - <h6> Headings , ( h1 with Maximum font size  and so on)


<form> - forms


<div> - div tags



Inline Elements 

Inline Level Elements : 
  • No new Lines 
  • Can be placed aside other elements 
  • Cannot define width

Examples 


Code:
<a> - links (known as anchor tag)


<strong> & <b> - both indicates the Size of the font


<input/>- input


<span> - Span tags


Element Attributes
  • Most of the attributes are Name-Value pairs Separated with an "="
  • Attributes provide additional information about an element
  • Attributes are always specified in the Start tag 

Example : 

"href" is the name of the attribute of the anchor <a> (link) tag 


Code:
<a href="www.vidyarthiplus.com/vp">Vidyarthiplus</a>



"http://vidyarthiplus.com/vp" is the value of the "href" attribute of the <a> (link) tag


other common attributes : 

Style - styling can be done via "style" attribute


Code:
<h1 style="color:red"> This Heading will be red</h1>


Id & class - specifies identification to an element


Code:
<p id="mypara">This paragraph has an ID</p>


title- adds extra info about the element. Also Displayed in a toottip in some browser


Code:
<a href="www.vidyarthiplus.com/vp" title="click here to go V+">


This paragraph has an id</a>


Sample Output : 

Email Address shorten

Email Address shorten

Now u can shorten your email id's!!!
 How u can do it ???

We has three websites to convert ur mail id into smaller one .. 

  1. Boun.cr
  2. Scr.im
  3. eShorten

How to Convert it ?
Just enter your Email ID and then Submit , after that a shorten mail ID will Generates .. 

These Websites Will Map your Generated Mail ID's into Original Mail ID's..


What They Provides ?

They provides Security and Spam Free !!

- Copyright © Technology Unleashed - Powered by Blogger - Designed by Dhilipkumar -