5 Programming Languages Used For Hacking
1.) C Language
C Language is a general-purpose computer programming language developed between 1969 and 1973 by Dennis Ritchie at the Bell Telephone Laboratoriesfor use with the Unix operating system.
Although C was designed for implementing system software. it is also widely used for developing portable application software.
#include
int main(void)
{
printf(“hello, world!\n”);
return 0;
}
2.) C ++
C ++ was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C language and originally named C with Classes. It was renamed C++ in 1983. C ++ is one of the most popular programming languages and its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games.
#include <iostream>
int main()
{
std::cout << "Hello, world!\n";
}
3.) Php

PHP is a general-purpose scripting language that is especially suited to server-side web development where PHP generally runs on a web server. Any PHP code in a requested file is executed by the PHP runtime, usually to create dynamic web page content.
It can also be used for command-line scripting and client-side GUI applications. PHP can be deployed on most web servers, many operating systems and platforms, and can be used with many relational database management systems (RDBMS). It is available free of charge, and the PHP Group provides the complete source code for users to build, customize and extend for their own use.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>PHP Test</title>
</head>
<body>
<?php
echo 'Hello World';
</body>
</html>
4.) JavaScript
JavaScript was originally developed by Brendan Eich of Netscape under the name Mocha, which was later renamed to LiveScript, and finally to JavaScript.
JavaScript is a an object-oriented, scripting programming language that runs in the Web browser on the client side. Its smaller than Java, with a simplified set of commands, easier to code and doesnt have to be compiled. JavaScript, also known as ECMAScript
<html>
<head><title>simple page</title></head>
<body>
<script type="text/javascript">
document.write('Hello World!');
</script>
<noscript>
<p>Your browser either does not support JavaScript,
or you have JavaScript turned off.</p>
</noscript>
</body>
</html>
5.) SQL Injection
SQL injection is a code injection technique that exploits a security vulnerability occurring in the database layer of an application. The vulnerability is present when user input is either incorrectly filtered for string literal escape characters embedded in SQL statements or user input is not strongly typed and thereby unexpectedly executed.
It is an instance of a more general class of vulnerabilities that can occur whenever one programming or scripting language is embedded inside another. SQL injection attacks are also known as SQL insertion attacks



















I had Learned c, c++, java script and aql.
and php continue……..
Good Nikunj.
[...] ++ was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C language and originally [...]
Nice blog dear,
i am very thankful to you for providing tips and tricks.because in this world some people are like you share the ideas.
you have done nice job. do something different in hacking world…..