Wednesday, 21 October 2015

Getting Started with python

Starting python



There are a ton of programming languages out there for various purposes and usages. Let me tell you something. Every programing language comes with a learning curve. Even if you know the concepts like oop, procedure etc.. Each language have its own syntax(lets say the grammar of that language) or if you are a beginner in programming you are going to get wet very badly, you will have to put something in the air until you learn those things. But one of thing i have learned from years of tinkering with programming languages is python is simple, powerful, and a lot easier. python is OOP language, and it is interpreted which is not like C, or C++. With some hands on practices you can master python code if you'd like to master it. While learning you would never write a single line unless you exactly know what it is.I will be posting python tutorial one by one. Why wait? Download python now! 

Saturday, 5 September 2015

C Programme to find Weather a Number is prime or not


There are enough numbers out there in mathematics. Well, prime numbers are numbers in which they have only two factors(A number which can divide another number without any remainder) The number itself and 1. Lets find out how we can make a program to find weather a number is prime or not

#include<stdio.h>
#include<conio.h>
void main()
{
int n,i,flag;
clrscr();
printf("================================\n\n");
printf("Finding if a Number is Prime or Not\n\n");
printf("================================\n\n");
printf("Enter a Number\n");
scanf("%d",&n);
for(i=2;i<n/2;i++)
 {
  if(n%i==0)
  {
    flag=0;
    break;
  }
 }

if(flag==0)
 printf("Number is not prime");
else
 printf("Number is prime");
getch();
}


This programme will read a number from user and spit out weather the number is prime or not.



Download Wordpress Themes
http://themeforest.net/?ref=ppshobi

Saturday, 11 July 2015

Kali Linux v2.0 Released | Download Kali Sana


The Most advanced Penetration testing Distribution Kali Linux going for another release. The offensive security team was working hard for a few months for this more advanced distribution. The tools has been updated and there is a more streamlined user interface. If you are not a widows guy you could try out this mind blowing distribution. A Swiss knife with a sniper attached. you could find a more detail in the following link.
https://www.kali.org/news/kali-linux-2-release-day-scheduled/

You could download Kali v2.0 SANA from official mirror.
Download Now

Sunday, 5 July 2015

Wifi Hacking The Easy Way | Deafult Modem Passwords



One of the easiest way to hack WiFi is to gain access to a computer within that network. This can be achieved very easily. Just ask the respective owner to let you check you'r mail from that system. once that completed, You're halfway done. Once you've got access just open any browser and open gmail to fake that you are checking your email. Then in a new tab in the URL bar type in 192.168.1.1 This is common to every modem and router. this will bring you the dialog box to open up the modem control panel. You can find which company has made the device.



 The default credentials for those devices are very common like.

 admin -- admin

 Admin -- admin

 admin -- password

 admin -- 1234

Etc..

I have included a list of various devices default credentials. Just download to get the whole credentials.

This will be a very good beginning in your hacking attempts.

Download The whole list of default Passwords

Education purposes only

Saturday, 20 June 2015

XAMPP - The complete developer tools

Have you heard of XAMPP? Want to know about XAMPP? Read on



XAMPP is simply a server. XAMPP can provide you as many tools for developing a web application. underlying principle of XAMPP is nothing but the LAMP concept. Which is Linux Apache, MySQL, and php.

For most of the students or pros, they don't even know about this silly software. This can help you forever if you'd like to bring a web-app to life. you could test the app in a production server. But xampp has all of its debugging info open but deployment servers do not offer debugging capabilities due the security reasons.

For example . if you create a PHP app. You would have to test it. If you buy a hosting for deploying the app, the server will not throw errors. It just doesn't work.

But xampp will throw errors that it couldn't understand what we have written.

Since apache is the most used server in the whole of internet. It has a wide variety of modules. Xampp comes with many of them. Like perl, PHP, phpMyAdmin, MySQL etc..also it provides some additions like filezilla for uploading and downloading your files from a host over ftp. Also a java servlet server (for rendering JSP-Java Server Pages) called tomcat. Also mercury mail server

Xampp was developed by Apache friends. Who are a team of open source developers. Also xampp can be installed on windows and Linux , Mac has a different name called mamp . it has a paid version also called mamp pro.
It has some alternatives including wamp (Windows, Apache, MySQL, PHP)  though its name can be confused to be like wamp is for windows and xampp for Linux. It' s not the fact. Both has its own feature set. Once xampp installed you are all set no need of configurations over it. Fully oriented for development. Wamp is essentially the same thing. But you will have to tinker with it. but if you have to change some configurations you have to make it directly through its configuration files on xampp, let's say. If you want to increase memory limit you might want to make changes on php.ini (read more on php.ini). it will make the programmer and tinkerer inside you much stronger.

After xampp installation you can put your webapp inside xampp/htdocs folder. And point your browser to http:// localhost or 127.0.0.1

Xampp makes your life a lot easier. It will give you an apache server, mysql installation, PHP installation, phpmyadmin installation, mysql installation and everything you need to do also a nice GUI for starting up those services.

All you need to do is start coding.


Download links and installation video below.

Download Now

Wednesday, 27 May 2015

Normalize CSS

Every Web Developer need this. Cross browser testing is still a pain in the ass for web ninjas. This will help each and every web developers for making their web development much easier you can download the source from github. it is released under Gnu GPL.You can download source from the following link

 https://github.com/ppshobi/Normalize

Alternative link

Google drive