Wednesday 28 March 2012

New Facebook Animated Smiliye Codes | 2012




Just Copy - Paste the below mentioned Animated Smiliye Codes on Facebook Chat box 

[[126236287388324]] – Love Code
[[126125527399400]] – Muaaach Kissing :*
[[126134560731830]] – Hoam Ngantuk Rek
[[126261164052503]] – Hula Hula
[[126221767389776]] – Spin Heart
[[126214010723885]] – Stroke
[[126386227373330]] – Oversleep Insomnia
[[389448181885]]    – Week
[[126539730695178]] – Love Shame
[[126540207361797]] – Love Smail
[[126232017388751]] – Broken heart
[[126229700722316]] – Pikachu
[[126392380706048]] – ready sleep
[[126276450717641]] – blast love ..tiupan cinta
[[126391564039463]] – Stress
[[110566632320002]] – Cat listening to music
[[126230590722227]] – Super Mario
[[126213110723975]] – Hello Ketty
[[126227960722490]] – kiss
[[126230880722198]] – Green Worm Ani
[[126229327389020]] – Rose Red Ani
[[127868980561350]] – Heart beat
[[126220920723194]] – Santa
[[126216480723638]] – butterfly blue
[[126132024065417]] – Heart rotate ani
[[126278187384134]] – O Yeah Hippo
[126217194056900]]  – i ? u
[[389449726885]]    – i love you
[[126540207361797]] – Smileys Inlove
[[398699314236]]    – Teddy n ?
[[110780922298250]] – Heart on Fire
[[127878643893717]] – hand Clap
[[398570519236]]    – mickey at Sleep
[[394930959230]]    – Smileys Zzzz
[[126398717372810]] – Converse
[[110563818986950]] – Wew
[[110566395653359]] – cat licking screen

# For More New Facebook Smiliyes Codes Click Here

HOWTO: Port a C/C++ Library to JavaScript (xml.js)


I've been porting various libraries to JavaScript recently (lzma.js, sql.js) and I thought it might be useful to write up details about how this kind of thing is done. So here is how I ported libxml - an open source library that can validate XML schemas - in response to a request. Note that this isn't a general HOWTO, it's more a detailed writeup of what I did to port libxml in particular, but I

Howto: SQL Injection Using MySQL LOAD_FILE() and INTO OUTFILE()


If you want to see all, please go to the Source.

MySQL LOAD_FILE() reads the file and returns the file contents as a string. 

SYNTAX : LOAD_FILE(file_name) /* file_name should be a name of a file appended with a path. */

Ohw wait?! Path? Yes you read me right! In that case an attacker could possibly do a directory traversal just like the Local File Inclusion (LFI) attack.

Suppose we found

Howto: Sending an ARP from scapy


On the Linux machine, in scapy, enter these commands:

    sudo scapy

    a = ARP()

    a.display() 

The attributes of the ARP object named "a" are displayed, as shown below on this page.

On the Linux machine, in scapy, enter these commands.

In the first command, enter the IP address of your Windows target machine.

The MAC and IP addresses in the second and third command are intentionally

Johnny - GUI for John the Ripper


Johnny is a GUI for John the Ripper. It was proposed by Shinnok. You could look onto original version on John the Ripper GUI sketches page.  


You could download and unpack tarball or use git:  git clone https://github.com/AlekseyCherepanov/johnny.git -b release1Then build and run (no installation required):  cd johnny  qmake  make && ./johnny


Source: http://openwall.info/wiki/john/johnny#

Apple Safari on iOS 5.1 - Adressbar spoofing vulnerability

Apple Safari on iOS 5.1 - Adressbar spoofing vulnerabilityDetails=============Product: Apple Mobile Safari on iOS 5.1Security-Risk: moderatedRemote-Exploit: yesVendor-URL: http://www.apple.com/Advisory-Status: publishedCredits=============Discovered by: David Vieira-Kurz of MajorSecurityAffected Products=============Apple Mobile Safari on iOS 5.1Prior versions may also be affectedThe affected

Tuesday 27 March 2012

Hacking WordPress & Joomla sites after uploading Shell

Things Required -
  • shelled website with open directories in it .

Step by Step Guide -
  • First you must know Jumping server . if you dont know how to then stop reading & learn that first .
  • So we have to do jumping server with our  shell & then you will get many dir like config.php, configuration.php, wp-config.php . 

  • Then now after we have got those directories, then we will open it then there we could find the mysql DB name, DB username, DB password . 












  • So after you have got username & password, now you have to connect to MySQL database server . so we will open the MySQL option ( b374k shell ) & then there we have to enter the username & password .











  • After you have logged in then there you will see 2 database one would be information_schema & the other one would be of some name mostly with the database name . Then click on the database which i told would be with the name of database .






  • Then after clicking on it you have to search for wp-users . Then after finding it you have to click on it, finally there you would find the users & admin username & password .





















  • You have successfully found the password but the problem is that its very hard to crack that hash . so now we would reset the password query in that black box . go in the black box & type this - 
UPDATE wp_users SET user_pass =md5( '123456') WHERE user_login = 'admin';
Then click on Go ! , after you have done it you will get a reply given below like this 
UPDATE wp_users SET user_pass =md5( '123456') WHERE user_login = 'admin'; [ok]

hackingsec


  • Now you are almost done ! Just open the login page www.yoursite.com/wp-admin/ & Upload your shell  .

Hope you all like this tutorial & if any problem then mention it Via Comments ;)


Basic Functions & programs of C | 2nd Session

Hello friends so today as i said today i'm gonna teach you some common function & also write some basic programs of c . so lets start.



The structure of C program
















C is made up entirely of building blocks which have a particular ‘shape’ or form .A program is made up of functions, functions are made up of statements and declarations surrounded by curly braces { } .One and only one of these functions in the program must have the name main(). This function is always the starting point of a C program . The parentheses ‘()’ which follow the name of the function must be included even though they apparently serve no purpose at this stage.


m

The Headers 

#include header.h
At the top of a program file. For instance:
#include "myheader.h"
Includes a personal header file which is in the current directory Or
#include <stdio.h>
includes a file which lies in a standard directory like ‘/usr/include’.
The #include directive is actually a command to the C preprocessor .



Now i will tell you about printf function .

The printf() function 


  • What is full form of  printf  function?  
    - Print format function

  • What is print format (printf) ?
      - It refers to a control parameter used by a class of functions typically associated with some types of     programming languages. The format string specifies a method for rendering an arbitrary number of varied data type parameter(s) into a string. In simple words we can say It provides an superbly versatile way of printing text.


  • How to print a normal string  ?
     -  printf ("..some string..."); 

  • How to print a Integer ?
     - Here we cant use the same command we used in printing the text, we have to use control sequence  -    %d  . The variable someinteger is printed instead of ‘%d’  . Below you see the command .

        printf ("Integer = %d",someinteger);


Here is a small program with its output showing the example of printf function .


/***********************************************************/
/* any program */
/***********************************************************/
#include <stdio.h>
/***********************************************************/
main () /* program */
{
printf ("Astronomy is %dderful \n",1);
printf ("And interesting %d \n",2);
printf ("The ear%d volves around the sun \n",3);
printf ("And makes a year %d you \n",4);
printf ("The moon affects the sur %d heard \n",5);
printf ("By law of phy%d great \n",6);
printf ("It %d when the the stars so bright \n",7);
printf ("Do nightly scintill%d \n",8);
printf ("If watchful providence be%d \n",9);
printf ("With good intentions fraught \n");
printf ("Should not keep up her watch divine \n");
printf ("We soon should come to %d \n",0);
}


Output - 


Astronomy is 1derful \n"
And interesting 2
The ear3 volves around the sun
And makes a year 4 you
The moon affects the sur 5 heard
By law of phy6d great
It 7 when the the stars so bright
Do nightly scintill8
If watchful providence be9
With good intentions fraught
Should not keep up her watch divine
We soon should come to

Then after you have successfully compiled it  then save it as printf.c  . It has its own extension .c, like .exe, pdf .

Some Questions for practice -
1. Why is #include <stdio.h> used for ?

2. Write a command to print out the message "hackingsec".
3. Write a command to print out the number 97?
4. Write two commands to print out "The 2 hackers" two different ways.





So hope its clear & you can solve this question .
if any doubt then please mention it Via comment



.


Sunday 25 March 2012

Introduction to C language | 1st session

Today is the first session of the c language so i will tell all the basics of c & other  .
















What is C & its uses ?

  • C is called a higher level compiler language which can be used for general purpose programming like for writing small  programs or to write complex application .
  • The C language has been equipped with features that allow programs to be organized in an easy and logical way.
  • C allows meaningful variable names and meaningful function names to be used in programs without any loss of efficiency and it gives a complete freedom of style .
  • C has a set of very flexible loop structure & clean ways of making decisions & this provide an excellent basis of controlling the flow of program .
  • C allows things which are disallowed in other languages: this is no defect but a very powerful freedom .
  • C tries to make the best of a computer by linking as closely as possible to the local environment .

Now i will tell you some characteristics of C :.


Characteristics of C  :

  • Small size
  • Extensive use of function calls
  • Loose typing -- unlike PASCAL
  • Structured language
  • Low level (BitWise) programming readily available
  • Pointer implementation - extensive use of pointers for memory, array, structures and functions .
  • It has high-level constructs.
  • It can handle low-level activities.
  • It produces efficient programs.
  • It can be compiled on a variety of computers.


Basic C Program structure :

  • Preprocessor Commands
  • Type definitions
  • Function prototypes -- declare function types and variables passed to function.
  • Variables
  • Functions




In the session  i will teach you about common functions, commands & also to write small programs so  be updated ...
& any doubt then i'm always ready to answer ;)


Thursday 22 March 2012

Introduction To Programming

Hello guys , i'm back & from today i will also be posting programming tutorials . All the programming languages tutorials will also be thought . so firstly before you start learning programming you  should know what is programming ? what are their uses ?  who are programmers ? . so in this session i will clear all your Doubts & tell you what is programming . The programming is very important for each & every hacker, without the knowledge of programming you cant claim yourself an hacker , Without the knowledge of programming
you cant write your own exploits . So my dear readers start learning programming & be a programmer .


















What is Programming ?

  • is the process ofdesigning, writing, testingdebugging, and maintaining the source code of computer programs. This source code is written in one or more programming languages. The purpose of programming is to create a set of instructions that computers use to perform specific operations or to exhibit desired behaviors. The process of writing source code often requires expertise in many different subjects, including knowledge of the application domain, specialized algorithms and formal logic.  In simple words i would say  programming is the action or process of writing computer programs. 



Who are programmers ?
  • programmercomputer programmer, or coder is a person who writes computer software. The term computer programmer can refer to a specialist in one area of computer programming or to a generalist who writes code for many kinds of software. One who practices or professes a formal approach to programming may also be known as a programmer analyst. A programmer's primary computer language (C,C++JavaLispPython etc.) is often prefixed to the above titles, and those who work in a web environment often prefix their titles with web. The term programmer can be used to refer to a software developersoftware engineercomputer scientist, or software analyst 



What are the different Programming languages ?
  • There are many programming languages, i cant mention them all here so you can find them here   .The basic programming languages which is must for an programmer are c, c++, java, java (advance), Perl , Python .


So hope you have understood all what is programming & programmers . so in the next session i will teach you the basics of c language .

Monday 19 March 2012

The Available Plugins Of Ettercap

If you want to see "how to  ARP Poisoning with ettercap", you can go to the Source for that :)

Available plugins :arp_cop  1.1  Report suspicious ARP activityautoadd  1.2  Automatically add new victims in the target rangechk_poison  1.1  Check if the poisoning had successdns_spoof  1.1  Sends spoofed dns repliesdos_attack  1.0  Run a d.o.s. attack against an IP addressdummy  3.0  A plugin

Check the addons of Chrome by kkotowicz

Webpages can sometimes interact with Chrome addons and that might be dangerous, more on that later. Meanwhile, a warmup - trick to detect addons you have installed.While all of us are used to http / https URI Schemes, current web applications sometimes use other schemes including:    javascript: URIs bypassing XSS filters for years    data: URIs that is a common source of new XSS vulnerabilities

Sunday 18 March 2012

Smart Scapy By Lacofa












The importance of security

A basic aspect of Internet services,
either at an application or network level, is their own security.
Currently they make great efforts aimed to keep users’ security and
privacy in Internet.

To have a proper security level is
necessary to carry out tests not only on the devices and apps that will
enable the access to information, but

RDP Honeypot on Amazon EC2 Virtual Server