Wednesday, 9 December 2015

#1 HTML Injection - Learn Basic HTML

So guys Lets Continue Our Tutorial On HTML Inection . I am making this tutorial for beginners who dont know what html is and how to make a basic html webpage . and in next tutorial i will tell you about HTML inejection .

BASIC HTML - 

  • What is HTML??


HTML is a client side scripting language . we use it to design webpages . HTML stands for Hyper Text Markup Language. We something called tags <>  in html. to start a tag we write <tagname> and to close it we write </tagname> . Below is Structure of HTML . you must write it in every page :). HTML can be edited in every text editors. and you must save it in .html extension. and you can open it in any web browser.
So make a new file index.html and see the below structure . write it in your file save it and run it in browser .

<html>

    <head>
        <title>Page Title </title>
    </head> 

    <body>
    Tags from below list will be written here :)
    This Section Will Be Displayed in Browser
    </body>

</html>

 See what is displaying the content bitween <body> </body>  is displayed on webpage . and text bitween <title> and </title> tag is your title of page.  so start editing structure Use Below list to discover more tags use them in biween <body> tag . to change title you should change text bitween title tag

List of basic tags :) see them and keep practicing . 

<h1> this is a heading </h1>
<h2> this is sub heading </h2>
<h3> this is minor heading </h3>
<p>  This is for Paragraph </p>
<img src="image name in same directory or link" > this is for image </img>
<a href="link"> to make a link we should use this tag </a>


And Here is the example page

<html>
<head>
<title> HTML Tutorial at Shahid's Workshop </title>
</head>
<body>

<h1> Welcome in Shahids Workshop</h1>
<h2>This is Tutorial on Basic HTML</h2>
<h3>Read This carefully</h3>
<p>This is an paragraph example</p>

</body>
</html>

Thank You For Reading and Learning :) . I Hope this is less time consuming than any where else . Please Leave your Comment If you didnt get something . 

 


Sunday, 6 December 2015

Web Application Hacking


Web Application Hacking
Web Application hacking means hacking into a website deface it . get all its access and do whatever you want to do with it. it involves following techniques -

1.HTML INJECTION
2.XSS
3.XSRF
4.SQLI
5.RFI
6.LFI
7.RCE

 and some others we will talk about it later :)
So we are starting from HTML INJECTION . before we continue . i will recommend you to learn HTML . So Just Goto Google and Search For HTML  Tutorials. I will Suggest you to learn from w3schools . But if You want to learn HTML INJECTION without Learning HTML . You can still Continue Because We Will Learn Some Basics OF HTML also in HTML INJECTION tutorial.


Introduction - What is hacking and what is this blog for?

hacker-hd

What is Hacking?

So guys if you want to become a hacker first you need to understand what is hacking?
Hacking doesnt mean to ruin or destroy something. hacking means bypass all limitation and take maximum benefit of something. no matter what type of limitation it is just use your mind and think how you can bypass it. and remember security is just an illusion.

Hacker??

A hacker is someone who break into computer security just for challenge or take profit from it. anyone with pc and with a cup of coffie copying others tutorials is not hacker . but they are entered in hackers world.  if they will progress they will be surely a great hacker one day.These guys are called script kiddie. this is a part of every hackers life.
What is this blog For?
In this blog I will be covering all part of web application hacking in detail.  and the purpose of making this blog is not to make you hacker .  but i want you to know everything so that you can stay secure. and any bad guy cant steal your data or hack your website.

4n0nkh4n. Powered by Blogger.